From ffcecb8e8ef11715d8d8a78fb1c561a61b974bb0 Mon Sep 17 00:00:00 2001 From: zontreck Date: Thu, 31 Oct 2024 17:18:14 -0700 Subject: [PATCH] Add latest revisions after getting it functional --- build.gradle | 346 +- gradle.properties | 71 +- gradle/wrapper/gradle-wrapper.jar | Bin 62076 -> 43453 bytes gradle/wrapper/gradle-wrapper.properties | 1 + gradlew | 35 +- gradlew.bat | 21 +- settings.gradle | 24 +- .../java/com/zontreck/AriasEssentials.java | 71 + .../essentials => com/zontreck}/Messages.java | 32 +- .../zontreck/ariaslib/http/HTTPMethod.java | 9 + .../zontreck/ariaslib/http/HTTPRequest.java | 15 + .../ariaslib/http/HTTPRequestBuilder.java | 134 + .../zontreck/ariaslib/http/HTTPResponse.java | 33 + .../zontreck/ariaslib/terminal/Banners.java | 47 + .../com/zontreck/ariaslib/terminal/Task.java | 86 + .../terminal/TaskCompletionToken.java | 20 + .../com/zontreck/ariaslib/util/FileIO.java | 51 + .../com/zontreck/ariaslib/util/Hashing.java | 120 + .../com/zontreck/ariaslib/util/Lists.java | 94 + .../java/com/zontreck/ariaslib/util/Maps.java | 49 + .../com/zontreck/ariaslib/util/MathUtil.java | 18 + .../com/zontreck/ariaslib/util/Percent.java | 23 + .../com/zontreck/ariaslib/util/Progress.java | 56 + .../zontreck/ariaslib/util/ProgressBar.java | 66 + .../zontreck/ariaslib/util/TimeNotation.java | 161 + .../com/zontreck/ariaslib/util/TimeUtil.java | 96 + .../com/zontreck/block/DeprecatedBlock.java | 15 + .../zontreck/block/DeprecatedBlockItem.java | 45 + .../zontreck/block/DeprecatedModBlocks.java | 87 + .../com/zontreck/block/FoiledBlockItem.java | 19 + .../java/com/zontreck/block/ModBlocks.java | 382 + .../java/com/zontreck/block/RegistryObj.java | 19 + .../com/zontreck/block/RotatableBlock.java | 27 + .../java/com/zontreck/block/VoidBlock.java | 13 + .../block/types/AlternatePaneBlock.java | 41 + .../client}/TimeBoostEntityRenderer.java | 7 +- .../zontreck/commands/CommandRegistry.java | 31 + .../commands/homes/DelHomeCommand.java | 128 +- .../zontreck}/commands/homes/HomeCommand.java | 162 +- .../commands/homes/HomesCommand.java | 208 +- .../commands/homes/SetHomeCommand.java | 186 +- .../items/ShareItemInChatCommand.java | 60 + .../zontreck/commands/items/TIABDebug.java | 54 + .../commands/teleport/TPACommand.java | 256 +- .../commands/teleport/TPAHereCommand.java | 251 +- .../commands/teleport/TPAcceptCommand.java | 142 +- .../commands/teleport/TPCancelCommand.java | 114 +- .../commands/teleport/TPDenyCommand.java | 112 +- .../configs/client/AEClientConfig.java | 11 +- .../configs/client/sections/Messages.java | 6 + .../configs/server/AEServerConfig.java | 148 + .../configs/server/sections/Bottles.java | 10 +- .../configs/server/sections/Drops.java | 44 + .../configs/server/sections/Messages.java | 4 +- .../server/sections/Teleportation.java | 5 +- .../com/zontreck/effects/FlightEffect.java | 84 + .../java/com/zontreck/effects/ModEffects.java | 25 + .../java/com/zontreck/effects/ModPotions.java | 28 + .../enchantments/ConsumptionMending.java | 160 + .../DamageIncreaseEnchantment.java | 55 + .../enchantments/EnchantmentEvents.java | 56 + .../enchantments/FlightEnchantment.java | 96 + .../enchantments/MobEggEnchantment.java | 88 + .../enchantments/ModDamageSources.java | 8 + .../enchantments/ModEnchantments.java | 38 + .../enchantments/NightVisionEnchantment.java | 86 + .../enchantments/VampiricMending.java | 107 + .../WaterBreathingEnchantment.java | 85 + .../zontreck}/entities/ModEntities.java | 13 +- .../zontreck}/entities/TimeBoostEntity.java | 10 +- .../events/CommandExecutionEvent.java | 7 +- .../zontreck}/events/HomeCreatedEvent.java | 6 +- .../zontreck}/events/HomeDeletedEvent.java | 9 +- .../zontreck}/events/TeleportEvent.java | 5 +- .../exceptions/NoSuchHomeException.java | 5 + .../zontreck}/homes/Home.java | 12 +- .../zontreck}/homes/Homes.java | 29 +- .../com/zontreck/items/CreativeModeTabs.java | 28 + .../com/zontreck/items/DeprecatedItem.java | 42 + .../zontreck/items/DeprecatedModItems.java | 19 + .../java/com/zontreck/items/IhanCrystal.java | 104 + .../java/com/zontreck/items/MagmaPowder.java | 69 + .../zontreck/items/MobCaptureBallItem.java | 58 + .../java/com/zontreck/items/ModItems.java | 56 + .../zontreck/items}/NBTKeys.java | 3 +- .../java/com/zontreck/items/PartialItem.java | 116 + .../zontreck/items/ThrownMobCaptureBall.java | 213 + .../items/abstracts/AbstractTIAB.java} | 59 +- .../zontreck/items/impl}/TimeBottle.java | 68 +- .../com/zontreck/items/tags/ItemStatTag.java | 37 + .../com/zontreck/items/tags/ItemStatType.java | 16 + .../zontreck/items/tags/ItemStatistics.java | 54 + .../java/com/zontreck/items/tags/ModIDs.java | 24 + .../com/zontreck/libzontreck/LibZontreck.java | 176 + .../com/zontreck/libzontreck/api/Vector2.java | 138 + .../com/zontreck/libzontreck/api/Vector3.java | 158 + .../libzontreck/blocks/BlockCustomVoxels.java | 21 + .../libzontreck/blocks/BlockImitation.java | 95 + .../blocks/PartialTransparentBlock.java | 18 + .../blocks/PartialTransparentSlabBlock.java | 19 + .../libzontreck/blocks/RedstoneBlock.java | 100 + .../libzontreck/blocks/RotatableBlock.java | 39 + .../blocks/RotatableBlockCustomVoxels.java | 34 + .../libzontreck/bossbars/BossBarUtils.java | 25 + .../zontreck/libzontreck/chat/ChatColor.java | 179 + .../libzontreck/chat/ChatColorFactory.java | 53 + .../zontreck/libzontreck/chat/Clickable.java | 16 + .../zontreck/libzontreck/chat/HoverTip.java | 33 + .../libzontreck/chestgui/ChestGUI.java | 271 + .../libzontreck/chestgui/ChestGUIButton.java | 170 + .../chestgui/ChestGUIIdentifier.java | 62 + .../chestgui/ChestGUIRegistry.java | 33 + .../chestgui/IChestGUIButtonCallback.java | 20 + .../libzontreck/commands/Commands.java | 17 + .../libzontreck/commands/CreditsCommand.java | 55 + .../libzontreck/commands/GetHead.java | 34 + .../libzontreck/config/ServerConfig.java | 39 + .../config/sections/DatabaseSection.java | 75 + .../libzontreck/currency/Account.java | 108 + .../currency/AccountReference.java | 17 + .../zontreck/libzontreck/currency/Bank.java | 242 + .../libzontreck/currency/CurrencyHelper.java | 6 + .../LongTermTransactionHistoryRecord.java | 72 + .../libzontreck/currency/Transaction.java | 55 + .../events/BankAccountCreatedEvent.java | 14 + .../currency/events/BankReadyEvent.java | 15 + .../currency/events/TransactionEvent.java | 24 + .../events/TransactionHistoryFlushEvent.java | 23 + .../currency/events/WalletSyncEvent.java | 25 + .../currency/events/WalletUpdatedEvent.java | 25 + .../ChestGUIReadOnlyStackHandler.java | 82 + .../ReadOnlyItemStackHandler.java | 59 + .../BlockRestoreQueueRegistrationEvent.java | 20 + .../libzontreck/events/CloseGUIEvent.java | 18 + .../events/ForgeEventHandlers.java | 89 + .../events/GUIButtonClickedEvent.java | 21 + .../libzontreck/events/OpenGUIEvent.java | 37 + .../events/PlayerChangedPositionEvent.java | 20 + .../events/ProfileCreatedEvent.java | 13 + .../events/ProfileLoadedEvent.java | 19 + .../events/ProfileSavingEvent.java | 23 + .../events/ProfileUnloadedEvent.java | 12 + .../events/ProfileUnloadingEvent.java | 19 + .../events/RegisterMigrationsEvent.java | 22 + .../libzontreck/events/TeleportEvent.java | 32 + .../exceptions/InvalidDeserialization.java | 12 + .../exceptions/InvalidSideException.java | 11 + .../items/InputItemStackHandler.java | 47 + .../zontreck/libzontreck/items/ModItems.java | 29 + .../items/OutputItemStackHandler.java | 45 + .../zontreck/libzontreck/lore/ExtraLore.java | 94 + .../libzontreck/lore/LoreContainer.java | 89 + .../zontreck/libzontreck/lore/LoreEntry.java | 160 + .../zontreck/libzontreck/lore/LoreType.java | 25 + .../memory/player/PlayerComponent.java | 60 + .../memory/player/PlayerContainer.java | 24 + .../memory/player/VolatilePlayerStorage.java | 67 + .../memory/world/BlockRestore.java | 19 + .../memory/world/BlockRestoreQueue.java | 332 + .../world/BlockRestoreQueueRegistry.java | 65 + .../memory/world/BlockRestoreRunner.java | 55 + .../memory/world/DatabaseMigrations.java | 207 + .../memory/world/DatabaseUploadRunner.java | 26 + .../memory/world/DatabaseWrapper.java | 163 + .../memory/world/PrimitiveBlock.java | 80 + .../memory/world/SaveDataCoordinates.java | 43 + .../memory/world/SaveDataFactory.java | 267 + .../libzontreck/memory/world/SavedBlock.java | 111 + .../memory/world/SortedBlockQueue.java | 38 + .../libzontreck/menus/ChestGUIMenu.java | 65 + .../libzontreck/menus/ChestGUIScreen.java | 66 + .../libzontreck/networking/ModMessages.java | 75 + .../libzontreck/networking/NetworkEvents.java | 5 + .../libzontreck/networking/chestGUI.md | 21 + .../networking/packets/IPacket.java | 35 + .../networking/packets/S2CCloseChestGUI.java | 38 + .../packets/S2CPlaySoundPacket.java | 69 + .../packets/S2CServerAvailable.java | 43 + .../packets/S2CWalletInitialSyncPacket.java | 69 + .../packets/S2CWalletUpdatedPacket.java | 79 + .../networking/structures/OpenGUIRequest.java | 39 + .../libzontreck/profiles/Profile.java | 226 + .../UserProfileNotYetExistsException.java | 9 + .../libzontreck/types/ModMenuTypes.java | 29 + .../zontreck/libzontreck/util/BinUtil.java | 59 + .../zontreck/libzontreck/util/BlocksUtil.java | 29 + .../libzontreck/util/ChatHelpers.java | 155 + .../libzontreck/util/FileTreeDatastore.java | 49 + .../zontreck/libzontreck/util/HttpHelper.java | 22 + .../zontreck/libzontreck/util/ItemUtils.java | 65 + .../zontreck/libzontreck}/util/Maps.java | 4 +- .../libzontreck/util/PositionUtil.java | 156 + .../com/zontreck/libzontreck/util/SNbtIo.java | 45 + .../libzontreck/util/ServerUtilities.java | 100 + .../zontreck/libzontreck/util/TagUtils.java | 45 + .../libzontreck/util/heads/CreditsEntry.java | 57 + .../libzontreck/util/heads/HeadCache.java | 213 + .../libzontreck/util/heads/HeadUtilities.java | 67 + .../libzontreck/util/heads/PlayerInfo.java | 6 + .../util/heads/PlayerProfileInfo.java | 9 + .../util/heads/PlayerTextureContainer.java | 6 + .../libzontreck/vectors/ChunkPos.java | 42 + .../libzontreck/vectors/NonAbsVector3.java | 63 + .../zontreck/libzontreck/vectors/Points.java | 55 + .../libzontreck/vectors/Vector2f.java | 200 + .../libzontreck/vectors/Vector2i.java | 213 + .../libzontreck/vectors/Vector3d.java | 249 + .../libzontreck/vectors/Vector3i.java | 243 + .../libzontreck/vectors/WorldPosition.java | 141 + .../java/com/zontreck/mixin/ColorsMixin.java | 8 + .../zontreck/mixin/MaterialColorMixin.java | 8 + .../zontreck}/util/EssentialsDatastore.java | 8 +- .../com/zontreck/util/ExperienceUtils.java | 16 + .../java/com/zontreck/util/ModDimensions.java | 16 + .../zontreck/util/PerPlayerDataRegistry.java | 53 + .../zontreck}/util/SoundUtilities.java | 7 +- .../zontreck}/util/StylesUtil.java | 4 +- .../zontreck/util}/TeleportActioner.java | 120 +- .../zontreck/util}/TeleportContainer.java | 134 +- .../zontreck/util}/TeleportDestination.java | 103 +- .../zontreck/util}/TeleportRegistry.java | 3 +- .../zontreck/util}/TeleportRunnable.java | 110 +- .../zontreck/essentials/AriasEssentials.java | 186 - .../antiexplode/CreeperHealQueue.java | 43 - .../essentials/blocks/BlockCustomVoxels.java | 16 - .../zontreck/essentials/blocks/ModBlocks.java | 303 - .../zontreck/essentials/client/AutoWalk.java | 65 - .../essentials/client/Keybindings.java | 29 - .../client/renderer/HeartsRenderer.java | 336 - .../essentials/commands/CommandRegister.java | 47 - .../commands/gui/HeartsCommand.java | 46 - .../commands/teleport/BackCommand.java | 48 - .../commands/teleport/RTPCommand.java | 73 - .../commands/teleport/SpawnCommand.java | 49 - .../commands/teleport/TPEffectsCommand.java | 43 - .../commands/warps/DelWarpCommand.java | 66 - .../commands/warps/RTPWarpCommand.java | 69 - .../commands/warps/SetWarpCommand.java | 71 - .../commands/warps/WarpCommand.java | 110 - .../commands/warps/WarpsCommand.java | 165 - .../configs/client/sections/Messages.java | 6 - .../configs/server/AEServerConfig.java | 155 - .../configs/server/sections/Back.java | 32 - .../configs/server/sections/Cooldown.java | 42 - .../configs/server/sections/Costs.java | 42 - .../configs/server/sections/CreeperHeal.java | 54 - .../configs/server/sections/Limitations.java | 34 - .../data/ModBlockStatesProvider.java | 476 - .../zontreck/essentials/data/ModDatagen.java | 25 - .../data/ModItemModelsProvider.java | 58 - .../dev/zontreck/essentials/data/README.md | 7 - .../essentials/events/MainEventHandlers.java | 34 - .../zontreck/essentials/events/RTPEvent.java | 21 - .../essentials/events/RTPFoundEvent.java | 14 - .../essentials/events/WarpAccessChanged.java | 30 - .../WarpAccessControlListUpdatedEvent.java | 26 - .../essentials/events/WarpCreatedEvent.java | 20 - .../essentials/events/WarpDeletedEvent.java | 14 - .../exceptions/NoSuchHomeException.java | 5 - .../essentials/homes/HomesProvider.java | 48 - .../homes/HomesSuggestionProvider.java | 18 - .../dev/zontreck/essentials/imc/Events.java | 49 - .../essentials/items/CreativeModeTabs.java | 25 - .../essentials/items/EventHandlers.java | 11 - .../zontreck/essentials/items/ModItems.java | 22 - .../essentials/networking/ModMessages.java | 53 - .../packets/s2c/S2CUpdateHearts.java | 44 - .../java/dev/zontreck/essentials/rtp/RTP.java | 159 - .../zontreck/essentials/rtp/RTPCaches.java | 31 - .../rtp/RTPCachesEventHandlers.java | 67 - .../essentials/rtp/RandomPositionFactory.java | 43 - .../essentials/rtp/RandomPositionLocator.java | 50 - .../essentials/util/BackPositionCaches.java | 65 - .../essentials/util/CommandCooldowns.java | 76 - .../essentials/util/ForgeEventsHandler.java | 33 - .../essentials/warps/AccessControlList.java | 156 - .../essentials/warps/NoSuchWarpException.java | 6 - .../dev/zontreck/essentials/warps/Warp.java | 159 - .../dev/zontreck/essentials/warps/Warps.java | 95 - .../essentials/warps/WarpsProvider.java | 49 - .../resources/META-INF/accesstransformer.cfg | 0 src/main/resources/META-INF/mods.toml | 105 +- .../resources/ariasessentials.mixins.json | 13 + .../blockstates/blood_red.json | 7 + .../blockstates/blue_pool_light.json | 7 + .../blockstates/blue_pool_tile.json | 7 + .../blockstates/blue_pool_tile_slab.json | 13 + .../blockstates/blue_pool_tile_stairs.json | 209 + .../blockstates/blue_pool_tile_wall.json | 90 + .../blockstates/clear_glass_block.json | 7 + .../blockstates/clinker_brick_block.json | 30 + .../blockstates/clinker_brick_recessed.json | 19 - .../clinker_brick_sastor_corner_block.json | 25 - .../blockstates/clinker_brick_slab.json | 160 + .../clinker_brick_stained_block.json | 30 + .../clinker_brick_stained_slab.json | 160 + .../clinker_brick_stained_stairs.json | 3444 + .../blockstates/clinker_brick_stairs.json | 3444 + .../clinker_brick_vertically_slit.json | 19 - .../blockstates/clinker_brick_wall.json | 90 + .../blockstates/cobalt_block.json | 7 + .../blockstates/cobalt_ore.json | 7 + .../compressed_obsidian_block.json | 7 + .../blockstates/compression_chamber.json | 19 + .../ariasessentials/blockstates/cyan.json | 7 + .../blockstates/cyan_stairs.json | 209 + .../blockstates/cyan_tile.json | 7 + .../blockstates/cyan_tile_br.json | 19 + .../blockstates/cyan_tile_to_wall.json | 7 + .../blockstates/cyan_wall_variant_1.json | 7 + .../blockstates/cyan_wall_variant_2.json | 7 + .../blockstates/dark_pool_light.json | 7 + .../blockstates/dark_pool_tile.json | 7 + .../blockstates/dark_pool_tile_slab.json | 13 + .../blockstates/dark_pool_tile_stairs.json | 209 + .../blockstates/dark_red_bed.json | 7 + .../blockstates/dark_red_carpet.json | 7 + .../blockstates/dark_red_shulker_box.json | 7 + .../blockstates/dark_red_wool.json | 7 + .../deepslate_eternium_ore_block.json | 7 + .../deepslate_ilusium_ore_block.json | 7 + .../blockstates/dirty_blue_pool_light.json | 7 + .../blockstates/dirty_blue_pool_tile.json | 7 + .../dirty_blue_pool_tile_slab.json | 13 + .../dirty_blue_pool_tile_stairs.json | 209 + .../dirty_blue_pool_tile_wall.json | 90 + .../blockstates/dirty_green_pool_light.json | 7 + .../blockstates/dirty_green_pool_tile.json | 7 + .../dirty_green_pool_tile_slab.json | 13 + .../dirty_green_pool_tile_stairs.json | 209 + .../dirty_green_pool_tile_wall.json | 90 + .../blockstates/dirty_pool_light.json | 7 + .../blockstates/dirty_pool_tile.json | 7 + .../blockstates/dirty_pool_tile_slab.json | 13 + .../blockstates/dirty_pool_tile_stairs.json | 209 + .../blockstates/dirty_pool_tile_wall.json | 90 + .../blockstates/dirty_red_pool_light.json | 7 + .../blockstates/dirty_red_pool_tile.json | 7 + .../blockstates/dirty_red_pool_tile_slab.json | 13 + .../dirty_red_pool_tile_stairs.json | 209 + .../blockstates/dirty_red_pool_tile_wall.json | 90 + .../blockstates/eternium_block.json | 7 + .../blockstates/eternium_ore_block.json | 7 + .../blockstates/filthy_blue_pool_light.json | 7 + .../blockstates/filthy_green_pool_light.json | 7 + .../blockstates/filthy_pool_light.json | 7 + .../blockstates/filthy_red_pool_light.json | 7 + .../blockstates/green_pool_light.json | 7 + .../blockstates/green_pool_tile.json | 7 + .../blockstates/green_pool_tile_slab.json | 13 + .../blockstates/green_pool_tile_stairs.json | 209 + .../blockstates/green_pool_tile_wall.json | 90 + .../nether_vault_steel_ore_block.json | 7 + .../blockstates/old_industrial_wood_door.json | 124 + .../old_industrial_wood_planks.json | 18 + .../blockstates/old_industrial_wood_slab.json | 88 + .../old_industrial_wood_stairs.json | 1804 + .../blockstates/panzerglass_block.json | 18 + .../blockstates/panzerglass_slab.json | 88 + .../blockstates/pool_light.json | 7 + .../blockstates/pool_tile.json | 7 + .../blockstates/pool_tile_slab.json | 13 + .../blockstates/pool_tile_stairs.json | 209 + .../blockstates/pool_tile_wall.json | 90 + .../blockstates/raw_cobalt_ore.json | 7 + .../blockstates/rebar_concrete.json | 30 + .../blockstates/rebar_concrete_slab.json | 160 + .../blockstates/rebar_concrete_stairs.json | 3444 + .../blockstates/rebar_concrete_tile.json | 30 + .../blockstates/rebar_concrete_tile_slab.json | 160 + .../rebar_concrete_tile_stairs.json | 3444 + .../blockstates/rebar_concrete_wall.json | 90 + .../blockstates/red_pool_light.json | 7 + .../blockstates/red_pool_tile.json | 7 + .../blockstates/red_pool_tile_slab.json | 13 + .../blockstates/red_pool_tile_stairs.json | 209 + .../blockstates/red_pool_tile_wall.json | 90 + .../blockstates/red_stairs.json | 209 + .../ariasessentials/blockstates/red_tile.json | 7 + .../blockstates/red_tile_br.json | 19 + .../blockstates/red_tile_to_wall.json | 7 + .../blockstates/red_wall_variant_1.json | 7 + .../blockstates/red_wall_variant_2.json | 7 + .../blockstates/slag_brick_block.json | 30 + .../blockstates/slag_brick_slab.json | 160 + .../blockstates/slag_brick_stairs.json | 3444 + .../blockstates/slag_brick_wall.json | 90 + .../blockstates/stable_singularity.json | 7 + .../blockstates/steel_catwalk.json | 7 + .../blockstates/steel_catwalk_block.json | 7 + .../blockstates/steel_catwalk_stairs.json | 19 + .../blockstates/steel_catwalk_stairs_dr.json | 19 + .../blockstates/steel_catwalk_stairs_lr.json | 19 + .../blockstates/steel_catwalk_stairs_rr.json | 19 + .../blockstates/steel_catwalk_top.json | 7 + .../blockstates/steel_floor_grating.json | 7 + .../blockstates/steel_floor_grating_top.json | 7 + .../blockstates/steel_railing.json | 19 + .../blockstates/steel_table.json | 7 + .../blockstates/tflipflop.json | 64 + .../blockstates/uncrafter.json | 19 + .../blockstates/vault_steel_ore_block.json | 7 + .../ariasessentials/blockstates/void.json | 7 + .../ariasessentials/blockstates/whiteout.json | 7 + .../assets/ariasessentials/lang/en_us.json | 199 +- .../models/block/blood_red.json | 6 + .../models/block/blue_pool_light.json | 6 + .../models/block/blue_pool_tile.json | 6 + .../models/block/blue_pool_tile_slab.json | 8 + .../models/block/blue_pool_tile_slab_top.json | 8 + .../models/block/blue_pool_tile_stairs.json | 8 + .../block/blue_pool_tile_stairs_inner.json | 8 + .../block/blue_pool_tile_stairs_outer.json | 8 + .../block/blue_pool_tile_wall_inventory.json | 6 + .../block/blue_pool_tile_wall_post.json | 6 + .../block/blue_pool_tile_wall_side.json | 6 + .../block/blue_pool_tile_wall_side_tall.json | 6 + .../block/clinker_brick_block_model0.json | 6 + .../block/clinker_brick_block_model1.json | 6 + .../block/clinker_brick_block_model2.json | 6 + .../block/clinker_brick_block_model3.json | 6 + .../block/clinker_brick_block_model4.json | 6 + .../block/clinker_brick_block_model5.json | 6 + .../block/clinker_brick_block_model6.json | 6 + .../block/clinker_brick_block_model7.json | 6 + .../clinker_brick_slab_model0_bottom.json | 8 + .../clinker_brick_slab_model0_double.json | 6 + .../block/clinker_brick_slab_model0_top.json | 8 + .../clinker_brick_slab_model1_bottom.json | 8 + .../clinker_brick_slab_model1_double.json | 6 + .../block/clinker_brick_slab_model1_top.json | 8 + .../clinker_brick_slab_model2_bottom.json | 8 + .../clinker_brick_slab_model2_double.json | 6 + .../block/clinker_brick_slab_model2_top.json | 8 + .../clinker_brick_slab_model3_bottom.json | 8 + .../clinker_brick_slab_model3_double.json | 6 + .../block/clinker_brick_slab_model3_top.json | 8 + .../clinker_brick_slab_model4_bottom.json | 8 + .../clinker_brick_slab_model4_double.json | 6 + .../block/clinker_brick_slab_model4_top.json | 8 + .../clinker_brick_slab_model5_bottom.json | 8 + .../clinker_brick_slab_model5_double.json | 6 + .../block/clinker_brick_slab_model5_top.json | 8 + .../clinker_brick_slab_model6_bottom.json | 8 + .../clinker_brick_slab_model6_double.json | 6 + .../block/clinker_brick_slab_model6_top.json | 8 + .../clinker_brick_slab_model7_bottom.json | 8 + .../clinker_brick_slab_model7_double.json | 6 + .../block/clinker_brick_slab_model7_top.json | 8 + .../clinker_brick_stained_block_model0.json | 6 + .../clinker_brick_stained_block_model1.json | 6 + .../clinker_brick_stained_block_model2.json | 6 + .../clinker_brick_stained_block_model3.json | 6 + .../clinker_brick_stained_block_model4.json | 6 + .../clinker_brick_stained_block_model5.json | 6 + .../clinker_brick_stained_block_model6.json | 6 + .../clinker_brick_stained_block_model7.json | 6 + ...nker_brick_stained_slab_model0_bottom.json | 8 + ...nker_brick_stained_slab_model0_double.json | 6 + ...clinker_brick_stained_slab_model0_top.json | 8 + ...nker_brick_stained_slab_model1_bottom.json | 8 + ...nker_brick_stained_slab_model1_double.json | 6 + ...clinker_brick_stained_slab_model1_top.json | 8 + ...nker_brick_stained_slab_model2_bottom.json | 8 + ...nker_brick_stained_slab_model2_double.json | 6 + ...clinker_brick_stained_slab_model2_top.json | 8 + ...nker_brick_stained_slab_model3_bottom.json | 8 + ...nker_brick_stained_slab_model3_double.json | 6 + ...clinker_brick_stained_slab_model3_top.json | 8 + ...nker_brick_stained_slab_model4_bottom.json | 8 + ...nker_brick_stained_slab_model4_double.json | 6 + ...clinker_brick_stained_slab_model4_top.json | 8 + ...nker_brick_stained_slab_model5_bottom.json | 8 + ...nker_brick_stained_slab_model5_double.json | 6 + ...clinker_brick_stained_slab_model5_top.json | 8 + ...nker_brick_stained_slab_model6_bottom.json | 8 + ...nker_brick_stained_slab_model6_double.json | 6 + ...clinker_brick_stained_slab_model6_top.json | 8 + ...nker_brick_stained_slab_model7_bottom.json | 8 + ...nker_brick_stained_slab_model7_double.json | 6 + ...clinker_brick_stained_slab_model7_top.json | 8 + .../clinker_brick_stained_stairs_model0.json | 8 + ...ker_brick_stained_stairs_model0_inner.json | 8 + ...ker_brick_stained_stairs_model0_outer.json | 8 + .../clinker_brick_stained_stairs_model1.json | 8 + ...ker_brick_stained_stairs_model1_inner.json | 8 + ...ker_brick_stained_stairs_model1_outer.json | 8 + .../clinker_brick_stained_stairs_model2.json | 8 + ...ker_brick_stained_stairs_model2_inner.json | 8 + ...ker_brick_stained_stairs_model2_outer.json | 8 + .../clinker_brick_stained_stairs_model3.json | 8 + ...ker_brick_stained_stairs_model3_inner.json | 8 + ...ker_brick_stained_stairs_model3_outer.json | 8 + .../clinker_brick_stained_stairs_model4.json | 8 + ...ker_brick_stained_stairs_model4_inner.json | 8 + ...ker_brick_stained_stairs_model4_outer.json | 8 + .../clinker_brick_stained_stairs_model5.json | 8 + ...ker_brick_stained_stairs_model5_inner.json | 8 + ...ker_brick_stained_stairs_model5_outer.json | 8 + .../clinker_brick_stained_stairs_model6.json | 8 + ...ker_brick_stained_stairs_model6_inner.json | 8 + ...ker_brick_stained_stairs_model6_outer.json | 8 + .../clinker_brick_stained_stairs_model7.json | 8 + ...ker_brick_stained_stairs_model7_inner.json | 8 + ...ker_brick_stained_stairs_model7_outer.json | 8 + .../block/clinker_brick_stairs_model0.json | 8 + .../clinker_brick_stairs_model0_inner.json | 8 + .../clinker_brick_stairs_model0_outer.json | 8 + .../block/clinker_brick_stairs_model1.json | 8 + .../clinker_brick_stairs_model1_inner.json | 8 + .../clinker_brick_stairs_model1_outer.json | 8 + .../block/clinker_brick_stairs_model2.json | 8 + .../clinker_brick_stairs_model2_inner.json | 8 + .../clinker_brick_stairs_model2_outer.json | 8 + .../block/clinker_brick_stairs_model3.json | 8 + .../clinker_brick_stairs_model3_inner.json | 8 + .../clinker_brick_stairs_model3_outer.json | 8 + .../block/clinker_brick_stairs_model4.json | 8 + .../clinker_brick_stairs_model4_inner.json | 8 + .../clinker_brick_stairs_model4_outer.json | 8 + .../block/clinker_brick_stairs_model5.json | 8 + .../clinker_brick_stairs_model5_inner.json | 8 + .../clinker_brick_stairs_model5_outer.json | 8 + .../block/clinker_brick_stairs_model6.json | 8 + .../clinker_brick_stairs_model6_inner.json | 8 + .../clinker_brick_stairs_model6_outer.json | 8 + .../block/clinker_brick_stairs_model7.json | 8 + .../clinker_brick_stairs_model7_inner.json | 8 + .../clinker_brick_stairs_model7_outer.json | 8 + .../block/clinker_brick_wall_inventory.json | 6 + .../models/block/clinker_brick_wall_post.json | 6 + .../models/block/clinker_brick_wall_side.json | 6 + .../block/clinker_brick_wall_side_tall.json | 6 + .../models/block/cobalt_block.json | 6 + .../models/block/cobalt_ore.json | 6 + .../block/compressed_obsidian_block.json | 6 + .../models/block/compression_chamber.bbmodel | 1 + .../models/block/compression_chamber.json | 86 + .../block/custommodel/uncrafter.bbmodel | 1 + .../models/block/custommodel/uncrafter.json | 278 + .../ariasessentials/models/block/cyan.json | 6 + .../models/block/cyan_stairs.json | 8 + .../models/block/cyan_stairs_inner.json | 8 + .../models/block/cyan_stairs_outer.json | 8 + .../models/block/cyan_tile.json | 7 + .../models/block/cyan_tile_br.json | 7 + .../models/block/cyan_tile_to_wall.json | 7 + .../models/block/cyan_wall_variant_1.json | 7 + .../models/block/cyan_wall_variant_2.json | 7 + .../models/block/dark_pool_light.json | 6 + .../models/block/dark_pool_tile.json | 6 + .../models/block/dark_pool_tile_slab.json | 8 + .../models/block/dark_pool_tile_slab_top.json | 8 + .../models/block/dark_pool_tile_stairs.json | 8 + .../block/dark_pool_tile_stairs_inner.json | 8 + .../block/dark_pool_tile_stairs_outer.json | 8 + .../models/block/dark_red_bed.json | 7 + .../models/block/dark_red_carpet.json | 6 + .../models/block/dark_red_shulker_box.json | 5 + .../models/block/dark_red_wool.json | 6 + .../block/deepslate_eternium_ore_block.json | 6 + .../models/block/deprecated.json | 6 + .../models/block/dirty_blue_pool_light.json | 6 + .../models/block/dirty_blue_pool_tile.json | 6 + .../block/dirty_blue_pool_tile_slab.json | 8 + .../block/dirty_blue_pool_tile_slab_top.json | 8 + .../block/dirty_blue_pool_tile_stairs.json | 8 + .../dirty_blue_pool_tile_stairs_inner.json | 8 + .../dirty_blue_pool_tile_stairs_outer.json | 8 + .../dirty_blue_pool_tile_wall_inventory.json | 6 + .../block/dirty_blue_pool_tile_wall_post.json | 6 + .../block/dirty_blue_pool_tile_wall_side.json | 6 + .../dirty_blue_pool_tile_wall_side_tall.json | 6 + .../models/block/dirty_green_pool_light.json | 6 + .../models/block/dirty_green_pool_tile.json | 6 + .../block/dirty_green_pool_tile_slab.json | 8 + .../block/dirty_green_pool_tile_slab_top.json | 8 + .../block/dirty_green_pool_tile_stairs.json | 8 + .../dirty_green_pool_tile_stairs_inner.json | 8 + .../dirty_green_pool_tile_stairs_outer.json | 8 + .../dirty_green_pool_tile_wall_inventory.json | 6 + .../dirty_green_pool_tile_wall_post.json | 6 + .../dirty_green_pool_tile_wall_side.json | 6 + .../dirty_green_pool_tile_wall_side_tall.json | 6 + .../models/block/dirty_pool_light.json | 6 + .../models/block/dirty_pool_tile.json | 6 + .../models/block/dirty_pool_tile_slab.json | 8 + .../block/dirty_pool_tile_slab_top.json | 8 + .../models/block/dirty_pool_tile_stairs.json | 8 + .../block/dirty_pool_tile_stairs_inner.json | 8 + .../block/dirty_pool_tile_stairs_outer.json | 8 + .../block/dirty_pool_tile_wall_inventory.json | 6 + .../block/dirty_pool_tile_wall_post.json | 6 + .../block/dirty_pool_tile_wall_side.json | 6 + .../block/dirty_pool_tile_wall_side_tall.json | 6 + .../models/block/dirty_red_pool_light.json | 6 + .../models/block/dirty_red_pool_tile.json | 6 + .../block/dirty_red_pool_tile_slab.json | 8 + .../block/dirty_red_pool_tile_slab_top.json | 8 + .../block/dirty_red_pool_tile_stairs.json | 8 + .../dirty_red_pool_tile_stairs_inner.json | 8 + .../dirty_red_pool_tile_stairs_outer.json | 8 + .../dirty_red_pool_tile_wall_inventory.json | 6 + .../block/dirty_red_pool_tile_wall_post.json | 6 + .../block/dirty_red_pool_tile_wall_side.json | 6 + .../dirty_red_pool_tile_wall_side_tall.json | 6 + .../models/block/eternium_block.json | 6 + .../models/block/eternium_ore_block.json | 6 + .../ariasessentials/models/block/fb/cube.json | 11 + .../models/block/fb/fullbright.json | 22 + .../models/block/fb/rotatable.json | 12 + .../models/block/fb/sided.json | 12 + .../ariasessentials/models/block/fb/top.json | 11 + .../models/block/filthy_blue_pool_light.json | 6 + .../models/block/filthy_green_pool_light.json | 6 + .../models/block/filthy_pool_light.json | 6 + .../models/block/filthy_red_pool_light.json | 6 + .../models/block/green_pool_light.json | 6 + .../models/block/green_pool_tile.json | 6 + .../models/block/green_pool_tile_slab.json | 8 + .../block/green_pool_tile_slab_top.json | 8 + .../models/block/green_pool_tile_stairs.json | 8 + .../block/green_pool_tile_stairs_inner.json | 8 + .../block/green_pool_tile_stairs_outer.json | 8 + .../block/green_pool_tile_wall_inventory.json | 6 + .../block/green_pool_tile_wall_post.json | 6 + .../block/green_pool_tile_wall_side.json | 6 + .../block/green_pool_tile_wall_side_tall.json | 6 + .../models/block/item_scrubber.json | 274 + .../models/block/item_scrubber.json.old | 12 + .../layered_compressed_obsidian_block.json | 6 + .../logicgates/redstone_tflipflop.bbmodel | 1 - .../models/block/logicgates/tflipflop.json | 200 - .../models/block/magical_scrubber.json | 1489 + .../block/nether_vault_steel_ore_block.json | 6 + .../block/old_industrial_wood_door.json | 7 + .../old_industrial_wood_door_bottom_left.json | 8 + ...industrial_wood_door_bottom_left_open.json | 8 + ...old_industrial_wood_door_bottom_right.json | 8 + ...ndustrial_wood_door_bottom_right_open.json | 8 + .../old_industrial_wood_door_top_left.json | 8 + ...ld_industrial_wood_door_top_left_open.json | 8 + .../old_industrial_wood_door_top_right.json | 8 + ...d_industrial_wood_door_top_right_open.json | 8 + .../old_industrial_wood_planks_model0.json | 6 + .../old_industrial_wood_planks_model1.json | 6 + .../old_industrial_wood_planks_model2.json | 6 + .../old_industrial_wood_planks_model3.json | 6 + ...ld_industrial_wood_slab_model0_bottom.json | 8 + ...ld_industrial_wood_slab_model0_double.json | 6 + .../old_industrial_wood_slab_model0_top.json | 8 + ...ld_industrial_wood_slab_model1_bottom.json | 8 + ...ld_industrial_wood_slab_model1_double.json | 6 + .../old_industrial_wood_slab_model1_top.json | 8 + ...ld_industrial_wood_slab_model2_bottom.json | 8 + ...ld_industrial_wood_slab_model2_double.json | 6 + .../old_industrial_wood_slab_model2_top.json | 8 + ...ld_industrial_wood_slab_model3_bottom.json | 8 + ...ld_industrial_wood_slab_model3_double.json | 6 + .../old_industrial_wood_slab_model3_top.json | 8 + .../old_industrial_wood_stairs_model0.json | 8 + ...d_industrial_wood_stairs_model0_inner.json | 8 + ...d_industrial_wood_stairs_model0_outer.json | 8 + .../old_industrial_wood_stairs_model1.json | 8 + ...d_industrial_wood_stairs_model1_inner.json | 8 + ...d_industrial_wood_stairs_model1_outer.json | 8 + .../old_industrial_wood_stairs_model2.json | 8 + ...d_industrial_wood_stairs_model2_inner.json | 8 + ...d_industrial_wood_stairs_model2_outer.json | 8 + .../old_industrial_wood_stairs_model3.json | 8 + ...d_industrial_wood_stairs_model3_inner.json | 8 + ...d_industrial_wood_stairs_model3_outer.json | 8 + .../block/panzerglass_block_inventory.json | 7 + .../block/panzerglass_block_model0.json | 7 + .../block/panzerglass_block_model1.json | 7 + .../block/panzerglass_block_model2.json | 7 + .../block/panzerglass_block_model3.json | 7 + .../block/panzerglass_slab_model0_bottom.json | 9 + .../block/panzerglass_slab_model0_double.json | 7 + .../block/panzerglass_slab_model0_top.json | 9 + .../block/panzerglass_slab_model1_bottom.json | 9 + .../block/panzerglass_slab_model1_double.json | 7 + .../block/panzerglass_slab_model1_top.json | 9 + .../block/panzerglass_slab_model2_bottom.json | 9 + .../block/panzerglass_slab_model2_double.json | 7 + .../block/panzerglass_slab_model2_top.json | 9 + .../block/panzerglass_slab_model3_bottom.json | 9 + .../block/panzerglass_slab_model3_double.json | 7 + .../block/panzerglass_slab_model3_top.json | 9 + .../models/block/pool_light.json | 6 + .../models/block/pool_tile.json | 6 + .../models/block/pool_tile_slab.json | 8 + .../models/block/pool_tile_slab_top.json | 8 + .../models/block/pool_tile_stairs.json | 8 + .../models/block/pool_tile_stairs_inner.json | 8 + .../models/block/pool_tile_stairs_outer.json | 8 + .../block/pool_tile_wall_inventory.json | 6 + .../models/block/pool_tile_wall_post.json | 6 + .../models/block/pool_tile_wall_side.json | 6 + .../block/pool_tile_wall_side_tall.json | 6 + .../models/block/raw_cobalt_ore.json | 6 + .../models/block/rebar_concrete_model0.json | 6 + .../models/block/rebar_concrete_model1.json | 6 + .../models/block/rebar_concrete_model2.json | 6 + .../models/block/rebar_concrete_model3.json | 6 + .../models/block/rebar_concrete_model4.json | 6 + .../models/block/rebar_concrete_model5.json | 6 + .../models/block/rebar_concrete_model6.json | 6 + .../models/block/rebar_concrete_model7.json | 6 + .../rebar_concrete_slab_model0_bottom.json | 8 + .../rebar_concrete_slab_model0_double.json | 6 + .../block/rebar_concrete_slab_model0_top.json | 8 + .../rebar_concrete_slab_model1_bottom.json | 8 + .../rebar_concrete_slab_model1_double.json | 6 + .../block/rebar_concrete_slab_model1_top.json | 8 + .../rebar_concrete_slab_model2_bottom.json | 8 + .../rebar_concrete_slab_model2_double.json | 6 + .../block/rebar_concrete_slab_model2_top.json | 8 + .../rebar_concrete_slab_model3_bottom.json | 8 + .../rebar_concrete_slab_model3_double.json | 6 + .../block/rebar_concrete_slab_model3_top.json | 8 + .../rebar_concrete_slab_model4_bottom.json | 8 + .../rebar_concrete_slab_model4_double.json | 6 + .../block/rebar_concrete_slab_model4_top.json | 8 + .../rebar_concrete_slab_model5_bottom.json | 8 + .../rebar_concrete_slab_model5_double.json | 6 + .../block/rebar_concrete_slab_model5_top.json | 8 + .../rebar_concrete_slab_model6_bottom.json | 8 + .../rebar_concrete_slab_model6_double.json | 6 + .../block/rebar_concrete_slab_model6_top.json | 8 + .../rebar_concrete_slab_model7_bottom.json | 8 + .../rebar_concrete_slab_model7_double.json | 6 + .../block/rebar_concrete_slab_model7_top.json | 8 + .../block/rebar_concrete_stairs_model0.json | 8 + .../rebar_concrete_stairs_model0_inner.json | 8 + .../rebar_concrete_stairs_model0_outer.json | 8 + .../block/rebar_concrete_stairs_model1.json | 8 + .../rebar_concrete_stairs_model1_inner.json | 8 + .../rebar_concrete_stairs_model1_outer.json | 8 + .../block/rebar_concrete_stairs_model2.json | 8 + .../rebar_concrete_stairs_model2_inner.json | 8 + .../rebar_concrete_stairs_model2_outer.json | 8 + .../block/rebar_concrete_stairs_model3.json | 8 + .../rebar_concrete_stairs_model3_inner.json | 8 + .../rebar_concrete_stairs_model3_outer.json | 8 + .../block/rebar_concrete_stairs_model4.json | 8 + .../rebar_concrete_stairs_model4_inner.json | 8 + .../rebar_concrete_stairs_model4_outer.json | 8 + .../block/rebar_concrete_stairs_model5.json | 8 + .../rebar_concrete_stairs_model5_inner.json | 8 + .../rebar_concrete_stairs_model5_outer.json | 8 + .../block/rebar_concrete_stairs_model6.json | 8 + .../rebar_concrete_stairs_model6_inner.json | 8 + .../rebar_concrete_stairs_model6_outer.json | 8 + .../block/rebar_concrete_stairs_model7.json | 8 + .../rebar_concrete_stairs_model7_inner.json | 8 + .../rebar_concrete_stairs_model7_outer.json | 8 + .../block/rebar_concrete_tile_model0.json | 6 + .../block/rebar_concrete_tile_model1.json | 6 + .../block/rebar_concrete_tile_model2.json | 6 + .../block/rebar_concrete_tile_model3.json | 6 + .../block/rebar_concrete_tile_model4.json | 6 + .../block/rebar_concrete_tile_model5.json | 6 + .../block/rebar_concrete_tile_model6.json | 6 + .../block/rebar_concrete_tile_model7.json | 6 + ...ebar_concrete_tile_slab_model0_bottom.json | 8 + ...ebar_concrete_tile_slab_model0_double.json | 6 + .../rebar_concrete_tile_slab_model0_top.json | 8 + ...ebar_concrete_tile_slab_model1_bottom.json | 8 + ...ebar_concrete_tile_slab_model1_double.json | 6 + .../rebar_concrete_tile_slab_model1_top.json | 8 + ...ebar_concrete_tile_slab_model2_bottom.json | 8 + ...ebar_concrete_tile_slab_model2_double.json | 6 + .../rebar_concrete_tile_slab_model2_top.json | 8 + ...ebar_concrete_tile_slab_model3_bottom.json | 8 + ...ebar_concrete_tile_slab_model3_double.json | 6 + .../rebar_concrete_tile_slab_model3_top.json | 8 + ...ebar_concrete_tile_slab_model4_bottom.json | 8 + ...ebar_concrete_tile_slab_model4_double.json | 6 + .../rebar_concrete_tile_slab_model4_top.json | 8 + ...ebar_concrete_tile_slab_model5_bottom.json | 8 + ...ebar_concrete_tile_slab_model5_double.json | 6 + .../rebar_concrete_tile_slab_model5_top.json | 8 + ...ebar_concrete_tile_slab_model6_bottom.json | 8 + ...ebar_concrete_tile_slab_model6_double.json | 6 + .../rebar_concrete_tile_slab_model6_top.json | 8 + ...ebar_concrete_tile_slab_model7_bottom.json | 8 + ...ebar_concrete_tile_slab_model7_double.json | 6 + .../rebar_concrete_tile_slab_model7_top.json | 8 + .../rebar_concrete_tile_stairs_model0.json | 8 + ...bar_concrete_tile_stairs_model0_inner.json | 8 + ...bar_concrete_tile_stairs_model0_outer.json | 8 + .../rebar_concrete_tile_stairs_model1.json | 8 + ...bar_concrete_tile_stairs_model1_inner.json | 8 + ...bar_concrete_tile_stairs_model1_outer.json | 8 + .../rebar_concrete_tile_stairs_model2.json | 8 + ...bar_concrete_tile_stairs_model2_inner.json | 8 + ...bar_concrete_tile_stairs_model2_outer.json | 8 + .../rebar_concrete_tile_stairs_model3.json | 8 + ...bar_concrete_tile_stairs_model3_inner.json | 8 + ...bar_concrete_tile_stairs_model3_outer.json | 8 + .../rebar_concrete_tile_stairs_model4.json | 8 + ...bar_concrete_tile_stairs_model4_inner.json | 8 + ...bar_concrete_tile_stairs_model4_outer.json | 8 + .../rebar_concrete_tile_stairs_model5.json | 8 + ...bar_concrete_tile_stairs_model5_inner.json | 8 + ...bar_concrete_tile_stairs_model5_outer.json | 8 + .../rebar_concrete_tile_stairs_model6.json | 8 + ...bar_concrete_tile_stairs_model6_inner.json | 8 + ...bar_concrete_tile_stairs_model6_outer.json | 8 + .../rebar_concrete_tile_stairs_model7.json | 8 + ...bar_concrete_tile_stairs_model7_inner.json | 8 + ...bar_concrete_tile_stairs_model7_outer.json | 8 + .../block/rebar_concrete_wall_inventory.json | 6 + .../block/rebar_concrete_wall_post.json | 6 + .../block/rebar_concrete_wall_side.json | 6 + .../block/rebar_concrete_wall_side_tall.json | 6 + .../models/block/red_pool_light.json | 6 + .../models/block/red_pool_tile.json | 6 + .../models/block/red_pool_tile_slab.json | 8 + .../models/block/red_pool_tile_slab_top.json | 8 + .../models/block/red_pool_tile_stairs.json | 8 + .../block/red_pool_tile_stairs_inner.json | 8 + .../block/red_pool_tile_stairs_outer.json | 8 + .../block/red_pool_tile_wall_inventory.json | 6 + .../models/block/red_pool_tile_wall_post.json | 6 + .../models/block/red_pool_tile_wall_side.json | 6 + .../block/red_pool_tile_wall_side_tall.json | 6 + .../models/block/red_stairs.json | 8 + .../models/block/red_stairs_inner.json | 8 + .../models/block/red_stairs_outer.json | 8 + .../models/block/red_tile.json | 7 + .../models/block/red_tile_br.json | 7 + .../models/block/red_tile_to_wall.json | 7 + .../models/block/red_wall_variant_1.json | 7 + .../models/block/red_wall_variant_2.json | 7 + .../models/block/rotatable.json | 12 + .../ariasessentials/models/block/sided.json | 12 + .../models/block/slag_brick_block_model0.json | 6 + .../models/block/slag_brick_block_model1.json | 6 + .../models/block/slag_brick_block_model2.json | 6 + .../models/block/slag_brick_block_model3.json | 6 + .../models/block/slag_brick_block_model4.json | 6 + .../models/block/slag_brick_block_model5.json | 6 + .../models/block/slag_brick_block_model6.json | 6 + .../models/block/slag_brick_block_model7.json | 6 + .../block/slag_brick_slab_model0_bottom.json | 8 + .../block/slag_brick_slab_model0_double.json | 6 + .../block/slag_brick_slab_model0_top.json | 8 + .../block/slag_brick_slab_model1_bottom.json | 8 + .../block/slag_brick_slab_model1_double.json | 6 + .../block/slag_brick_slab_model1_top.json | 8 + .../block/slag_brick_slab_model2_bottom.json | 8 + .../block/slag_brick_slab_model2_double.json | 6 + .../block/slag_brick_slab_model2_top.json | 8 + .../block/slag_brick_slab_model3_bottom.json | 8 + .../block/slag_brick_slab_model3_double.json | 6 + .../block/slag_brick_slab_model3_top.json | 8 + .../block/slag_brick_slab_model4_bottom.json | 8 + .../block/slag_brick_slab_model4_double.json | 6 + .../block/slag_brick_slab_model4_top.json | 8 + .../block/slag_brick_slab_model5_bottom.json | 8 + .../block/slag_brick_slab_model5_double.json | 6 + .../block/slag_brick_slab_model5_top.json | 8 + .../block/slag_brick_slab_model6_bottom.json | 8 + .../block/slag_brick_slab_model6_double.json | 6 + .../block/slag_brick_slab_model6_top.json | 8 + .../block/slag_brick_slab_model7_bottom.json | 8 + .../block/slag_brick_slab_model7_double.json | 6 + .../block/slag_brick_slab_model7_top.json | 8 + .../block/slag_brick_stairs_model0.json | 8 + .../block/slag_brick_stairs_model0_inner.json | 8 + .../block/slag_brick_stairs_model0_outer.json | 8 + .../block/slag_brick_stairs_model1.json | 8 + .../block/slag_brick_stairs_model1_inner.json | 8 + .../block/slag_brick_stairs_model1_outer.json | 8 + .../block/slag_brick_stairs_model2.json | 8 + .../block/slag_brick_stairs_model2_inner.json | 8 + .../block/slag_brick_stairs_model2_outer.json | 8 + .../block/slag_brick_stairs_model3.json | 8 + .../block/slag_brick_stairs_model3_inner.json | 8 + .../block/slag_brick_stairs_model3_outer.json | 8 + .../block/slag_brick_stairs_model4.json | 8 + .../block/slag_brick_stairs_model4_inner.json | 8 + .../block/slag_brick_stairs_model4_outer.json | 8 + .../block/slag_brick_stairs_model5.json | 8 + .../block/slag_brick_stairs_model5_inner.json | 8 + .../block/slag_brick_stairs_model5_outer.json | 8 + .../block/slag_brick_stairs_model6.json | 8 + .../block/slag_brick_stairs_model6_inner.json | 8 + .../block/slag_brick_stairs_model6_outer.json | 8 + .../block/slag_brick_stairs_model7.json | 8 + .../block/slag_brick_stairs_model7_inner.json | 8 + .../block/slag_brick_stairs_model7_outer.json | 8 + .../block/slag_brick_wall_inventory.json | 6 + .../models/block/slag_brick_wall_post.json | 6 + .../models/block/slag_brick_wall_side.json | 6 + .../block/slag_brick_wall_side_tall.json | 6 + .../models/block/stable_singularity.json | 321 + .../models/block/steel_catwalk.json | 3 + .../models/block/steel_catwalk_block.json | 3 + .../models/block/steel_catwalk_stairs.json | 3 + .../models/block/steel_catwalk_stairs_dr.json | 3 + .../models/block/steel_catwalk_stairs_lr.json | 3 + .../models/block/steel_catwalk_stairs_rr.json | 3 + .../models/block/steel_catwalk_top.json | 3 + .../models/block/steel_floor_grating.json | 3 + .../models/block/steel_floor_grating_top.json | 3 + .../models/block/steel_railing.json | 3 + .../models/block/steel_table.json | 3 + .../models/block/tflipflop.json | 3 + .../models/block/uncrafter.json | 3 + .../models/block/vault_steel_ore_block.json | 6 + .../ariasessentials/models/block/void.json | 6 + .../models/block/whiteout.json | 6 + .../models/item/aurora_compound.json | 6 + .../ariasessentials/models/item/black.json | 3 + .../models/item/blood_red.json | 3 + .../models/item/blue_brick.json | 6 + .../models/item/blue_pool_light.json | 3 + .../models/item/blue_pool_tile.json | 3 + .../models/item/blue_pool_tile_slab.json | 3 + .../models/item/blue_pool_tile_stairs.json | 3 + .../models/item/blue_pool_tile_wall.json | 3 + .../models/item/clear_glass_block.json | 3 + .../models/item/clinker_brick_block.json | 3 + .../models/item/clinker_brick_recessed.json | 3 + .../clinker_brick_sastor_corner_block.json | 3 + .../models/item/clinker_brick_slab.json | 3 + .../item/clinker_brick_stained_block.json | 3 + .../item/clinker_brick_stained_slab.json | 3 + .../item/clinker_brick_stained_stairs.json | 3 + .../models/item/clinker_brick_stairs.json | 3 + .../item/clinker_brick_vertically_slit.json | 3 + .../models/item/clinker_brick_wall.json | 3 + .../models/item/cobalt_block.json | 3 + .../models/item/cobalt_ingot.json | 6 + .../models/item/cobalt_ore.json | 3 + .../ariasessentials/models/item/cyan.json | 3 + .../models/item/cyan_brick.json | 6 + .../models/item/cyan_stairs.json | 3 + .../models/item/cyan_tile.json | 3 + .../models/item/cyan_tile_br.json | 3 + .../models/item/cyan_tile_to_wall.json | 3 + .../models/item/cyan_wall_variant_1.json | 3 + .../models/item/cyan_wall_variant_2.json | 3 + .../models/item/dark_pool_light.json | 3 + .../models/item/dark_pool_tile.json | 3 + .../models/item/dark_pool_tile_slab.json | 3 + .../models/item/dark_pool_tile_stairs.json | 3 + .../models/item/dark_red_bed.json | 6 + .../models/item/dark_red_brick.json | 6 + .../models/item/dark_red_carpet.json | 3 + .../models/item/dark_red_dye.json | 6 + .../models/item/dark_red_shulker_box.json | 6 + .../models/item/dark_red_wool.json | 3 + .../item/deepslate_eternium_ore_block.json | 3 + .../item/deepslate_ilusium_ore_block.json | 3 + .../models/item/deprecated.json | 6 + .../models/item/dirty_blue_pool_light.json | 3 + .../models/item/dirty_blue_pool_tile.json | 3 + .../item/dirty_blue_pool_tile_slab.json | 3 + .../item/dirty_blue_pool_tile_stairs.json | 3 + .../item/dirty_blue_pool_tile_wall.json | 3 + .../models/item/dirty_green_pool_light.json | 3 + .../models/item/dirty_green_pool_tile.json | 3 + .../item/dirty_green_pool_tile_slab.json | 3 + .../item/dirty_green_pool_tile_stairs.json | 3 + .../item/dirty_green_pool_tile_wall.json | 3 + .../models/item/dirty_pool_light.json | 3 + .../models/item/dirty_pool_tile.json | 3 + .../models/item/dirty_pool_tile_slab.json | 3 + .../models/item/dirty_pool_tile_stairs.json | 3 + .../models/item/dirty_pool_tile_wall.json | 3 + .../models/item/dirty_red_pool_light.json | 3 + .../models/item/dirty_red_pool_tile.json | 3 + .../models/item/dirty_red_pool_tile_slab.json | 3 + .../item/dirty_red_pool_tile_stairs.json | 3 + .../models/item/dirty_red_pool_tile_wall.json | 3 + .../models/item/empty_spawn_egg.json | 6 + .../models/item/encased_singularity.json | 6 + .../models/item/eternium_block.json | 3 + .../models/item/eternium_fragment.json | 6 + .../models/item/eternium_ingot.json | 6 + .../models/item/eternium_ore.json | 6 + .../models/item/eternium_ore_block.json | 3 + .../models/item/eternium_rod.json | 6 + .../models/item/filthy_blue_pool_light.json | 3 + .../models/item/filthy_green_pool_light.json | 3 + .../models/item/filthy_pool_light.json | 3 + .../models/item/filthy_red_pool_light.json | 3 + .../models/item/green_brick.json | 6 + .../models/item/green_pool_light.json | 3 + .../models/item/green_pool_tile.json | 3 + .../models/item/green_pool_tile_slab.json | 3 + .../models/item/green_pool_tile_stairs.json | 3 + .../models/item/green_pool_tile_wall.json | 3 + .../models/item/ihan_crystal.json | 6 + .../models/item/light_blue_brick.json | 6 + .../models/item/lime_brick.json | 6 + .../models/item/magical_scrubber.json | 3 + .../models/item/magma_powder.json | 6 + .../models/item/melted_ender_pearl.json | 6 + .../models/item/metal_bar.json | 6 + .../models/item/mob_capture_ball.json | 6 + .../item/nether_vault_steel_ore_block.json | 3 + .../models/item/old_industrial_wood_door.json | 3 + .../item/old_industrial_wood_planks.json | 3 + .../models/item/old_industrial_wood_slab.json | 3 + .../item/old_industrial_wood_stairs.json | 3 + .../models/item/panzerglass_block.json | 3 + .../models/item/panzerglass_slab.json | 3 + .../models/item/partial_item.json | 6 + .../models/item/pool_light.json | 3 + .../models/item/pool_tile.json | 3 + .../models/item/pool_tile_slab.json | 3 + .../models/item/pool_tile_stairs.json | 3 + .../models/item/pool_tile_wall.json | 3 + .../models/item/raw_cobalt.json | 6 + .../models/item/raw_cobalt_ore.json | 3 + .../models/item/raw_vault_steel_ore.json | 6 + .../models/item/rebar_concrete.json | 3 + .../models/item/rebar_concrete_slab.json | 3 + .../models/item/rebar_concrete_stairs.json | 3 + .../models/item/rebar_concrete_tile.json | 3 + .../models/item/rebar_concrete_tile_slab.json | 3 + .../item/rebar_concrete_tile_stairs.json | 3 + .../models/item/rebar_concrete_wall.json | 3 + .../models/item/red_brick.json | 6 + .../models/item/red_pool_light.json | 3 + .../models/item/red_pool_tile.json | 3 + .../models/item/red_pool_tile_slab.json | 3 + .../models/item/red_pool_tile_stairs.json | 3 + .../models/item/red_pool_tile_wall.json | 3 + .../models/item/red_stairs.json | 3 + .../ariasessentials/models/item/red_tile.json | 3 + .../models/item/red_tile_br.json | 3 + .../models/item/red_tile_to_wall.json | 3 + .../models/item/red_wall_variant_1.json | 3 + .../models/item/red_wall_variant_2.json | 3 + .../models/item/scrubber_frame.json | 6 + .../models/item/scrubber_frame_piece.json | 6 + .../models/item/singularity.json | 6 + .../models/item/slag_brick_block.json | 3 + .../models/item/slag_brick_slab.json | 3 + .../models/item/slag_brick_stairs.json | 3 + .../models/item/slag_brick_wall.json | 3 + .../models/item/stable_singularity.json | 3 + .../models/item/steel_catwalk.json | 3 + .../models/item/steel_catwalk_block.json | 3 + .../models/item/steel_catwalk_stairs.json | 3 + .../models/item/steel_catwalk_stairs_dr.json | 3 + .../models/item/steel_catwalk_stairs_lr.json | 3 + .../models/item/steel_catwalk_stairs_rr.json | 3 + .../models/item/steel_catwalk_top.json | 3 + .../models/item/steel_floor_grating.json | 3 + .../models/item/steel_floor_grating_top.json | 3 + .../models/item/steel_railing.json | 3 + .../models/item/steel_table.json | 3 + .../models/item/tflipflop.json | 3 + .../models/item/{eiab.json => tiab.json} | 2 +- .../models/item/uncrafter.json | 3 + .../ariasessentials/models/item/void.json | 3 + .../models/item/white_brick.json | 6 + .../ariasessentials/models/item/whiteout.json | 3 + .../ariasessentials/textures/block/black.png | Bin 0 -> 124 bytes .../textures/block/blue_pool_light.png | Bin 0 -> 1355 bytes .../textures/block/blue_pool_tile.png | Bin 0 -> 1396 bytes .../textures/block/cobalt_block.png | Bin 0 -> 146 bytes .../textures/block/cobalt_ore.png | Bin 0 -> 263 bytes .../block/compressed_obsidian_block.png | Bin 0 -> 443 bytes .../compression_chamber/bottom_plate.png | Bin 0 -> 160 bytes .../compression_chamber/compression_lid.png | Bin 0 -> 165 bytes .../block/compression_chamber/compressor.png | Bin 0 -> 162 bytes .../block/compression_chamber/power.png | Bin 0 -> 161 bytes .../block/compression_chamber/support0.png | Bin 0 -> 126 bytes .../textures/block/dark_pool_light.png | Bin 0 -> 1387 bytes .../textures/block/dark_pool_tile.png | Bin 0 -> 1511 bytes .../textures/block/dark_red_wool.png | Bin 0 -> 423 bytes .../block/deepslate_eternium_ore_block.png | Bin 0 -> 650 bytes .../textures/block/deprecated.png | Bin 0 -> 208 bytes .../textures/block/dirty_blue_pool_light.png | Bin 0 -> 1350 bytes .../textures/block/dirty_blue_pool_tile.png | Bin 0 -> 1190 bytes .../textures/block/dirty_green_pool_light.png | Bin 0 -> 1323 bytes .../textures/block/dirty_green_pool_tile.png | Bin 0 -> 1114 bytes .../textures/block/dirty_pool_light.png | Bin 0 -> 1335 bytes .../textures/block/dirty_pool_tile.png | Bin 0 -> 756 bytes .../textures/block/dirty_red_pool_light.png | Bin 0 -> 1302 bytes .../textures/block/dirty_red_pool_tile.png | Bin 0 -> 1072 bytes .../textures/block/eternium_block.png | Bin 0 -> 534 bytes .../textures/block/eternium_ore_block.png | Bin 0 -> 705 bytes .../textures/block/filthy_blue_pool_light.png | Bin 0 -> 1397 bytes .../block/filthy_green_pool_light.png | Bin 0 -> 1358 bytes .../textures/block/filthy_pool_light.png | Bin 0 -> 1307 bytes .../textures/block/filthy_red_pool_light.png | Bin 0 -> 1332 bytes .../textures/block/green_pool_light.png | Bin 0 -> 1305 bytes .../textures/block/green_pool_tile.png | Bin 0 -> 1152 bytes .../textures/block/ilusium_portal.aseprite | Bin 0 -> 11512 bytes .../textures/block/ilusium_portal.png | Bin 0 -> 18807 bytes .../layered_compressed_obsidian_block.png | Bin 0 -> 358 bytes .../textures/block/logicgates/locked_bar.png | Bin 115 -> 0 bytes .../textures/block/logicgates/logic_gate.png | Bin 265 -> 0 bytes .../textures/block/logicgates/off.png | Bin 73 -> 0 bytes .../textures/block/logicgates/tflipflop.png | Bin 341 -> 0 bytes .../textures/block/logicgates/torch.png | Bin 330 -> 0 bytes .../textures/block/logicgates/torch_off.png | Bin 189 -> 0 bytes .../textures/block/logicgates/torch_on.png | Bin 263 -> 0 bytes .../block/nether_vault_steel_ore_block.png | Bin 0 -> 879 bytes .../textures/block/pool_light.png | Bin 0 -> 1272 bytes .../textures/block/pool_tile.png | Bin 0 -> 736 bytes .../textures/block/raw_cobalt_ore.png | Bin 0 -> 254 bytes .../textures/block/red_pool_light.png | Bin 0 -> 1303 bytes .../textures/block/red_pool_tile.png | Bin 0 -> 1138 bytes .../textures/block/scrubber/center_cube.png | Bin 0 -> 123 bytes .../textures/block/scrubber/corner_cube.png | Bin 0 -> 120 bytes .../textures/block/scrubber/frame_bars.png | Bin 0 -> 181 bytes .../block/scrubber/inner_corner_cubes.png | Bin 0 -> 113 bytes .../scrubber/scrubber_old_internal_cube.png | Bin 0 -> 325 bytes .../block/scrubber/scrubber_right.png | Bin 0 -> 1174 bytes .../textures/block/scrubber/scrubber_top.png | Bin 0 -> 118 bytes .../scrubber/stable_singularity_body.png | Bin 0 -> 168 bytes .../scrubber/stable_singularity_inner.png | Bin 0 -> 104 bytes .../textures/block/thresholds/blood_red.png | Bin 0 -> 99 bytes .../textures/block/thresholds/cyan.png | Bin 0 -> 99 bytes .../floor/tiles/cyan_tile_transition.png | Bin 0 -> 231 bytes .../floor/tiles/cyan_tile_w_circle.png | Bin 0 -> 262 bytes .../hallway/floor/tiles/lime_tile.png | Bin 0 -> 281 bytes .../floor/tiles/lime_tile_transition.png | Bin 0 -> 256 bytes .../hallway/floor/tiles/red_tile.png | Bin 0 -> 189 bytes .../floor/tiles/red_tile_stairs_inner.png | Bin 0 -> 237 bytes .../tiles/red_tile_transition_blood_red.png | Bin 0 -> 206 bytes .../hallway/floor/tiles/red_tile_w_circle.png | Bin 0 -> 243 bytes .../hallway/wall/cyan_floor_to_wall.png | Bin 0 -> 213 bytes .../thresholds/hallway/wall/cyan_wall.png | Bin 0 -> 129 bytes .../thresholds/hallway/wall/cyan_wall2.png | Bin 0 -> 165 bytes .../wall/floor_wall_transition.aseprite | Bin 0 -> 627 bytes .../hallway/wall/lime_floor_to_wall.png | Bin 0 -> 225 bytes .../thresholds/hallway/wall/lime_wall.png | Bin 0 -> 133 bytes .../thresholds/hallway/wall/lime_wall2.png | Bin 0 -> 180 bytes .../hallway/wall/red_floor_to_wall.png | Bin 0 -> 197 bytes .../thresholds/hallway/wall/red_wall.png | Bin 0 -> 123 bytes .../thresholds/hallway/wall/red_wall2.png | Bin 0 -> 158 bytes .../textures/block/thresholds/lime.png | Bin 0 -> 99 bytes .../textures/block/thresholds/void.png | Bin 0 -> 99 bytes .../textures/block/thresholds/white.png | Bin 0 -> 99 bytes .../textures/block/uncrafter.png | Bin 0 -> 638 bytes .../textures/block/uncrafter.png.mcmeta | 6 + .../textures/block/uncrafter_bottom.png | Bin 0 -> 611 bytes .../textures/block/uncrafter_side.aseprite | Bin 0 -> 760 bytes .../textures/block/uncrafter_side.png | Bin 0 -> 586 bytes .../textures/block/vault_steel_ore_block.png | Bin 0 -> 580 bytes .../textures/entity/mob_capture_ball.png | Bin 0 -> 289 bytes .../ariasessentials/textures/gui/absorb.png | Bin 6946 -> 0 bytes .../ariasessentials/textures/gui/hearts.png | Bin 5965 -> 0 bytes .../textures/item/blue_brick.png | Bin 0 -> 280 bytes .../textures/item/clone_ball.png | Bin 0 -> 229 bytes .../textures/item/cobalt_ingot.png | Bin 0 -> 200 bytes .../textures/item/cobalt_nugget.png | Bin 0 -> 151 bytes .../item/compressed_obsidian_sheet.png | Bin 0 -> 543 bytes .../textures/item/crucible.png | Bin 0 -> 164 bytes .../textures/item/cyan_brick.png | Bin 0 -> 283 bytes .../textures/item/dark_blue_brick.png | Bin 0 -> 280 bytes .../textures/item/dark_red_brick.png | Bin 0 -> 266 bytes .../textures/item/dark_red_dye.png | Bin 0 -> 343 bytes .../textures/item/deprecated.png | Bin 0 -> 277 bytes .../ariasessentials/textures/item/eiab.png | Bin 2553 -> 0 bytes .../textures/item/eiab.png.mcmeta | 6 - .../textures/item/empty_spawn_egg.png | Bin 0 -> 489 bytes .../textures/item/encased_singularity.png | Bin 0 -> 307 bytes .../textures/item/eternium_dust.png | Bin 0 -> 339 bytes .../textures/item/eternium_fragment.png | Bin 0 -> 263 bytes .../textures/item/eternium_ingot.png | Bin 0 -> 214 bytes .../textures/item/eternium_ore.png | Bin 0 -> 449 bytes .../textures/item/eternium_rod.png | Bin 0 -> 115 bytes .../textures/item/green_brick.png | Bin 0 -> 262 bytes .../textures/item/ihan_crystal.png | Bin 0 -> 294 bytes .../textures/item/light_blue_brick.png | Bin 0 -> 280 bytes .../textures/item/lime_brick.png | Bin 0 -> 269 bytes .../textures/item/magma_powder.png | Bin 0 -> 456 bytes .../textures/item/melted_ender_pearl.png | Bin 0 -> 269 bytes .../textures/item/mob_capture_ball.png | Bin 0 -> 289 bytes .../textures/item/partial_item.png | Bin 0 -> 385 bytes .../textures/item/raw_cobalt.png | Bin 0 -> 275 bytes .../textures/item/raw_vault_steel_ore.png | Bin 0 -> 630 bytes .../textures/item/red_brick.png | Bin 0 -> 272 bytes .../textures/item/scrubber_frame.png | Bin 0 -> 145 bytes .../textures/item/scrubber_frame_piece.png | Bin 0 -> 129 bytes .../textures/item/singularity.aseprite | Bin 0 -> 615 bytes .../textures/item/singularity.png | Bin 0 -> 128 bytes .../textures/item/super_heated_crucible.png | Bin 0 -> 158 bytes .../textures/item/white_brick.aseprite | Bin 0 -> 682 bytes .../textures/item/white_brick.png | Bin 0 -> 277 bytes .../textures/mob_effect/flight.png | Bin 0 -> 309 bytes .../textures/mob_effect/seal.aseprite | Bin 0 -> 864 bytes .../textures/mob_effect/seal.png | Bin 0 -> 414 bytes .../assets/libzontreck/lang/en_us.json | 9 + .../libzontreck/models/item/chestgui_add.json | 6 + .../models/item/chestgui_back.json | 6 + .../models/item/chestgui_forward.json | 6 + .../models/item/chestgui_remove.json | 6 + .../models/item/chestgui_reset.json | 6 + .../libzontreck/textures/gui/chest_gui.png | Bin 0 -> 63782 bytes .../textures/item/chestgui_add.png | Bin 0 -> 125 bytes .../textures/item/chestgui_back.png | Bin 0 -> 156 bytes .../textures/item/chestgui_forward.png | Bin 0 -> 162 bytes .../textures/item/chestgui_remove.png | Bin 0 -> 104 bytes .../textures/item/chestgui_reset.png | Bin 0 -> 206 bytes .../ariasessentials/dimension/builder.json | 11 + .../ariasessentials/dimension/resource.json | 205029 +++++++++++++++ .../dimension_type/builder.json | 19 + .../dimension_type/resource.json | 20 + .../forge/biome_modifier/eternium_placer.json | 6 + .../loot_tables/blocks/blood_red.json | 21 + .../loot_tables/blocks/blue_pool_light.json | 21 + .../loot_tables/blocks/blue_pool_tile.json | 21 + .../blocks/blue_pool_tile_slab.json | 35 + .../blocks/blue_pool_tile_stairs.json | 21 + .../loot_tables/blocks/clear_glass_block.json | 21 + .../blocks/clinker_brick_recessed.json | 21 + .../blocks/clinker_brick_vertically_slit.json | 21 + .../blocks/compressed_obsidian_block.json | 21 + .../blocks/compression_chamber.json | 21 + .../loot_tables/blocks/cyan.json | 21 + .../loot_tables/blocks/cyan_stairs.json | 21 + .../loot_tables/blocks/cyan_tile.json | 21 + .../loot_tables/blocks/cyan_tile_br.json | 21 + .../loot_tables/blocks/cyan_tile_to_wall.json | 21 + .../blocks/cyan_wall_variant_1.json | 21 + .../blocks/cyan_wall_variant_2.json | 21 + .../loot_tables/blocks/dark_pool_light.json | 21 + .../loot_tables/blocks/dark_pool_tile.json | 21 + .../blocks/dark_pool_tile_slab.json | 35 + .../blocks/dark_pool_tile_stairs.json | 21 + .../loot_tables/blocks/dark_red_carpet.json | 21 + .../loot_tables/blocks/dark_red_wool.json | 21 + .../blocks/deepslate_eternium_ore_block.json | 50 + .../blocks/deepslate_ilusium_ore_block.json | 21 + .../blocks/dirty_blue_pool_light.json | 21 + .../blocks/dirty_blue_pool_tile.json | 21 + .../blocks/dirty_blue_pool_tile_slab.json | 35 + .../blocks/dirty_blue_pool_tile_stairs.json | 21 + .../blocks/dirty_green_pool_light.json | 21 + .../blocks/dirty_green_pool_tile.json | 21 + .../blocks/dirty_green_pool_tile_slab.json | 35 + .../blocks/dirty_green_pool_tile_stairs.json | 21 + .../loot_tables/blocks/dirty_pool_light.json | 21 + .../loot_tables/blocks/dirty_pool_tile.json | 21 + .../blocks/dirty_pool_tile_slab.json | 35 + .../blocks/dirty_pool_tile_stairs.json | 21 + .../blocks/dirty_red_pool_light.json | 21 + .../blocks/dirty_red_pool_tile.json | 21 + .../blocks/dirty_red_pool_tile_slab.json | 35 + .../blocks/dirty_red_pool_tile_stairs.json | 21 + .../loot_tables/blocks/eternium_block.json | 21 + .../blocks/eternium_ore_block.json | 50 + .../blocks/filthy_blue_pool_light.json | 21 + .../blocks/filthy_green_pool_light.json | 21 + .../loot_tables/blocks/filthy_pool_light.json | 21 + .../blocks/filthy_red_pool_light.json | 21 + .../loot_tables/blocks/green_pool_light.json | 21 + .../loot_tables/blocks/green_pool_tile.json | 21 + .../blocks/green_pool_tile_slab.json | 35 + .../blocks/green_pool_tile_stairs.json | 21 + .../loot_tables/blocks/ilusium_block.json | 21 + .../loot_tables/blocks/ilusium_ore_block.json | 21 + .../loot_tables/blocks/item_scrubber.json | 21 + .../layered_compressed_obsidian_block.json | 21 + .../loot_tables/blocks/magical_scrubber.json | 21 + .../blocks/nether_vault_steel_ore_block.json | 50 + .../loot_tables/blocks/pool_light.json | 21 + .../loot_tables/blocks/pool_tile.json | 21 + .../loot_tables/blocks/pool_tile_slab.json | 35 + .../loot_tables/blocks/pool_tile_stairs.json | 21 + .../loot_tables/blocks/pool_tile_wall.json | 35 + .../loot_tables/blocks/red_pool_light.json | 21 + .../loot_tables/blocks/red_pool_tile.json | 21 + .../blocks/red_pool_tile_slab.json | 35 + .../blocks/red_pool_tile_stairs.json | 21 + .../loot_tables/blocks/red_stairs.json | 21 + .../loot_tables/blocks/red_tile.json | 21 + .../loot_tables/blocks/red_tile_br.json | 21 + .../loot_tables/blocks/red_tile_to_wall.json | 21 + .../blocks/red_wall_variant_1.json | 21 + .../blocks/red_wall_variant_2.json | 21 + .../blocks/stable_singularity.json | 21 + .../loot_tables/blocks/uncrafter.json | 21 + .../blocks/vault_steel_ore_block.json | 50 + .../loot_tables/blocks/void.json | 21 + .../loot_tables/blocks/whiteout.json | 21 + .../ariasessentials/recipes/blue_brick.json | 15 + .../recipes/brimstone_to_sulfur.json | 12 + .../recipes/crushing_brimstone.json | 12 + .../ariasessentials/recipes/cyan_brick.json | 15 + .../recipes/dark_red_brick.json | 15 + .../ariasessentials/recipes/dark_red_dye.json | 15 + .../recipes/dye_dark_red_carpet.json | 63 + .../recipes/dye_dark_red_wool.json | 63 + .../recipes/empty_spawn_egg.json | 16 + .../recipes/encased_singularity.json | 20 + .../recipes/eternium_block.json | 17 + .../recipes/eternium_block_to_ingot.json | 12 + .../recipes/eternium_ingot.json | 17 + .../ariasessentials/recipes/eternium_rod.json | 20 + .../ariasessentials/recipes/green_brick.json | 15 + .../recipes/holosphere.json.old | 27 + .../ariasessentials/recipes/ihan_crystal.json | 20 + .../recipes/leather_from_rotten_flesh.json | 11 + .../recipes/light_blue_brick.json | 15 + .../ariasessentials/recipes/lime_brick.json | 15 + .../data/ariasessentials/recipes/magma.json | 17 + .../ariasessentials/recipes/magma_powder.json | 15 + .../recipes/mob_capture_ball.json | 20 + .../ariasessentials/recipes/red_brick.json | 15 + .../bop_rosequartz_chunk_polish.json | 13 + .../sandpaper/bop_rosequartz_polish.json | 13 + .../bop_rosequartz_shard_polish.json | 13 + .../recipes/tetra/seeping_bedrock.json | 20 + .../thresholds/decorative/cyan/cyan.json | 20 + .../decorative/cyan/cyan_stairs.json | 17 + .../thresholds/decorative/cyan/cyan_tile.json | 20 + .../decorative/cyan/cyan_tile_br.json | 20 + .../decorative/cyan/cyan_tile_to_wall.json | 20 + .../decorative/cyan/cyan_wall_variant_1.json | 20 + .../decorative/cyan/cyan_wall_variant_2.json | 20 + .../decorative/pool/blue/blue_pool_light.json | 20 + .../pool/blue/blue_pool_tile_slab.json | 15 + .../pool/blue/blue_pool_tile_stairs.json | 17 + .../pool/blue/blue_pool_tile_wall.json | 16 + .../decorative/pool/blue/blue_pool_tiles.json | 23 + .../pool/blue/dark_pool_tile_stairs.json | 17 + .../decorative/pool/blue/dark_pool_tiles.json | 19 + .../pool/blue/dirty_blue_pool_light.json | 15 + .../pool/blue/dirty_blue_pool_tile_slab.json | 15 + .../blue/dirty_blue_pool_tile_stairs.json | 17 + .../pool/blue/dirty_blue_pool_tile_wall.json | 16 + .../pool/blue/dirty_blue_pool_tiles.json | 15 + .../pool/blue/filthy_blue_pool_light.json | 15 + .../pool/clean/dirty_pool_light.json | 15 + .../pool/clean/dirty_pool_tile_slab.json | 15 + .../pool/clean/dirty_pool_tile_stairs.json | 17 + .../pool/clean/dirty_pool_tile_wall.json | 16 + .../pool/clean/dirty_pool_tiles.json | 15 + .../pool/clean/filthy_pool_light.json | 15 + .../decorative/pool/clean/pool_light.json | 20 + .../decorative/pool/clean/pool_tile_slab.json | 15 + .../pool/clean/pool_tile_stairs.json | 17 + .../decorative/pool/clean/pool_tile_wall.json | 16 + .../decorative/pool/clean/pool_tiles.json | 17 + .../pool/green/dirty_green_pool_light.json | 15 + .../green/dirty_green_pool_tile_slab.json | 15 + .../green/dirty_green_pool_tile_stairs.json | 17 + .../green/dirty_green_pool_tile_wall.json | 16 + .../pool/green/dirty_green_pool_tiles.json | 15 + .../pool/green/filthy_green_pool_light.json | 15 + .../pool/green/green_pool_light.json | 20 + .../pool/green/green_pool_tile_slab.json | 15 + .../pool/green/green_pool_tile_stairs.json | 17 + .../pool/green/green_pool_tile_wall.json | 16 + .../pool/green/green_pool_tiles.json | 20 + .../pool/red/dirty_red_pool_light.json | 15 + .../pool/red/dirty_red_pool_tile_slab.json | 15 + .../pool/red/dirty_red_pool_tile_stairs.json | 17 + .../pool/red/dirty_red_pool_tile_wall.json | 16 + .../pool/red/dirty_red_pool_tiles.json | 19 + .../pool/red/filthy_red_pool_light.json | 15 + .../decorative/pool/red/red_pool_light.json | 20 + .../pool/red/red_pool_tile_slab.json | 15 + .../pool/red/red_pool_tile_stairs.json | 17 + .../pool/red/red_pool_tile_wall.json | 16 + .../decorative/pool/red/red_pool_tiles.json | 23 + .../thresholds/decorative/red/blood_red.json | 20 + .../thresholds/decorative/red/red_stairs.json | 17 + .../thresholds/decorative/red/red_tile.json | 20 + .../decorative/red/red_tile_br.json | 20 + .../decorative/red/red_tile_to_wall.json | 20 + .../decorative/red/red_wall_variant_1.json | 20 + .../decorative/red/red_wall_variant_2.json | 20 + .../recipes/thresholds/decorative/void.json | 20 + .../thresholds/decorative/whiteout.json | 20 + .../recipes/unstable_singularity.json | 16 + .../ariasessentials/recipes/white_brick.json | 15 + .../tags/blocks/brimstone.json | 6 + .../ariasessentials/tags/blocks/catwalk.json | 6 - .../tags/blocks/deprecated.json | 4 + .../tags/blocks/engineersdecor.json | 16 +- ...ain_concretes.json => plain_concrete.json} | 0 .../tags/blocks/pool_tiles.json | 56 + .../tags/blocks/thresholds/cyan.json | 11 + .../tags/blocks/thresholds/lime.json | 11 + .../tags/blocks/thresholds/pool.json | 55 + .../tags/blocks/thresholds/red.json | 11 + .../tags/blocks/uncrafting_tables.json | 5 + .../blocks/uncrafting_tables/uncrafter.json | 6 + .../tags/items/deprecated.json | 4 + .../tags/items/engineersdecor.json | 18 +- .../tags/items/plain_concretes.json | 37 - .../tags/items/pool_tiles.json | 57 + .../tags/items/uncrafting_tables.json | 5 + .../items/uncrafting_tables/uncrafter.json | 6 + .../eternium_oregen_overworld.json | 27 + .../worldgen/noise_settings/builder.json | 2448 + .../worldgen/noise_settings/resource.json | 2542 + .../eternium_oregen_overworld.json | 27 + .../forge/tags/blocks/ore_rates/singular.json | 4 + .../data/forge/tags/blocks/ores.json | 6 + .../data/forge/tags/blocks/ores/eternium.json | 6 + .../blocks/ores_in_ground/netherrack.json | 4 + .../forge/tags/blocks/storage_blocks.json | 5 + .../tags/blocks/storage_blocks/eternium.json | 5 + .../data/forge/tags/items/brimstone.json | 5 + .../data/forge/tags/items/dusts.json | 5 + .../data/forge/tags/items/dusts/magma.json | 5 + .../data/forge/tags/items/ingots.json | 5 + .../forge/tags/items/ingots/eternium.json | 5 + .../data/forge/tags/items/nuggets.json | 4 + .../forge/tags/items/ore_rates/singular.json | 4 + .../resources/data/forge/tags/items/ores.json | 5 + .../data/forge/tags/items/ores/eternium.json | 7 + .../tags/items/ores_in_ground/netherrack.json | 4 + .../data/forge/tags/items/raw_materials.json | 5 + .../tags/items/raw_materials/eternium.json | 5 + .../resources/data/forge/tags/items/rods.json | 5 + .../data/forge/tags/items/rods/eternium.json | 5 + .../data/forge/tags/items/storage_blocks.json | 5 + .../tags/items/storage_blocks/eternium.json | 5 + .../loot_tables/blocks/budding_amethyst.json | 44 + .../tags/blocks/mineable/pickaxe.json | 7 + .../tags/blocks/needs_diamond_tool.json | 6 + .../tags/blocks/needs_iron_tool.json | 7 +- .../data/minecraft/tags/blocks/slabs.json | 13 +- .../data/minecraft/tags/blocks/stairs.json | 13 +- .../data/minecraft/tags/blocks/walls.json | 10 +- .../minecraft/tags/blocks/wither_immune.json | 8 +- .../data/minecraft/tags/blocks/wool.json | 6 + .../minecraft/tags/blocks/wool_carpet.json | 6 + .../data/minecraft/tags/items/dyes.json | 6 + .../minecraft/tags/items/piglin_loved.json | 6 + .../data/minecraft/tags/items/slabs.json | 12 +- .../data/minecraft/tags/items/stairs.json | 12 +- .../data/minecraft/tags/items/walls.json | 10 +- .../data/minecraft/tags/items/wool.json | 6 + .../minecraft/tags/items/wool_carpet.json | 6 + src/main/resources/pack.mcmeta | 11 +- 1443 files changed, 258988 insertions(+), 6046 deletions(-) create mode 100644 src/main/java/com/zontreck/AriasEssentials.java rename src/main/java/{dev/zontreck/essentials => com/zontreck}/Messages.java (83%) create mode 100644 src/main/java/com/zontreck/ariaslib/http/HTTPMethod.java create mode 100644 src/main/java/com/zontreck/ariaslib/http/HTTPRequest.java create mode 100644 src/main/java/com/zontreck/ariaslib/http/HTTPRequestBuilder.java create mode 100644 src/main/java/com/zontreck/ariaslib/http/HTTPResponse.java create mode 100644 src/main/java/com/zontreck/ariaslib/terminal/Banners.java create mode 100644 src/main/java/com/zontreck/ariaslib/terminal/Task.java create mode 100644 src/main/java/com/zontreck/ariaslib/terminal/TaskCompletionToken.java create mode 100644 src/main/java/com/zontreck/ariaslib/util/FileIO.java create mode 100644 src/main/java/com/zontreck/ariaslib/util/Hashing.java create mode 100644 src/main/java/com/zontreck/ariaslib/util/Lists.java create mode 100644 src/main/java/com/zontreck/ariaslib/util/Maps.java create mode 100644 src/main/java/com/zontreck/ariaslib/util/MathUtil.java create mode 100644 src/main/java/com/zontreck/ariaslib/util/Percent.java create mode 100644 src/main/java/com/zontreck/ariaslib/util/Progress.java create mode 100644 src/main/java/com/zontreck/ariaslib/util/ProgressBar.java create mode 100644 src/main/java/com/zontreck/ariaslib/util/TimeNotation.java create mode 100644 src/main/java/com/zontreck/ariaslib/util/TimeUtil.java create mode 100644 src/main/java/com/zontreck/block/DeprecatedBlock.java create mode 100644 src/main/java/com/zontreck/block/DeprecatedBlockItem.java create mode 100644 src/main/java/com/zontreck/block/DeprecatedModBlocks.java create mode 100644 src/main/java/com/zontreck/block/FoiledBlockItem.java create mode 100644 src/main/java/com/zontreck/block/ModBlocks.java create mode 100644 src/main/java/com/zontreck/block/RegistryObj.java create mode 100644 src/main/java/com/zontreck/block/RotatableBlock.java create mode 100644 src/main/java/com/zontreck/block/VoidBlock.java create mode 100644 src/main/java/com/zontreck/block/types/AlternatePaneBlock.java rename src/main/java/{dev/zontreck/essentials/client/renderer => com/zontreck/client}/TimeBoostEntityRenderer.java (93%) create mode 100644 src/main/java/com/zontreck/commands/CommandRegistry.java rename src/main/java/{dev/zontreck/essentials => com/zontreck}/commands/homes/DelHomeCommand.java (68%) rename src/main/java/{dev/zontreck/essentials => com/zontreck}/commands/homes/HomeCommand.java (75%) rename src/main/java/{dev/zontreck/essentials => com/zontreck}/commands/homes/HomesCommand.java (74%) rename src/main/java/{dev/zontreck/essentials => com/zontreck}/commands/homes/SetHomeCommand.java (62%) create mode 100644 src/main/java/com/zontreck/commands/items/ShareItemInChatCommand.java create mode 100644 src/main/java/com/zontreck/commands/items/TIABDebug.java rename src/main/java/{dev/zontreck/essentials => com/zontreck}/commands/teleport/TPACommand.java (78%) rename src/main/java/{dev/zontreck/essentials => com/zontreck}/commands/teleport/TPAHereCommand.java (80%) rename src/main/java/{dev/zontreck/essentials => com/zontreck}/commands/teleport/TPAcceptCommand.java (87%) rename src/main/java/{dev/zontreck/essentials => com/zontreck}/commands/teleport/TPCancelCommand.java (80%) rename src/main/java/{dev/zontreck/essentials => com/zontreck}/commands/teleport/TPDenyCommand.java (80%) rename src/main/java/{dev/zontreck/essentials => com/zontreck}/configs/client/AEClientConfig.java (90%) create mode 100644 src/main/java/com/zontreck/configs/client/sections/Messages.java create mode 100644 src/main/java/com/zontreck/configs/server/AEServerConfig.java rename src/main/java/{dev/zontreck/essentials => com/zontreck}/configs/server/sections/Bottles.java (87%) create mode 100644 src/main/java/com/zontreck/configs/server/sections/Drops.java rename src/main/java/{dev/zontreck/essentials => com/zontreck}/configs/server/sections/Messages.java (92%) rename src/main/java/{dev/zontreck/essentials => com/zontreck}/configs/server/sections/Teleportation.java (95%) create mode 100644 src/main/java/com/zontreck/effects/FlightEffect.java create mode 100644 src/main/java/com/zontreck/effects/ModEffects.java create mode 100644 src/main/java/com/zontreck/effects/ModPotions.java create mode 100644 src/main/java/com/zontreck/enchantments/ConsumptionMending.java create mode 100644 src/main/java/com/zontreck/enchantments/DamageIncreaseEnchantment.java create mode 100644 src/main/java/com/zontreck/enchantments/EnchantmentEvents.java create mode 100644 src/main/java/com/zontreck/enchantments/FlightEnchantment.java create mode 100644 src/main/java/com/zontreck/enchantments/MobEggEnchantment.java create mode 100644 src/main/java/com/zontreck/enchantments/ModDamageSources.java create mode 100644 src/main/java/com/zontreck/enchantments/ModEnchantments.java create mode 100644 src/main/java/com/zontreck/enchantments/NightVisionEnchantment.java create mode 100644 src/main/java/com/zontreck/enchantments/VampiricMending.java create mode 100644 src/main/java/com/zontreck/enchantments/WaterBreathingEnchantment.java rename src/main/java/{dev/zontreck/essentials => com/zontreck}/entities/ModEntities.java (74%) rename src/main/java/{dev/zontreck/essentials => com/zontreck}/entities/TimeBoostEntity.java (94%) rename src/main/java/{dev/zontreck/essentials => com/zontreck}/events/CommandExecutionEvent.java (80%) rename src/main/java/{dev/zontreck/essentials => com/zontreck}/events/HomeCreatedEvent.java (82%) rename src/main/java/{dev/zontreck/essentials => com/zontreck}/events/HomeDeletedEvent.java (63%) rename src/main/java/{dev/zontreck/essentials => com/zontreck}/events/TeleportEvent.java (77%) create mode 100644 src/main/java/com/zontreck/exceptions/NoSuchHomeException.java rename src/main/java/{dev/zontreck/essentials => com/zontreck}/homes/Home.java (86%) rename src/main/java/{dev/zontreck/essentials => com/zontreck}/homes/Homes.java (84%) create mode 100644 src/main/java/com/zontreck/items/CreativeModeTabs.java create mode 100644 src/main/java/com/zontreck/items/DeprecatedItem.java create mode 100644 src/main/java/com/zontreck/items/DeprecatedModItems.java create mode 100644 src/main/java/com/zontreck/items/IhanCrystal.java create mode 100644 src/main/java/com/zontreck/items/MagmaPowder.java create mode 100644 src/main/java/com/zontreck/items/MobCaptureBallItem.java create mode 100644 src/main/java/com/zontreck/items/ModItems.java rename src/main/java/{dev/zontreck/essentials/configs => com/zontreck/items}/NBTKeys.java (90%) create mode 100644 src/main/java/com/zontreck/items/PartialItem.java create mode 100644 src/main/java/com/zontreck/items/ThrownMobCaptureBall.java rename src/main/java/{dev/zontreck/essentials/items/abstraction/AbstractBottle.java => com/zontreck/items/abstracts/AbstractTIAB.java} (73%) rename src/main/java/{dev/zontreck/essentials/items/implementation => com/zontreck/items/impl}/TimeBottle.java (62%) create mode 100644 src/main/java/com/zontreck/items/tags/ItemStatTag.java create mode 100644 src/main/java/com/zontreck/items/tags/ItemStatType.java create mode 100644 src/main/java/com/zontreck/items/tags/ItemStatistics.java create mode 100644 src/main/java/com/zontreck/items/tags/ModIDs.java create mode 100644 src/main/java/com/zontreck/libzontreck/LibZontreck.java create mode 100644 src/main/java/com/zontreck/libzontreck/api/Vector2.java create mode 100644 src/main/java/com/zontreck/libzontreck/api/Vector3.java create mode 100644 src/main/java/com/zontreck/libzontreck/blocks/BlockCustomVoxels.java create mode 100644 src/main/java/com/zontreck/libzontreck/blocks/BlockImitation.java create mode 100644 src/main/java/com/zontreck/libzontreck/blocks/PartialTransparentBlock.java create mode 100644 src/main/java/com/zontreck/libzontreck/blocks/PartialTransparentSlabBlock.java create mode 100644 src/main/java/com/zontreck/libzontreck/blocks/RedstoneBlock.java create mode 100644 src/main/java/com/zontreck/libzontreck/blocks/RotatableBlock.java create mode 100644 src/main/java/com/zontreck/libzontreck/blocks/RotatableBlockCustomVoxels.java create mode 100644 src/main/java/com/zontreck/libzontreck/bossbars/BossBarUtils.java create mode 100644 src/main/java/com/zontreck/libzontreck/chat/ChatColor.java create mode 100644 src/main/java/com/zontreck/libzontreck/chat/ChatColorFactory.java create mode 100644 src/main/java/com/zontreck/libzontreck/chat/Clickable.java create mode 100644 src/main/java/com/zontreck/libzontreck/chat/HoverTip.java create mode 100644 src/main/java/com/zontreck/libzontreck/chestgui/ChestGUI.java create mode 100644 src/main/java/com/zontreck/libzontreck/chestgui/ChestGUIButton.java create mode 100644 src/main/java/com/zontreck/libzontreck/chestgui/ChestGUIIdentifier.java create mode 100644 src/main/java/com/zontreck/libzontreck/chestgui/ChestGUIRegistry.java create mode 100644 src/main/java/com/zontreck/libzontreck/chestgui/IChestGUIButtonCallback.java create mode 100644 src/main/java/com/zontreck/libzontreck/commands/Commands.java create mode 100644 src/main/java/com/zontreck/libzontreck/commands/CreditsCommand.java create mode 100644 src/main/java/com/zontreck/libzontreck/commands/GetHead.java create mode 100644 src/main/java/com/zontreck/libzontreck/config/ServerConfig.java create mode 100644 src/main/java/com/zontreck/libzontreck/config/sections/DatabaseSection.java create mode 100644 src/main/java/com/zontreck/libzontreck/currency/Account.java create mode 100644 src/main/java/com/zontreck/libzontreck/currency/AccountReference.java create mode 100644 src/main/java/com/zontreck/libzontreck/currency/Bank.java create mode 100644 src/main/java/com/zontreck/libzontreck/currency/CurrencyHelper.java create mode 100644 src/main/java/com/zontreck/libzontreck/currency/LongTermTransactionHistoryRecord.java create mode 100644 src/main/java/com/zontreck/libzontreck/currency/Transaction.java create mode 100644 src/main/java/com/zontreck/libzontreck/currency/events/BankAccountCreatedEvent.java create mode 100644 src/main/java/com/zontreck/libzontreck/currency/events/BankReadyEvent.java create mode 100644 src/main/java/com/zontreck/libzontreck/currency/events/TransactionEvent.java create mode 100644 src/main/java/com/zontreck/libzontreck/currency/events/TransactionHistoryFlushEvent.java create mode 100644 src/main/java/com/zontreck/libzontreck/currency/events/WalletSyncEvent.java create mode 100644 src/main/java/com/zontreck/libzontreck/currency/events/WalletUpdatedEvent.java create mode 100644 src/main/java/com/zontreck/libzontreck/dynamicchest/ChestGUIReadOnlyStackHandler.java create mode 100644 src/main/java/com/zontreck/libzontreck/dynamicchest/ReadOnlyItemStackHandler.java create mode 100644 src/main/java/com/zontreck/libzontreck/events/BlockRestoreQueueRegistrationEvent.java create mode 100644 src/main/java/com/zontreck/libzontreck/events/CloseGUIEvent.java create mode 100644 src/main/java/com/zontreck/libzontreck/events/ForgeEventHandlers.java create mode 100644 src/main/java/com/zontreck/libzontreck/events/GUIButtonClickedEvent.java create mode 100644 src/main/java/com/zontreck/libzontreck/events/OpenGUIEvent.java create mode 100644 src/main/java/com/zontreck/libzontreck/events/PlayerChangedPositionEvent.java create mode 100644 src/main/java/com/zontreck/libzontreck/events/ProfileCreatedEvent.java create mode 100644 src/main/java/com/zontreck/libzontreck/events/ProfileLoadedEvent.java create mode 100644 src/main/java/com/zontreck/libzontreck/events/ProfileSavingEvent.java create mode 100644 src/main/java/com/zontreck/libzontreck/events/ProfileUnloadedEvent.java create mode 100644 src/main/java/com/zontreck/libzontreck/events/ProfileUnloadingEvent.java create mode 100644 src/main/java/com/zontreck/libzontreck/events/RegisterMigrationsEvent.java create mode 100644 src/main/java/com/zontreck/libzontreck/events/TeleportEvent.java create mode 100644 src/main/java/com/zontreck/libzontreck/exceptions/InvalidDeserialization.java create mode 100644 src/main/java/com/zontreck/libzontreck/exceptions/InvalidSideException.java create mode 100644 src/main/java/com/zontreck/libzontreck/items/InputItemStackHandler.java create mode 100644 src/main/java/com/zontreck/libzontreck/items/ModItems.java create mode 100644 src/main/java/com/zontreck/libzontreck/items/OutputItemStackHandler.java create mode 100644 src/main/java/com/zontreck/libzontreck/lore/ExtraLore.java create mode 100644 src/main/java/com/zontreck/libzontreck/lore/LoreContainer.java create mode 100644 src/main/java/com/zontreck/libzontreck/lore/LoreEntry.java create mode 100644 src/main/java/com/zontreck/libzontreck/lore/LoreType.java create mode 100644 src/main/java/com/zontreck/libzontreck/memory/player/PlayerComponent.java create mode 100644 src/main/java/com/zontreck/libzontreck/memory/player/PlayerContainer.java create mode 100644 src/main/java/com/zontreck/libzontreck/memory/player/VolatilePlayerStorage.java create mode 100644 src/main/java/com/zontreck/libzontreck/memory/world/BlockRestore.java create mode 100644 src/main/java/com/zontreck/libzontreck/memory/world/BlockRestoreQueue.java create mode 100644 src/main/java/com/zontreck/libzontreck/memory/world/BlockRestoreQueueRegistry.java create mode 100644 src/main/java/com/zontreck/libzontreck/memory/world/BlockRestoreRunner.java create mode 100644 src/main/java/com/zontreck/libzontreck/memory/world/DatabaseMigrations.java create mode 100644 src/main/java/com/zontreck/libzontreck/memory/world/DatabaseUploadRunner.java create mode 100644 src/main/java/com/zontreck/libzontreck/memory/world/DatabaseWrapper.java create mode 100644 src/main/java/com/zontreck/libzontreck/memory/world/PrimitiveBlock.java create mode 100644 src/main/java/com/zontreck/libzontreck/memory/world/SaveDataCoordinates.java create mode 100644 src/main/java/com/zontreck/libzontreck/memory/world/SaveDataFactory.java create mode 100644 src/main/java/com/zontreck/libzontreck/memory/world/SavedBlock.java create mode 100644 src/main/java/com/zontreck/libzontreck/memory/world/SortedBlockQueue.java create mode 100644 src/main/java/com/zontreck/libzontreck/menus/ChestGUIMenu.java create mode 100644 src/main/java/com/zontreck/libzontreck/menus/ChestGUIScreen.java create mode 100644 src/main/java/com/zontreck/libzontreck/networking/ModMessages.java create mode 100644 src/main/java/com/zontreck/libzontreck/networking/NetworkEvents.java create mode 100644 src/main/java/com/zontreck/libzontreck/networking/chestGUI.md create mode 100644 src/main/java/com/zontreck/libzontreck/networking/packets/IPacket.java create mode 100644 src/main/java/com/zontreck/libzontreck/networking/packets/S2CCloseChestGUI.java create mode 100644 src/main/java/com/zontreck/libzontreck/networking/packets/S2CPlaySoundPacket.java create mode 100644 src/main/java/com/zontreck/libzontreck/networking/packets/S2CServerAvailable.java create mode 100644 src/main/java/com/zontreck/libzontreck/networking/packets/S2CWalletInitialSyncPacket.java create mode 100644 src/main/java/com/zontreck/libzontreck/networking/packets/S2CWalletUpdatedPacket.java create mode 100644 src/main/java/com/zontreck/libzontreck/networking/structures/OpenGUIRequest.java create mode 100644 src/main/java/com/zontreck/libzontreck/profiles/Profile.java create mode 100644 src/main/java/com/zontreck/libzontreck/profiles/UserProfileNotYetExistsException.java create mode 100644 src/main/java/com/zontreck/libzontreck/types/ModMenuTypes.java create mode 100644 src/main/java/com/zontreck/libzontreck/util/BinUtil.java create mode 100644 src/main/java/com/zontreck/libzontreck/util/BlocksUtil.java create mode 100644 src/main/java/com/zontreck/libzontreck/util/ChatHelpers.java create mode 100644 src/main/java/com/zontreck/libzontreck/util/FileTreeDatastore.java create mode 100644 src/main/java/com/zontreck/libzontreck/util/HttpHelper.java create mode 100644 src/main/java/com/zontreck/libzontreck/util/ItemUtils.java rename src/main/java/{dev/zontreck/essentials => com/zontreck/libzontreck}/util/Maps.java (90%) create mode 100644 src/main/java/com/zontreck/libzontreck/util/PositionUtil.java create mode 100644 src/main/java/com/zontreck/libzontreck/util/SNbtIo.java create mode 100644 src/main/java/com/zontreck/libzontreck/util/ServerUtilities.java create mode 100644 src/main/java/com/zontreck/libzontreck/util/TagUtils.java create mode 100644 src/main/java/com/zontreck/libzontreck/util/heads/CreditsEntry.java create mode 100644 src/main/java/com/zontreck/libzontreck/util/heads/HeadCache.java create mode 100644 src/main/java/com/zontreck/libzontreck/util/heads/HeadUtilities.java create mode 100644 src/main/java/com/zontreck/libzontreck/util/heads/PlayerInfo.java create mode 100644 src/main/java/com/zontreck/libzontreck/util/heads/PlayerProfileInfo.java create mode 100644 src/main/java/com/zontreck/libzontreck/util/heads/PlayerTextureContainer.java create mode 100644 src/main/java/com/zontreck/libzontreck/vectors/ChunkPos.java create mode 100644 src/main/java/com/zontreck/libzontreck/vectors/NonAbsVector3.java create mode 100644 src/main/java/com/zontreck/libzontreck/vectors/Points.java create mode 100644 src/main/java/com/zontreck/libzontreck/vectors/Vector2f.java create mode 100644 src/main/java/com/zontreck/libzontreck/vectors/Vector2i.java create mode 100644 src/main/java/com/zontreck/libzontreck/vectors/Vector3d.java create mode 100644 src/main/java/com/zontreck/libzontreck/vectors/Vector3i.java create mode 100644 src/main/java/com/zontreck/libzontreck/vectors/WorldPosition.java create mode 100644 src/main/java/com/zontreck/mixin/ColorsMixin.java create mode 100644 src/main/java/com/zontreck/mixin/MaterialColorMixin.java rename src/main/java/{dev/zontreck/essentials => com/zontreck}/util/EssentialsDatastore.java (87%) create mode 100644 src/main/java/com/zontreck/util/ExperienceUtils.java create mode 100644 src/main/java/com/zontreck/util/ModDimensions.java create mode 100644 src/main/java/com/zontreck/util/PerPlayerDataRegistry.java rename src/main/java/{dev/zontreck/essentials => com/zontreck}/util/SoundUtilities.java (95%) rename src/main/java/{dev/zontreck/essentials => com/zontreck}/util/StylesUtil.java (87%) rename src/main/java/{dev/zontreck/essentials/commands/teleport => com/zontreck/util}/TeleportActioner.java (82%) rename src/main/java/{dev/zontreck/essentials/commands/teleport => com/zontreck/util}/TeleportContainer.java (89%) rename src/main/java/{dev/zontreck/essentials/commands/teleport => com/zontreck/util}/TeleportDestination.java (68%) rename src/main/java/{dev/zontreck/essentials/commands/teleport => com/zontreck/util}/TeleportRegistry.java (84%) rename src/main/java/{dev/zontreck/essentials/commands/teleport => com/zontreck/util}/TeleportRunnable.java (76%) delete mode 100644 src/main/java/dev/zontreck/essentials/AriasEssentials.java delete mode 100644 src/main/java/dev/zontreck/essentials/antiexplode/CreeperHealQueue.java delete mode 100644 src/main/java/dev/zontreck/essentials/blocks/BlockCustomVoxels.java delete mode 100644 src/main/java/dev/zontreck/essentials/blocks/ModBlocks.java delete mode 100644 src/main/java/dev/zontreck/essentials/client/AutoWalk.java delete mode 100644 src/main/java/dev/zontreck/essentials/client/Keybindings.java delete mode 100644 src/main/java/dev/zontreck/essentials/client/renderer/HeartsRenderer.java delete mode 100644 src/main/java/dev/zontreck/essentials/commands/CommandRegister.java delete mode 100644 src/main/java/dev/zontreck/essentials/commands/gui/HeartsCommand.java delete mode 100644 src/main/java/dev/zontreck/essentials/commands/teleport/BackCommand.java delete mode 100644 src/main/java/dev/zontreck/essentials/commands/teleport/RTPCommand.java delete mode 100644 src/main/java/dev/zontreck/essentials/commands/teleport/SpawnCommand.java delete mode 100644 src/main/java/dev/zontreck/essentials/commands/teleport/TPEffectsCommand.java delete mode 100644 src/main/java/dev/zontreck/essentials/commands/warps/DelWarpCommand.java delete mode 100644 src/main/java/dev/zontreck/essentials/commands/warps/RTPWarpCommand.java delete mode 100644 src/main/java/dev/zontreck/essentials/commands/warps/SetWarpCommand.java delete mode 100644 src/main/java/dev/zontreck/essentials/commands/warps/WarpCommand.java delete mode 100644 src/main/java/dev/zontreck/essentials/commands/warps/WarpsCommand.java delete mode 100644 src/main/java/dev/zontreck/essentials/configs/client/sections/Messages.java delete mode 100644 src/main/java/dev/zontreck/essentials/configs/server/AEServerConfig.java delete mode 100644 src/main/java/dev/zontreck/essentials/configs/server/sections/Back.java delete mode 100644 src/main/java/dev/zontreck/essentials/configs/server/sections/Cooldown.java delete mode 100644 src/main/java/dev/zontreck/essentials/configs/server/sections/Costs.java delete mode 100644 src/main/java/dev/zontreck/essentials/configs/server/sections/CreeperHeal.java delete mode 100644 src/main/java/dev/zontreck/essentials/configs/server/sections/Limitations.java delete mode 100644 src/main/java/dev/zontreck/essentials/data/ModBlockStatesProvider.java delete mode 100644 src/main/java/dev/zontreck/essentials/data/ModDatagen.java delete mode 100644 src/main/java/dev/zontreck/essentials/data/ModItemModelsProvider.java delete mode 100644 src/main/java/dev/zontreck/essentials/data/README.md delete mode 100644 src/main/java/dev/zontreck/essentials/events/MainEventHandlers.java delete mode 100644 src/main/java/dev/zontreck/essentials/events/RTPEvent.java delete mode 100644 src/main/java/dev/zontreck/essentials/events/RTPFoundEvent.java delete mode 100644 src/main/java/dev/zontreck/essentials/events/WarpAccessChanged.java delete mode 100644 src/main/java/dev/zontreck/essentials/events/WarpAccessControlListUpdatedEvent.java delete mode 100644 src/main/java/dev/zontreck/essentials/events/WarpCreatedEvent.java delete mode 100644 src/main/java/dev/zontreck/essentials/events/WarpDeletedEvent.java delete mode 100644 src/main/java/dev/zontreck/essentials/exceptions/NoSuchHomeException.java delete mode 100644 src/main/java/dev/zontreck/essentials/homes/HomesProvider.java delete mode 100644 src/main/java/dev/zontreck/essentials/homes/HomesSuggestionProvider.java delete mode 100644 src/main/java/dev/zontreck/essentials/imc/Events.java delete mode 100644 src/main/java/dev/zontreck/essentials/items/CreativeModeTabs.java delete mode 100644 src/main/java/dev/zontreck/essentials/items/EventHandlers.java delete mode 100644 src/main/java/dev/zontreck/essentials/items/ModItems.java delete mode 100644 src/main/java/dev/zontreck/essentials/networking/ModMessages.java delete mode 100644 src/main/java/dev/zontreck/essentials/networking/packets/s2c/S2CUpdateHearts.java delete mode 100644 src/main/java/dev/zontreck/essentials/rtp/RTP.java delete mode 100644 src/main/java/dev/zontreck/essentials/rtp/RTPCaches.java delete mode 100644 src/main/java/dev/zontreck/essentials/rtp/RTPCachesEventHandlers.java delete mode 100644 src/main/java/dev/zontreck/essentials/rtp/RandomPositionFactory.java delete mode 100644 src/main/java/dev/zontreck/essentials/rtp/RandomPositionLocator.java delete mode 100644 src/main/java/dev/zontreck/essentials/util/BackPositionCaches.java delete mode 100644 src/main/java/dev/zontreck/essentials/util/CommandCooldowns.java delete mode 100644 src/main/java/dev/zontreck/essentials/util/ForgeEventsHandler.java delete mode 100644 src/main/java/dev/zontreck/essentials/warps/AccessControlList.java delete mode 100644 src/main/java/dev/zontreck/essentials/warps/NoSuchWarpException.java delete mode 100644 src/main/java/dev/zontreck/essentials/warps/Warp.java delete mode 100644 src/main/java/dev/zontreck/essentials/warps/Warps.java delete mode 100644 src/main/java/dev/zontreck/essentials/warps/WarpsProvider.java delete mode 100644 src/main/resources/META-INF/accesstransformer.cfg create mode 100644 src/main/resources/ariasessentials.mixins.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/blood_red.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/blue_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/blue_pool_tile.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/blue_pool_tile_slab.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/blue_pool_tile_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/blue_pool_tile_wall.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/clear_glass_block.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/clinker_brick_block.json delete mode 100644 src/main/resources/assets/ariasessentials/blockstates/clinker_brick_recessed.json delete mode 100644 src/main/resources/assets/ariasessentials/blockstates/clinker_brick_sastor_corner_block.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/clinker_brick_slab.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/clinker_brick_stained_block.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/clinker_brick_stained_slab.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/clinker_brick_stained_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/clinker_brick_stairs.json delete mode 100644 src/main/resources/assets/ariasessentials/blockstates/clinker_brick_vertically_slit.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/clinker_brick_wall.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/cobalt_block.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/cobalt_ore.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/compressed_obsidian_block.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/compression_chamber.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/cyan.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/cyan_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/cyan_tile.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/cyan_tile_br.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/cyan_tile_to_wall.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/cyan_wall_variant_1.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/cyan_wall_variant_2.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/dark_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/dark_pool_tile.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/dark_pool_tile_slab.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/dark_pool_tile_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/dark_red_bed.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/dark_red_carpet.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/dark_red_shulker_box.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/dark_red_wool.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/deepslate_eternium_ore_block.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/deepslate_ilusium_ore_block.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_slab.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_wall.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_slab.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_wall.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/dirty_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/dirty_pool_tile.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/dirty_pool_tile_slab.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/dirty_pool_tile_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/dirty_pool_tile_wall.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_slab.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_wall.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/eternium_block.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/eternium_ore_block.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/filthy_blue_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/filthy_green_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/filthy_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/filthy_red_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/green_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/green_pool_tile.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/green_pool_tile_slab.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/green_pool_tile_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/green_pool_tile_wall.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/nether_vault_steel_ore_block.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/old_industrial_wood_door.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/old_industrial_wood_planks.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/old_industrial_wood_slab.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/old_industrial_wood_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/panzerglass_block.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/panzerglass_slab.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/pool_tile.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/pool_tile_slab.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/pool_tile_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/pool_tile_wall.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/raw_cobalt_ore.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/rebar_concrete.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_slab.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_tile.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_tile_slab.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_tile_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_wall.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/red_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/red_pool_tile.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/red_pool_tile_slab.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/red_pool_tile_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/red_pool_tile_wall.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/red_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/red_tile.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/red_tile_br.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/red_tile_to_wall.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/red_wall_variant_1.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/red_wall_variant_2.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/slag_brick_block.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/slag_brick_slab.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/slag_brick_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/slag_brick_wall.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/stable_singularity.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/steel_catwalk.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_block.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_stairs_dr.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_stairs_lr.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_stairs_rr.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_top.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/steel_floor_grating.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/steel_floor_grating_top.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/steel_railing.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/steel_table.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/tflipflop.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/uncrafter.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/vault_steel_ore_block.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/void.json create mode 100644 src/main/resources/assets/ariasessentials/blockstates/whiteout.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/blood_red.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/blue_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/blue_pool_tile.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_slab.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_slab_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_inventory.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_post.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_side.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_side_tall.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model0.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model1.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model2.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model3.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model4.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model5.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model6.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model7.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model0.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model1.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model2.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model3.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model4.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model5.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model6.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model7.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_wall_inventory.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_wall_post.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_wall_side.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/clinker_brick_wall_side_tall.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/cobalt_block.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/cobalt_ore.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/compressed_obsidian_block.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/compression_chamber.bbmodel create mode 100644 src/main/resources/assets/ariasessentials/models/block/compression_chamber.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/custommodel/uncrafter.bbmodel create mode 100644 src/main/resources/assets/ariasessentials/models/block/custommodel/uncrafter.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/cyan.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/cyan_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/cyan_stairs_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/cyan_stairs_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/cyan_tile.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/cyan_tile_br.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/cyan_tile_to_wall.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/cyan_wall_variant_1.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/cyan_wall_variant_2.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dark_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dark_pool_tile.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_slab.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_slab_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dark_red_bed.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dark_red_carpet.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dark_red_shulker_box.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dark_red_wool.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/deepslate_eternium_ore_block.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/deprecated.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_slab.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_slab_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_inventory.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_post.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_side.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_side_tall.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_slab.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_slab_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_inventory.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_post.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_side.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_side_tall.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_slab.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_slab_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_inventory.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_post.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_side.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_side_tall.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_slab.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_slab_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_inventory.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_post.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_side.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_side_tall.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/eternium_block.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/eternium_ore_block.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/fb/cube.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/fb/fullbright.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/fb/rotatable.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/fb/sided.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/fb/top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/filthy_blue_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/filthy_green_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/filthy_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/filthy_red_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/green_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/green_pool_tile.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/green_pool_tile_slab.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/green_pool_tile_slab_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/green_pool_tile_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/green_pool_tile_stairs_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/green_pool_tile_stairs_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/green_pool_tile_wall_inventory.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/green_pool_tile_wall_post.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/green_pool_tile_wall_side.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/green_pool_tile_wall_side_tall.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/item_scrubber.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/item_scrubber.json.old create mode 100644 src/main/resources/assets/ariasessentials/models/block/layered_compressed_obsidian_block.json delete mode 100644 src/main/resources/assets/ariasessentials/models/block/logicgates/redstone_tflipflop.bbmodel delete mode 100644 src/main/resources/assets/ariasessentials/models/block/logicgates/tflipflop.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/magical_scrubber.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/nether_vault_steel_ore_block.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_left.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_left_open.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_right.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_right_open.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_left.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_left_open.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_right.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_right_open.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model0.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model1.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model2.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model3.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/panzerglass_block_inventory.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/panzerglass_block_model0.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/panzerglass_block_model1.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/panzerglass_block_model2.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/panzerglass_block_model3.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/pool_tile.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/pool_tile_slab.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/pool_tile_slab_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/pool_tile_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/pool_tile_stairs_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/pool_tile_stairs_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/pool_tile_wall_inventory.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/pool_tile_wall_post.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/pool_tile_wall_side.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/pool_tile_wall_side_tall.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/raw_cobalt_ore.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model0.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model1.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model2.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model3.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model4.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model5.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model6.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model7.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model0.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model1.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model2.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model3.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model4.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model5.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model6.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model7.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_wall_inventory.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_wall_post.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_wall_side.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rebar_concrete_wall_side_tall.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/red_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/red_pool_tile.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/red_pool_tile_slab.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/red_pool_tile_slab_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/red_pool_tile_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/red_pool_tile_stairs_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/red_pool_tile_stairs_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/red_pool_tile_wall_inventory.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/red_pool_tile_wall_post.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/red_pool_tile_wall_side.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/red_pool_tile_wall_side_tall.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/red_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/red_stairs_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/red_stairs_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/red_tile.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/red_tile_br.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/red_tile_to_wall.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/red_wall_variant_1.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/red_wall_variant_2.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/rotatable.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/sided.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model0.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model1.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model2.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model3.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model4.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model5.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model6.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model7.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_bottom.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_double.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7_inner.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7_outer.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_wall_inventory.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_wall_post.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_wall_side.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/slag_brick_wall_side_tall.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/stable_singularity.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/steel_catwalk.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/steel_catwalk_block.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/steel_catwalk_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_dr.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_lr.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_rr.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/steel_catwalk_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/steel_floor_grating.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/steel_floor_grating_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/steel_railing.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/steel_table.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/tflipflop.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/uncrafter.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/vault_steel_ore_block.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/void.json create mode 100644 src/main/resources/assets/ariasessentials/models/block/whiteout.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/aurora_compound.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/black.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/blood_red.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/blue_brick.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/blue_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/blue_pool_tile.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/blue_pool_tile_slab.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/blue_pool_tile_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/blue_pool_tile_wall.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/clear_glass_block.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/clinker_brick_block.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/clinker_brick_recessed.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/clinker_brick_sastor_corner_block.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/clinker_brick_slab.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/clinker_brick_stained_block.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/clinker_brick_stained_slab.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/clinker_brick_stained_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/clinker_brick_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/clinker_brick_vertically_slit.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/clinker_brick_wall.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/cobalt_block.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/cobalt_ingot.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/cobalt_ore.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/cyan.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/cyan_brick.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/cyan_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/cyan_tile.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/cyan_tile_br.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/cyan_tile_to_wall.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/cyan_wall_variant_1.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/cyan_wall_variant_2.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dark_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dark_pool_tile.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dark_pool_tile_slab.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dark_pool_tile_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dark_red_bed.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dark_red_brick.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dark_red_carpet.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dark_red_dye.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dark_red_shulker_box.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dark_red_wool.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/deepslate_eternium_ore_block.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/deepslate_ilusium_ore_block.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/deprecated.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_slab.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_wall.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_tile.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_slab.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_wall.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dirty_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dirty_pool_tile.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dirty_pool_tile_slab.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dirty_pool_tile_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dirty_pool_tile_wall.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_tile.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_slab.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_wall.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/empty_spawn_egg.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/encased_singularity.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/eternium_block.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/eternium_fragment.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/eternium_ingot.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/eternium_ore.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/eternium_ore_block.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/eternium_rod.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/filthy_blue_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/filthy_green_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/filthy_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/filthy_red_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/green_brick.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/green_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/green_pool_tile.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/green_pool_tile_slab.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/green_pool_tile_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/green_pool_tile_wall.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/ihan_crystal.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/light_blue_brick.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/lime_brick.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/magical_scrubber.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/magma_powder.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/melted_ender_pearl.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/metal_bar.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/mob_capture_ball.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/nether_vault_steel_ore_block.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/old_industrial_wood_door.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/old_industrial_wood_planks.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/old_industrial_wood_slab.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/old_industrial_wood_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/panzerglass_block.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/panzerglass_slab.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/partial_item.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/pool_tile.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/pool_tile_slab.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/pool_tile_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/pool_tile_wall.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/raw_cobalt.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/raw_cobalt_ore.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/raw_vault_steel_ore.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/rebar_concrete.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/rebar_concrete_slab.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/rebar_concrete_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/rebar_concrete_tile.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/rebar_concrete_tile_slab.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/rebar_concrete_tile_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/rebar_concrete_wall.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/red_brick.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/red_pool_light.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/red_pool_tile.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/red_pool_tile_slab.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/red_pool_tile_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/red_pool_tile_wall.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/red_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/red_tile.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/red_tile_br.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/red_tile_to_wall.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/red_wall_variant_1.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/red_wall_variant_2.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/scrubber_frame.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/scrubber_frame_piece.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/singularity.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/slag_brick_block.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/slag_brick_slab.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/slag_brick_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/slag_brick_wall.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/stable_singularity.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/steel_catwalk.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/steel_catwalk_block.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/steel_catwalk_stairs.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/steel_catwalk_stairs_dr.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/steel_catwalk_stairs_lr.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/steel_catwalk_stairs_rr.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/steel_catwalk_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/steel_floor_grating.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/steel_floor_grating_top.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/steel_railing.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/steel_table.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/tflipflop.json rename src/main/resources/assets/ariasessentials/models/item/{eiab.json => tiab.json} (55%) create mode 100644 src/main/resources/assets/ariasessentials/models/item/uncrafter.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/void.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/white_brick.json create mode 100644 src/main/resources/assets/ariasessentials/models/item/whiteout.json create mode 100644 src/main/resources/assets/ariasessentials/textures/block/black.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/blue_pool_light.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/blue_pool_tile.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/cobalt_block.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/cobalt_ore.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/compressed_obsidian_block.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/compression_chamber/bottom_plate.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/compression_chamber/compression_lid.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/compression_chamber/compressor.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/compression_chamber/power.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/compression_chamber/support0.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/dark_pool_light.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/dark_pool_tile.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/dark_red_wool.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/deepslate_eternium_ore_block.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/deprecated.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/dirty_blue_pool_light.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/dirty_blue_pool_tile.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/dirty_green_pool_light.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/dirty_green_pool_tile.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/dirty_pool_light.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/dirty_pool_tile.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/dirty_red_pool_light.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/dirty_red_pool_tile.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/eternium_block.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/eternium_ore_block.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/filthy_blue_pool_light.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/filthy_green_pool_light.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/filthy_pool_light.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/filthy_red_pool_light.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/green_pool_light.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/green_pool_tile.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/ilusium_portal.aseprite create mode 100644 src/main/resources/assets/ariasessentials/textures/block/ilusium_portal.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/layered_compressed_obsidian_block.png delete mode 100644 src/main/resources/assets/ariasessentials/textures/block/logicgates/locked_bar.png delete mode 100644 src/main/resources/assets/ariasessentials/textures/block/logicgates/logic_gate.png delete mode 100644 src/main/resources/assets/ariasessentials/textures/block/logicgates/off.png delete mode 100644 src/main/resources/assets/ariasessentials/textures/block/logicgates/tflipflop.png delete mode 100644 src/main/resources/assets/ariasessentials/textures/block/logicgates/torch.png delete mode 100644 src/main/resources/assets/ariasessentials/textures/block/logicgates/torch_off.png delete mode 100644 src/main/resources/assets/ariasessentials/textures/block/logicgates/torch_on.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/nether_vault_steel_ore_block.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/pool_light.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/pool_tile.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/raw_cobalt_ore.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/red_pool_light.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/red_pool_tile.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/scrubber/center_cube.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/scrubber/corner_cube.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/scrubber/frame_bars.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/scrubber/inner_corner_cubes.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/scrubber/scrubber_old_internal_cube.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/scrubber/scrubber_right.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/scrubber/scrubber_top.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/scrubber/stable_singularity_body.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/scrubber/stable_singularity_inner.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/thresholds/blood_red.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/thresholds/cyan.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/cyan_tile_transition.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/cyan_tile_w_circle.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/lime_tile.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/lime_tile_transition.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile_stairs_inner.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile_transition_blood_red.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile_w_circle.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/cyan_floor_to_wall.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/cyan_wall.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/cyan_wall2.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/floor_wall_transition.aseprite create mode 100644 src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/lime_floor_to_wall.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/lime_wall.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/lime_wall2.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/red_floor_to_wall.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/red_wall.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/red_wall2.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/thresholds/lime.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/thresholds/void.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/thresholds/white.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/uncrafter.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/uncrafter.png.mcmeta create mode 100644 src/main/resources/assets/ariasessentials/textures/block/uncrafter_bottom.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/uncrafter_side.aseprite create mode 100644 src/main/resources/assets/ariasessentials/textures/block/uncrafter_side.png create mode 100644 src/main/resources/assets/ariasessentials/textures/block/vault_steel_ore_block.png create mode 100644 src/main/resources/assets/ariasessentials/textures/entity/mob_capture_ball.png delete mode 100644 src/main/resources/assets/ariasessentials/textures/gui/absorb.png delete mode 100644 src/main/resources/assets/ariasessentials/textures/gui/hearts.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/blue_brick.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/clone_ball.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/cobalt_ingot.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/cobalt_nugget.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/compressed_obsidian_sheet.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/crucible.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/cyan_brick.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/dark_blue_brick.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/dark_red_brick.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/dark_red_dye.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/deprecated.png delete mode 100644 src/main/resources/assets/ariasessentials/textures/item/eiab.png delete mode 100644 src/main/resources/assets/ariasessentials/textures/item/eiab.png.mcmeta create mode 100644 src/main/resources/assets/ariasessentials/textures/item/empty_spawn_egg.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/encased_singularity.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/eternium_dust.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/eternium_fragment.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/eternium_ingot.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/eternium_ore.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/eternium_rod.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/green_brick.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/ihan_crystal.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/light_blue_brick.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/lime_brick.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/magma_powder.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/melted_ender_pearl.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/mob_capture_ball.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/partial_item.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/raw_cobalt.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/raw_vault_steel_ore.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/red_brick.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/scrubber_frame.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/scrubber_frame_piece.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/singularity.aseprite create mode 100644 src/main/resources/assets/ariasessentials/textures/item/singularity.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/super_heated_crucible.png create mode 100644 src/main/resources/assets/ariasessentials/textures/item/white_brick.aseprite create mode 100644 src/main/resources/assets/ariasessentials/textures/item/white_brick.png create mode 100644 src/main/resources/assets/ariasessentials/textures/mob_effect/flight.png create mode 100644 src/main/resources/assets/ariasessentials/textures/mob_effect/seal.aseprite create mode 100644 src/main/resources/assets/ariasessentials/textures/mob_effect/seal.png create mode 100644 src/main/resources/assets/libzontreck/lang/en_us.json create mode 100644 src/main/resources/assets/libzontreck/models/item/chestgui_add.json create mode 100644 src/main/resources/assets/libzontreck/models/item/chestgui_back.json create mode 100644 src/main/resources/assets/libzontreck/models/item/chestgui_forward.json create mode 100644 src/main/resources/assets/libzontreck/models/item/chestgui_remove.json create mode 100644 src/main/resources/assets/libzontreck/models/item/chestgui_reset.json create mode 100644 src/main/resources/assets/libzontreck/textures/gui/chest_gui.png create mode 100644 src/main/resources/assets/libzontreck/textures/item/chestgui_add.png create mode 100644 src/main/resources/assets/libzontreck/textures/item/chestgui_back.png create mode 100644 src/main/resources/assets/libzontreck/textures/item/chestgui_forward.png create mode 100644 src/main/resources/assets/libzontreck/textures/item/chestgui_remove.png create mode 100644 src/main/resources/assets/libzontreck/textures/item/chestgui_reset.png create mode 100644 src/main/resources/data/ariasessentials/dimension/builder.json create mode 100644 src/main/resources/data/ariasessentials/dimension/resource.json create mode 100644 src/main/resources/data/ariasessentials/dimension_type/builder.json create mode 100644 src/main/resources/data/ariasessentials/dimension_type/resource.json create mode 100644 src/main/resources/data/ariasessentials/forge/biome_modifier/eternium_placer.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/blood_red.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/blue_pool_light.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile_slab.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile_stairs.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/clear_glass_block.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_recessed.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_vertically_slit.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/compressed_obsidian_block.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/compression_chamber.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/cyan.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_stairs.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_tile.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_tile_br.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_tile_to_wall.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_wall_variant_1.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_wall_variant_2.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/dark_pool_light.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile_slab.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile_stairs.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/dark_red_carpet.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/dark_red_wool.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/deepslate_eternium_ore_block.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/deepslate_ilusium_ore_block.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_light.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile_slab.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile_stairs.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_light.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile_slab.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile_stairs.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_light.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile_slab.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile_stairs.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_light.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile_slab.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile_stairs.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/eternium_block.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/eternium_ore_block.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/filthy_blue_pool_light.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/filthy_green_pool_light.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/filthy_pool_light.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/filthy_red_pool_light.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/green_pool_light.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile_slab.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile_stairs.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/ilusium_block.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/ilusium_ore_block.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/item_scrubber.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/layered_compressed_obsidian_block.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/magical_scrubber.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/nether_vault_steel_ore_block.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/pool_light.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/pool_tile.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/pool_tile_slab.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/pool_tile_stairs.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/pool_tile_wall.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/red_pool_light.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile_slab.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile_stairs.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/red_stairs.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/red_tile.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/red_tile_br.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/red_tile_to_wall.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/red_wall_variant_1.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/red_wall_variant_2.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/stable_singularity.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/uncrafter.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/vault_steel_ore_block.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/void.json create mode 100644 src/main/resources/data/ariasessentials/loot_tables/blocks/whiteout.json create mode 100644 src/main/resources/data/ariasessentials/recipes/blue_brick.json create mode 100644 src/main/resources/data/ariasessentials/recipes/brimstone_to_sulfur.json create mode 100644 src/main/resources/data/ariasessentials/recipes/crushing_brimstone.json create mode 100644 src/main/resources/data/ariasessentials/recipes/cyan_brick.json create mode 100644 src/main/resources/data/ariasessentials/recipes/dark_red_brick.json create mode 100644 src/main/resources/data/ariasessentials/recipes/dark_red_dye.json create mode 100644 src/main/resources/data/ariasessentials/recipes/dye_dark_red_carpet.json create mode 100644 src/main/resources/data/ariasessentials/recipes/dye_dark_red_wool.json create mode 100644 src/main/resources/data/ariasessentials/recipes/empty_spawn_egg.json create mode 100644 src/main/resources/data/ariasessentials/recipes/encased_singularity.json create mode 100644 src/main/resources/data/ariasessentials/recipes/eternium_block.json create mode 100644 src/main/resources/data/ariasessentials/recipes/eternium_block_to_ingot.json create mode 100644 src/main/resources/data/ariasessentials/recipes/eternium_ingot.json create mode 100644 src/main/resources/data/ariasessentials/recipes/eternium_rod.json create mode 100644 src/main/resources/data/ariasessentials/recipes/green_brick.json create mode 100644 src/main/resources/data/ariasessentials/recipes/holosphere.json.old create mode 100644 src/main/resources/data/ariasessentials/recipes/ihan_crystal.json create mode 100644 src/main/resources/data/ariasessentials/recipes/leather_from_rotten_flesh.json create mode 100644 src/main/resources/data/ariasessentials/recipes/light_blue_brick.json create mode 100644 src/main/resources/data/ariasessentials/recipes/lime_brick.json create mode 100644 src/main/resources/data/ariasessentials/recipes/magma.json create mode 100644 src/main/resources/data/ariasessentials/recipes/magma_powder.json create mode 100644 src/main/resources/data/ariasessentials/recipes/mob_capture_ball.json create mode 100644 src/main/resources/data/ariasessentials/recipes/red_brick.json create mode 100644 src/main/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_chunk_polish.json create mode 100644 src/main/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_polish.json create mode 100644 src/main/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_shard_polish.json create mode 100644 src/main/resources/data/ariasessentials/recipes/tetra/seeping_bedrock.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_stairs.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile_br.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile_to_wall.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_wall_variant_1.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_wall_variant_2.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_light.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_slab.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_stairs.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_wall.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tiles.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dark_pool_tile_stairs.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dark_pool_tiles.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_light.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_slab.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_stairs.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_wall.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tiles.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/filthy_blue_pool_light.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_light.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_slab.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_stairs.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_wall.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tiles.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/filthy_pool_light.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_light.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_slab.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_stairs.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_wall.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tiles.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_light.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_slab.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_stairs.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_wall.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tiles.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/filthy_green_pool_light.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_light.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_slab.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_stairs.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_wall.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tiles.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_light.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_slab.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_stairs.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_wall.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tiles.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/filthy_red_pool_light.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_light.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_slab.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_stairs.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_wall.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tiles.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/blood_red.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_stairs.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile_br.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile_to_wall.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_wall_variant_1.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_wall_variant_2.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/void.json create mode 100644 src/main/resources/data/ariasessentials/recipes/thresholds/decorative/whiteout.json create mode 100644 src/main/resources/data/ariasessentials/recipes/unstable_singularity.json create mode 100644 src/main/resources/data/ariasessentials/recipes/white_brick.json create mode 100644 src/main/resources/data/ariasessentials/tags/blocks/brimstone.json delete mode 100644 src/main/resources/data/ariasessentials/tags/blocks/catwalk.json create mode 100644 src/main/resources/data/ariasessentials/tags/blocks/deprecated.json rename src/main/resources/data/ariasessentials/tags/blocks/{plain_concretes.json => plain_concrete.json} (100%) create mode 100644 src/main/resources/data/ariasessentials/tags/blocks/pool_tiles.json create mode 100644 src/main/resources/data/ariasessentials/tags/blocks/thresholds/cyan.json create mode 100644 src/main/resources/data/ariasessentials/tags/blocks/thresholds/lime.json create mode 100644 src/main/resources/data/ariasessentials/tags/blocks/thresholds/pool.json create mode 100644 src/main/resources/data/ariasessentials/tags/blocks/thresholds/red.json create mode 100644 src/main/resources/data/ariasessentials/tags/blocks/uncrafting_tables.json create mode 100644 src/main/resources/data/ariasessentials/tags/blocks/uncrafting_tables/uncrafter.json create mode 100644 src/main/resources/data/ariasessentials/tags/items/deprecated.json delete mode 100644 src/main/resources/data/ariasessentials/tags/items/plain_concretes.json create mode 100644 src/main/resources/data/ariasessentials/tags/items/pool_tiles.json create mode 100644 src/main/resources/data/ariasessentials/tags/items/uncrafting_tables.json create mode 100644 src/main/resources/data/ariasessentials/tags/items/uncrafting_tables/uncrafter.json create mode 100644 src/main/resources/data/ariasessentials/worldgen/configured_feature/eternium_oregen_overworld.json create mode 100644 src/main/resources/data/ariasessentials/worldgen/noise_settings/builder.json create mode 100644 src/main/resources/data/ariasessentials/worldgen/noise_settings/resource.json create mode 100644 src/main/resources/data/ariasessentials/worldgen/placed_feature/eternium_oregen_overworld.json create mode 100644 src/main/resources/data/forge/tags/blocks/ore_rates/singular.json create mode 100644 src/main/resources/data/forge/tags/blocks/ores.json create mode 100644 src/main/resources/data/forge/tags/blocks/ores/eternium.json create mode 100644 src/main/resources/data/forge/tags/blocks/ores_in_ground/netherrack.json create mode 100644 src/main/resources/data/forge/tags/blocks/storage_blocks.json create mode 100644 src/main/resources/data/forge/tags/blocks/storage_blocks/eternium.json create mode 100644 src/main/resources/data/forge/tags/items/brimstone.json create mode 100644 src/main/resources/data/forge/tags/items/dusts.json create mode 100644 src/main/resources/data/forge/tags/items/dusts/magma.json create mode 100644 src/main/resources/data/forge/tags/items/ingots.json create mode 100644 src/main/resources/data/forge/tags/items/ingots/eternium.json create mode 100644 src/main/resources/data/forge/tags/items/nuggets.json create mode 100644 src/main/resources/data/forge/tags/items/ore_rates/singular.json create mode 100644 src/main/resources/data/forge/tags/items/ores.json create mode 100644 src/main/resources/data/forge/tags/items/ores/eternium.json create mode 100644 src/main/resources/data/forge/tags/items/ores_in_ground/netherrack.json create mode 100644 src/main/resources/data/forge/tags/items/raw_materials.json create mode 100644 src/main/resources/data/forge/tags/items/raw_materials/eternium.json create mode 100644 src/main/resources/data/forge/tags/items/rods.json create mode 100644 src/main/resources/data/forge/tags/items/rods/eternium.json create mode 100644 src/main/resources/data/forge/tags/items/storage_blocks.json create mode 100644 src/main/resources/data/forge/tags/items/storage_blocks/eternium.json create mode 100644 src/main/resources/data/minecraft/loot_tables/blocks/budding_amethyst.json create mode 100644 src/main/resources/data/minecraft/tags/blocks/needs_diamond_tool.json create mode 100644 src/main/resources/data/minecraft/tags/blocks/wool.json create mode 100644 src/main/resources/data/minecraft/tags/blocks/wool_carpet.json create mode 100644 src/main/resources/data/minecraft/tags/items/dyes.json create mode 100644 src/main/resources/data/minecraft/tags/items/piglin_loved.json create mode 100644 src/main/resources/data/minecraft/tags/items/wool.json create mode 100644 src/main/resources/data/minecraft/tags/items/wool_carpet.json diff --git a/build.gradle b/build.gradle index 36e04ac..5fcde0f 100644 --- a/build.gradle +++ b/build.gradle @@ -1,252 +1,94 @@ -plugins { - id 'eclipse' - id 'idea' - id 'maven-publish' - id 'java-library' - id 'net.minecraftforge.gradle' version '[6.0,6.2)' - id 'org.parchmentmc.librarian.forgegradle' version '1.+' -} - -version = mod_version -group = mod_group_id - -base { - archivesName = mod_id -} - -java { - - withSourcesJar() - withJavadocJar() -} - -configurations { - provided - minecraftLibrary.extendsFrom(provided) -} - -// Mojang ships Java 17 to end users in 1.18+, so your mod should target Java 17. -java.toolchain.languageVersion = JavaLanguageVersion.of(17) - -println "Java: ${System.getProperty 'java.version'}, JVM: ${System.getProperty 'java.vm.version'} (${System.getProperty 'java.vendor'}), Arch: ${System.getProperty 'os.arch'}" -minecraft { - // The mappings can be changed at any time and must be in the following format. - // Channel: Version: - // official MCVersion Official field/method names from Mojang mapping files - // parchment YYYY.MM.DD-MCVersion Open community-sourced parameter names and javadocs layered on top of official - // - // You must be aware of the Mojang license when using the 'official' or 'parchment' mappings. - // See more information here: https://github.com/MinecraftForge/MCPConfig/blob/master/Mojang.md - // - // Parchment is an unofficial project maintained by ParchmentMC, separate from MinecraftForge - // Additional setup is needed to use their mappings: https://github.com/ParchmentMC/Parchment/wiki/Getting-Started - // - // Use non-default mappings at your own risk. They may not always work. - // Simply re-run your setup task after changing the mappings to update your workspace. - mappings channel: mapping_channel, version: "${parchment_version}-${minecraft_version}" - - // When true, this property will have all Eclipse/IntelliJ IDEA run configurations run the "prepareX" task for the given run configuration before launching the game. - // In most cases, it is not necessary to enable. - // enableEclipsePrepareRuns = true - // enableIdeaPrepareRuns = true - - // This property allows configuring Gradle's ProcessResources task(s) to run on IDE output locations before launching the game. - // It is REQUIRED to be set to true for this template to function. - // See https://docs.gradle.org/current/dsl/org.gradle.language.jvm.tasks.ProcessResources.html - copyIdeResources = true - - // When true, this property will add the folder name of all declared run configurations to generated IDE run configurations. - // The folder name can be set on a run configuration using the "folderName" property. - // By default, the folder name of a run configuration is the name of the Gradle project containing it. - // generateRunFolders = true - - // This property enables access transformers for use in development. - // They will be applied to the Minecraft artifact. - // The access transformer file can be anywhere in the project. - // However, it must be at "META-INF/accesstransformer.cfg" in the final mod jar to be loaded by Forge. - // This default location is a best practice to automatically put the file in the right place in the final jar. - // See https://docs.minecraftforge.net/en/latest/advanced/accesstransformers/ for more information. - accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') - - // Default run configurations. - // These can be tweaked, removed, or duplicated as needed. - runs { - // applies to all the run configs below - configureEach { - workingDirectory project.file('run') - - // Recommended logging data for a userdev environment - // The markers can be added/remove as needed separated by commas. - // "SCAN": For mods scan. - // "REGISTRIES": For firing of registry events. - // "REGISTRYDUMP": For getting the contents of all registries. - property 'forge.logging.markers', 'REGISTRIES' - - // Recommended logging level for the console - // You can set various levels here. - // Please read: https://stackoverflow.com/questions/2031163/when-to-use-the-different-log-levels - property 'forge.logging.console.level', 'debug' - - // Comma-separated list of namespaces to load gametests from. Empty = all namespaces. - property 'forge.enabledGameTestNamespaces', mod_id - - mods { - "${mod_id}" { - source sourceSets.main - } - } - } - - client { - // Comma-separated list of namespaces to load gametests from. Empty = all namespaces. - property 'forge.enabledGameTestNamespaces', mod_id - } - - server { - property 'forge.enabledGameTestNamespaces', mod_id - args '--nogui' - } - - // This run config launches GameTestServer and runs all registered gametests, then exits. - // By default, the server will crash when no gametests are provided. - // The gametest system is also enabled by default for other run configs under the /test command. - gameTestServer { - property 'forge.enabledGameTestNamespaces', mod_id - } - - data { - // example of overriding the workingDirectory set in configureEach above - workingDirectory project.file('run-data') - - // Specify the modid for data generation, where to output the resulting resource, and where to look for existing resources. - args '--mod', mod_id, '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/') - } - } -} - -// Include resources generated by data generators. -sourceSets.main.resources { srcDir 'src/generated/resources' } - -repositories { - mavenCentral() - // Put repositories for dependencies here - // ForgeGradle automatically adds the Forge maven and Maven Central for you - - // If you have mod jar dependencies in ./libs, you can declare them as a repository like so: - flatDir { - dir 'libs' - } - - //maven { - // name = "CurseMaven" - // url = "https://cursemaven.com" - //} - - maven { - name = "zontreck Maven" - url = "https://git.zontreck.com/api/packages/MinecraftMods/maven" - } - -} - -dependencies { - // Specify the version of Minecraft to use. - // Any artifact can be supplied so long as it has a "userdev" classifier artifact and is a compatible patcher artifact. - // The "userdev" classifier will be requested and setup by ForgeGradle. - // If the group id is "net.minecraft" and the artifact id is one of ["client", "server", "joined"], - // then special handling is done to allow a setup of a vanilla dependency without the use of an external repository. - minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}" - - provided "dev.zontreck:MinecraftMods_LibZontreck_1.19.2:${libzontreck}" - - // Example mod dependency with JEI - using fg.deobf() ensures the dependency is remapped to your development mappings - // The JEI API is declared for compile time use, while the full JEI artifact is used at runtime - // compileOnly fg.deobf("mezz.jei:jei-${mc_version}-common-api:${jei_version}") - // compileOnly fg.deobf("mezz.jei:jei-${mc_version}-forge-api:${jei_version}") - // runtimeOnly fg.deobf("mezz.jei:jei-${mc_version}-forge:${jei_version}") - - // Example mod dependency using a mod jar from ./libs with a flat dir repository - // This maps to ./libs/coolmod-${mc_version}-${coolmod_version}.jar - // The group id is ignored when searching -- in this case, it is "blank" - // implementation fg.deobf("blank:coolmod-${mc_version}:${coolmod_version}") - - // For more info: - // http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html - // http://www.gradle.org/docs/current/userguide/dependency_management.html -} - -// This block of code expands all declared replace properties in the specified resource targets. -// A missing property will result in an error. Properties are expanded using ${} Groovy notation. -// When "copyIdeResources" is enabled, this will also run before the game launches in IDE environments. -// See https://docs.gradle.org/current/dsl/org.gradle.language.jvm.tasks.ProcessResources.html -tasks.named('processResources', ProcessResources).configure { - var replaceProperties = [ - minecraft_version: minecraft_version, minecraft_version_range: minecraft_version_range, - forge_version: forge_version, forge_version_range: forge_version_range, - loader_version_range: loader_version_range, - mod_id: mod_id, mod_name: mod_name, mod_license: mod_license, mod_version: mod_version, - mod_authors: mod_authors, mod_description: mod_description, libzontreck_id: libzontreck_id, libzontreck_range: libzontreck_range - ] - inputs.properties replaceProperties - - filesMatching(['META-INF/mods.toml', 'pack.mcmeta']) { - expand replaceProperties + [project: project] - } -} - - -// Example for how to get properties into the manifest for reading at runtime. -tasks.named('jar', Jar).configure { - duplicatesStrategy = DuplicatesStrategy.EXCLUDE - - manifest { - attributes([ - 'Specification-Title' : mod_id, - 'Specification-Vendor' : mod_authors, - 'Specification-Version' : '1', // We are version 1 of ourselves - 'Implementation-Title' : project.name, - 'Implementation-Version' : project.jar.archiveVersion, - 'Implementation-Vendor' : mod_authors, - 'Implementation-Timestamp': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ") - ]) - } - - // This is the preferred method to reobfuscate your jar file - finalizedBy 'reobfJar' -} - -// However if you are in a multi-project build, dev time needs unobfed jar files, so you can delay the obfuscation until publishing by doing: -// tasks.named('publish').configure { -// dependsOn 'reobfJar' -// } - - -def MAVEN_PASSWORD = "AriasCreationsMavenPassword" -def MAVEN_USER = "AriasCreationsMavenUser" - -publishing { - publications { - mavenJava(MavenPublication) { - artifact jar - artifact sourcesJar - artifact javadocJar - } - } - - repositories { - maven { - url = "https://git.zontreck.com/api/packages/MinecraftMods/maven" - name = "ariascreations" - - credentials { - username = project.findProperty(MAVEN_USER) - password = project.findProperty(MAVEN_PASSWORD) - } - } - } -} - - -tasks.withType(JavaCompile).configureEach { - options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation -} \ No newline at end of file +plugins { + id 'dev.architectury.loom' version '1.6-SNAPSHOT' + id 'maven-publish' +} + +group = project.maven_group +version = project.mod_version + +base { + archivesName = project.archives_name +} + +loom { + silentMojangMappingsLicense() + + forge { + mixinConfig 'ariasessentials.mixins.json' + } +} + +repositories { + // Add repositories to retrieve artifacts from in here. + // You should only use this when depending on other mods because + // Loom adds the essential maven repositories to download Minecraft and libraries from automatically. + // See https://docs.gradle.org/current/userguide/declaring_repositories.html + // for more information about repositories. + + maven { + // location of the maven that hosts JEI files before January 2023 + name = "Progwml6's maven" + url = "https://dvs1.progwml6.com/files/maven/" + } + maven { + // location of the maven that hosts JEI files since January 2023 + name = "Jared's maven" + url = "https://maven.blamejared.com/" + } + maven { + // location of a maven mirror for JEI files, as a fallback + name = "ModMaven" + url = "https://modmaven.dev" + } +} + +dependencies { + minecraft "net.minecraft:minecraft:$project.minecraft_version" + mappings loom.officialMojangMappings() + forge "net.minecraftforge:forge:$project.forge_version" + + + // compile against the JEI API but do not include it at runtime + modCompileOnly "mezz.jei:jei-${minecraft_version}-forge-api:${jei_version}" + // at runtime, use the full JEI jar + modRuntimeOnly "mezz.jei:jei-${minecraft_version}-forge:${jei_version}" +} + +processResources { + inputs.property 'version', project.version + + filesMatching('META-INF/mods.toml') { + expand version: project.version + } +} + +java { + // Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task + // if it is present. + // If you remove this line, sources will not be generated. + withSourcesJar() + + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 +} + +tasks.withType(JavaCompile).configureEach { + it.options.release = 17 +} + +// Configure Maven publishing. +publishing { + publications { + mavenJava(MavenPublication) { + from components.java + } + } + + // See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing. + repositories { + // Add repositories to publish to here. + // Notice: This block does NOT have the same function as the block in the top level. + // The repositories here will be used for publishing your artifact, not for + // retrieving dependencies. + } +} diff --git a/gradle.properties b/gradle.properties index 320de4e..2879717 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,62 +1,15 @@ -# Sets default memory used for gradle commands. Can be overridden by user or command line properties. -# This is required to provide enough memory for the Minecraft decompilation process. -org.gradle.jvmargs=-Xmx3G -Dfile.encoding=utf-8 -org.gradle.daemon=false +# Done to increase the memory available to Gradle. +org.gradle.jvmargs=-Xmx1G +loom.platform = forge -libzontreck=1192.13.100924.2250 -libzontreck_id=libzontreck -libzontreck_range=[1192.13,1192.14) +# Mod properties +mod_version = 1192.2.102824.1841 +maven_group = com.zontreck +archives_name = ariasessentials -## Environment Properties +# Minecraft properties +minecraft_version = 1.19.2 -# The Minecraft version must agree with the Forge version to get a valid artifact -minecraft_version=1.19.2 -# The Minecraft version range can use any release version of Minecraft as bounds. -# Snapshots, pre-releases, and release candidates are not guaranteed to sort properly -# as they do not follow standard versioning conventions. -minecraft_version_range=[1.19.2,1.20) -# The Forge version must agree with the Minecraft version to get a valid artifact -forge_version=43.4.2 -# The Forge version range can use any version of Forge as bounds or match the loader version range -forge_version_range=[43,) -# The loader version range can only use the major version of Forge/FML as bounds -loader_version_range=[43,) -# The mapping channel to use for mappings. -# The default set of supported mapping channels are ["official", "snapshot", "snapshot_nodoc", "stable", "stable_nodoc"]. -# Additional mapping channels can be registered through the "channelProviders" extension in a Gradle plugin. -# -# | Channel | Version | | -# |-----------|----------------------|--------------------------------------------------------------------------------| -# | official | MCVersion | Official field/method names from Mojang mapping files | -# | parchment | YYYY.MM.DD-MCVersion | Open community-sourced parameter names and javadocs layered on top of official | -# -# You must be aware of the Mojang license when using the 'official' or 'parchment' mappings. -# See more information here: https://github.com/MinecraftForge/MCPConfig/blob/master/Mojang.md -# -# Parchment is an unofficial project maintained by ParchmentMC, separate from Minecraft Forge. -# Additional setup is needed to use their mappings, see https://parchmentmc.org/docs/getting-started -mapping_channel=parchment -# The mapping version to query from the mapping channel. -# This must match the format required by the mapping channel. -parchment_version=2022.11.27 -# luckperms_api_version=5.4 - -## Mod Properties - -# The unique mod identifier for the mod. Must be lowercase in English locale. Must fit the regex [a-z][a-z0-9_]{1,63} -# Must match the String constant located in the main mod class annotated with @Mod. -mod_id=ariasessentials -# The human-readable display name for the mod. -mod_name=Aria's Essentials -# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. -mod_license=GPLv3 -# The mod version. See https://semver.org/ -mod_version=1192.3.100924.2300 -# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository. -# This should match the base package used for the mod sources. -# See https://maven.apache.org/guides/mini/guide-naming-conventions.html -mod_group_id=dev.zontreck -# The authors of the mod. This is a simple text string that is used for display purposes in the mod list. -mod_authors=zontreck -# The description of the mod. This is a simple multiline text string that is used for display purposes in the mod list. -mod_description=A mod with custom commands that are essential \ No newline at end of file +# Dependencies +forge_version = 1.19.2-43.4.0 +jei_version = 11.6.0.1024 \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index c1962a79e29d3e0ab67b14947c167a862655af9b..e6441136f3d4ba8a0da8d277868979cfbc8ad796 100644 GIT binary patch literal 43453 zcma&N1CXTcmMvW9vTb(Rwr$&4wr$(C?dmSu>@vG-+vuvg^_??!{yS%8zW-#zn-LkA z5&1^$^{lnmUON?}LBF8_K|(?T0Ra(xUH{($5eN!MR#ZihR#HxkUPe+_R8Cn`RRs(P z_^*#_XlXmGv7!4;*Y%p4nw?{bNp@UZHv1?Um8r6)Fei3p@ClJn0ECfg1hkeuUU@Or zDaPa;U3fE=3L}DooL;8f;P0ipPt0Z~9P0)lbStMS)ag54=uL9ia-Lm3nh|@(Y?B`; zx_#arJIpXH!U{fbCbI^17}6Ri*H<>OLR%c|^mh8+)*h~K8Z!9)DPf zR2h?lbDZQ`p9P;&DQ4F0sur@TMa!Y}S8irn(%d-gi0*WxxCSk*A?3lGh=gcYN?FGl z7D=Js!i~0=u3rox^eO3i@$0=n{K1lPNU zwmfjRVmLOCRfe=seV&P*1Iq=^i`502keY8Uy-WNPwVNNtJFx?IwAyRPZo2Wo1+S(xF37LJZ~%i)kpFQ3Fw=mXfd@>%+)RpYQLnr}B~~zoof(JVm^^&f zxKV^+3D3$A1G;qh4gPVjhrC8e(VYUHv#dy^)(RoUFM?o%W-EHxufuWf(l*@-l+7vt z=l`qmR56K~F|v<^Pd*p~1_y^P0P^aPC##d8+HqX4IR1gu+7w#~TBFphJxF)T$2WEa zxa?H&6=Qe7d(#tha?_1uQys2KtHQ{)Qco)qwGjrdNL7thd^G5i8Os)CHqc>iOidS} z%nFEDdm=GXBw=yXe1W-ShHHFb?Cc70+$W~z_+}nAoHFYI1MV1wZegw*0y^tC*s%3h zhD3tN8b=Gv&rj}!SUM6|ajSPp*58KR7MPpI{oAJCtY~JECm)*m_x>AZEu>DFgUcby z1Qaw8lU4jZpQ_$;*7RME+gq1KySGG#Wql>aL~k9tLrSO()LWn*q&YxHEuzmwd1?aAtI zBJ>P=&$=l1efe1CDU;`Fd+_;&wI07?V0aAIgc(!{a z0Jg6Y=inXc3^n!U0Atk`iCFIQooHqcWhO(qrieUOW8X(x?(RD}iYDLMjSwffH2~tB z)oDgNBLB^AJBM1M^c5HdRx6fBfka`(LD-qrlh5jqH~);#nw|iyp)()xVYak3;Ybik z0j`(+69aK*B>)e_p%=wu8XC&9e{AO4c~O1U`5X9}?0mrd*m$_EUek{R?DNSh(=br# z#Q61gBzEpmy`$pA*6!87 zSDD+=@fTY7<4A?GLqpA?Pb2z$pbCc4B4zL{BeZ?F-8`s$?>*lXXtn*NC61>|*w7J* z$?!iB{6R-0=KFmyp1nnEmLsA-H0a6l+1uaH^g%c(p{iT&YFrbQ$&PRb8Up#X3@Zsk zD^^&LK~111%cqlP%!_gFNa^dTYT?rhkGl}5=fL{a`UViaXWI$k-UcHJwmaH1s=S$4 z%4)PdWJX;hh5UoK?6aWoyLxX&NhNRqKam7tcOkLh{%j3K^4Mgx1@i|Pi&}<^5>hs5 zm8?uOS>%)NzT(%PjVPGa?X%`N2TQCKbeH2l;cTnHiHppPSJ<7y-yEIiC!P*ikl&!B z%+?>VttCOQM@ShFguHVjxX^?mHX^hSaO_;pnyh^v9EumqSZTi+#f&_Vaija0Q-e*| z7ulQj6Fs*bbmsWp{`auM04gGwsYYdNNZcg|ph0OgD>7O}Asn7^Z=eI>`$2*v78;sj-}oMoEj&@)9+ycEOo92xSyY344^ z11Hb8^kdOvbf^GNAK++bYioknrpdN>+u8R?JxG=!2Kd9r=YWCOJYXYuM0cOq^FhEd zBg2puKy__7VT3-r*dG4c62Wgxi52EMCQ`bKgf*#*ou(D4-ZN$+mg&7$u!! z-^+Z%;-3IDwqZ|K=ah85OLwkO zKxNBh+4QHh)u9D?MFtpbl)us}9+V!D%w9jfAMYEb>%$A;u)rrI zuBudh;5PN}_6J_}l55P3l_)&RMlH{m!)ai-i$g)&*M`eN$XQMw{v^r@-125^RRCF0 z^2>|DxhQw(mtNEI2Kj(;KblC7x=JlK$@78`O~>V!`|1Lm-^JR$-5pUANAnb(5}B}JGjBsliK4& zk6y(;$e&h)lh2)L=bvZKbvh@>vLlreBdH8No2>$#%_Wp1U0N7Ank!6$dFSi#xzh|( zRi{Uw%-4W!{IXZ)fWx@XX6;&(m_F%c6~X8hx=BN1&q}*( zoaNjWabE{oUPb!Bt$eyd#$5j9rItB-h*5JiNi(v^e|XKAj*8(k<5-2$&ZBR5fF|JA z9&m4fbzNQnAU}r8ab>fFV%J0z5awe#UZ|bz?Ur)U9bCIKWEzi2%A+5CLqh?}K4JHi z4vtM;+uPsVz{Lfr;78W78gC;z*yTch~4YkLr&m-7%-xc ztw6Mh2d>_iO*$Rd8(-Cr1_V8EO1f*^@wRoSozS) zy1UoC@pruAaC8Z_7~_w4Q6n*&B0AjOmMWa;sIav&gu z|J5&|{=a@vR!~k-OjKEgPFCzcJ>#A1uL&7xTDn;{XBdeM}V=l3B8fE1--DHjSaxoSjNKEM9|U9#m2<3>n{Iuo`r3UZp;>GkT2YBNAh|b z^jTq-hJp(ebZh#Lk8hVBP%qXwv-@vbvoREX$TqRGTgEi$%_F9tZES@z8Bx}$#5eeG zk^UsLBH{bc2VBW)*EdS({yw=?qmevwi?BL6*=12k9zM5gJv1>y#ML4!)iiPzVaH9% zgSImetD@dam~e>{LvVh!phhzpW+iFvWpGT#CVE5TQ40n%F|p(sP5mXxna+Ev7PDwA zamaV4m*^~*xV+&p;W749xhb_X=$|LD;FHuB&JL5?*Y2-oIT(wYY2;73<^#46S~Gx| z^cez%V7x$81}UWqS13Gz80379Rj;6~WdiXWOSsdmzY39L;Hg3MH43o*y8ibNBBH`(av4|u;YPq%{R;IuYow<+GEsf@R?=@tT@!}?#>zIIn0CoyV!hq3mw zHj>OOjfJM3F{RG#6ujzo?y32m^tgSXf@v=J$ELdJ+=5j|=F-~hP$G&}tDZsZE?5rX ztGj`!S>)CFmdkccxM9eGIcGnS2AfK#gXwj%esuIBNJQP1WV~b~+D7PJTmWGTSDrR` zEAu4B8l>NPuhsk5a`rReSya2nfV1EK01+G!x8aBdTs3Io$u5!6n6KX%uv@DxAp3F@{4UYg4SWJtQ-W~0MDb|j-$lwVn znAm*Pl!?Ps&3wO=R115RWKb*JKoexo*)uhhHBncEDMSVa_PyA>k{Zm2(wMQ(5NM3# z)jkza|GoWEQo4^s*wE(gHz?Xsg4`}HUAcs42cM1-qq_=+=!Gk^y710j=66(cSWqUe zklbm8+zB_syQv5A2rj!Vbw8;|$@C!vfNmNV!yJIWDQ>{+2x zKjuFX`~~HKG~^6h5FntRpnnHt=D&rq0>IJ9#F0eM)Y-)GpRjiN7gkA8wvnG#K=q{q z9dBn8_~wm4J<3J_vl|9H{7q6u2A!cW{bp#r*-f{gOV^e=8S{nc1DxMHFwuM$;aVI^ zz6A*}m8N-&x8;aunp1w7_vtB*pa+OYBw=TMc6QK=mbA-|Cf* zvyh8D4LRJImooUaSb7t*fVfih<97Gf@VE0|z>NcBwBQze);Rh!k3K_sfunToZY;f2 z^HmC4KjHRVg+eKYj;PRN^|E0>Gj_zagfRbrki68I^#~6-HaHg3BUW%+clM1xQEdPYt_g<2K+z!$>*$9nQ>; zf9Bei{?zY^-e{q_*|W#2rJG`2fy@{%6u0i_VEWTq$*(ZN37|8lFFFt)nCG({r!q#9 z5VK_kkSJ3?zOH)OezMT{!YkCuSSn!K#-Rhl$uUM(bq*jY? zi1xbMVthJ`E>d>(f3)~fozjg^@eheMF6<)I`oeJYx4*+M&%c9VArn(OM-wp%M<-`x z7sLP1&3^%Nld9Dhm@$3f2}87!quhI@nwd@3~fZl_3LYW-B?Ia>ui`ELg z&Qfe!7m6ze=mZ`Ia9$z|ARSw|IdMpooY4YiPN8K z4B(ts3p%2i(Td=tgEHX z0UQ_>URBtG+-?0E;E7Ld^dyZ;jjw0}XZ(}-QzC6+NN=40oDb2^v!L1g9xRvE#@IBR zO!b-2N7wVfLV;mhEaXQ9XAU+>=XVA6f&T4Z-@AX!leJ8obP^P^wP0aICND?~w&NykJ#54x3_@r7IDMdRNy4Hh;h*!u(Ol(#0bJdwEo$5437-UBjQ+j=Ic>Q2z` zJNDf0yO6@mr6y1#n3)s(W|$iE_i8r@Gd@!DWDqZ7J&~gAm1#~maIGJ1sls^gxL9LLG_NhU!pTGty!TbhzQnu)I*S^54U6Yu%ZeCg`R>Q zhBv$n5j0v%O_j{QYWG!R9W?5_b&67KB$t}&e2LdMvd(PxN6Ir!H4>PNlerpBL>Zvyy!yw z-SOo8caEpDt(}|gKPBd$qND5#a5nju^O>V&;f890?yEOfkSG^HQVmEbM3Ugzu+UtH zC(INPDdraBN?P%kE;*Ae%Wto&sgw(crfZ#Qy(<4nk;S|hD3j{IQRI6Yq|f^basLY; z-HB&Je%Gg}Jt@={_C{L$!RM;$$|iD6vu#3w?v?*;&()uB|I-XqEKqZPS!reW9JkLewLb!70T7n`i!gNtb1%vN- zySZj{8-1>6E%H&=V}LM#xmt`J3XQoaD|@XygXjdZ1+P77-=;=eYpoEQ01B@L*a(uW zrZeZz?HJsw_4g0vhUgkg@VF8<-X$B8pOqCuWAl28uB|@r`19DTUQQsb^pfqB6QtiT z*`_UZ`fT}vtUY#%sq2{rchyfu*pCg;uec2$-$N_xgjZcoumE5vSI{+s@iLWoz^Mf; zuI8kDP{!XY6OP~q5}%1&L}CtfH^N<3o4L@J@zg1-mt{9L`s^z$Vgb|mr{@WiwAqKg zp#t-lhrU>F8o0s1q_9y`gQNf~Vb!F%70f}$>i7o4ho$`uciNf=xgJ>&!gSt0g;M>*x4-`U)ysFW&Vs^Vk6m%?iuWU+o&m(2Jm26Y(3%TL; zA7T)BP{WS!&xmxNw%J=$MPfn(9*^*TV;$JwRy8Zl*yUZi8jWYF>==j~&S|Xinsb%c z2?B+kpet*muEW7@AzjBA^wAJBY8i|#C{WtO_or&Nj2{=6JTTX05}|H>N2B|Wf!*3_ z7hW*j6p3TvpghEc6-wufFiY!%-GvOx*bZrhZu+7?iSrZL5q9}igiF^*R3%DE4aCHZ zqu>xS8LkW+Auv%z-<1Xs92u23R$nk@Pk}MU5!gT|c7vGlEA%G^2th&Q*zfg%-D^=f z&J_}jskj|Q;73NP4<4k*Y%pXPU2Thoqr+5uH1yEYM|VtBPW6lXaetokD0u z9qVek6Q&wk)tFbQ8(^HGf3Wp16gKmr>G;#G(HRBx?F`9AIRboK+;OfHaLJ(P>IP0w zyTbTkx_THEOs%Q&aPrxbZrJlio+hCC_HK<4%f3ZoSAyG7Dn`=X=&h@m*|UYO-4Hq0 z-Bq&+Ie!S##4A6OGoC~>ZW`Y5J)*ouaFl_e9GA*VSL!O_@xGiBw!AF}1{tB)z(w%c zS1Hmrb9OC8>0a_$BzeiN?rkPLc9%&;1CZW*4}CDDNr2gcl_3z+WC15&H1Zc2{o~i) z)LLW=WQ{?ricmC`G1GfJ0Yp4Dy~Ba;j6ZV4r{8xRs`13{dD!xXmr^Aga|C=iSmor% z8hi|pTXH)5Yf&v~exp3o+sY4B^^b*eYkkCYl*T{*=-0HniSA_1F53eCb{x~1k3*`W zr~};p1A`k{1DV9=UPnLDgz{aJH=-LQo<5%+Em!DNN252xwIf*wF_zS^!(XSm(9eoj z=*dXG&n0>)_)N5oc6v!>-bd(2ragD8O=M|wGW z!xJQS<)u70m&6OmrF0WSsr@I%T*c#Qo#Ha4d3COcX+9}hM5!7JIGF>7<~C(Ear^Sn zm^ZFkV6~Ula6+8S?oOROOA6$C&q&dp`>oR-2Ym3(HT@O7Sd5c~+kjrmM)YmgPH*tL zX+znN>`tv;5eOfX?h{AuX^LK~V#gPCu=)Tigtq9&?7Xh$qN|%A$?V*v=&-2F$zTUv z`C#WyIrChS5|Kgm_GeudCFf;)!WH7FI60j^0o#65o6`w*S7R@)88n$1nrgU(oU0M9 zx+EuMkC>(4j1;m6NoGqEkpJYJ?vc|B zOlwT3t&UgL!pX_P*6g36`ZXQ; z9~Cv}ANFnJGp(;ZhS(@FT;3e)0)Kp;h^x;$*xZn*k0U6-&FwI=uOGaODdrsp-!K$Ac32^c{+FhI-HkYd5v=`PGsg%6I`4d9Jy)uW0y%) zm&j^9WBAp*P8#kGJUhB!L?a%h$hJgQrx!6KCB_TRo%9{t0J7KW8!o1B!NC)VGLM5! zpZy5Jc{`r{1e(jd%jsG7k%I+m#CGS*BPA65ZVW~fLYw0dA-H_}O zrkGFL&P1PG9p2(%QiEWm6x;U-U&I#;Em$nx-_I^wtgw3xUPVVu zqSuKnx&dIT-XT+T10p;yjo1Y)z(x1fb8Dzfn8e yu?e%!_ptzGB|8GrCfu%p?(_ zQccdaaVK$5bz;*rnyK{_SQYM>;aES6Qs^lj9lEs6_J+%nIiuQC*fN;z8md>r_~Mfl zU%p5Dt_YT>gQqfr@`cR!$NWr~+`CZb%dn;WtzrAOI>P_JtsB76PYe*<%H(y>qx-`Kq!X_; z<{RpAqYhE=L1r*M)gNF3B8r(<%8mo*SR2hu zccLRZwGARt)Hlo1euqTyM>^!HK*!Q2P;4UYrysje@;(<|$&%vQekbn|0Ruu_Io(w4#%p6ld2Yp7tlA`Y$cciThP zKzNGIMPXX%&Ud0uQh!uQZz|FB`4KGD?3!ND?wQt6!n*f4EmCoJUh&b?;B{|lxs#F- z31~HQ`SF4x$&v00@(P+j1pAaj5!s`)b2RDBp*PB=2IB>oBF!*6vwr7Dp%zpAx*dPr zb@Zjq^XjN?O4QcZ*O+8>)|HlrR>oD*?WQl5ri3R#2?*W6iJ>>kH%KnnME&TT@ZzrHS$Q%LC?n|e>V+D+8D zYc4)QddFz7I8#}y#Wj6>4P%34dZH~OUDb?uP%-E zwjXM(?Sg~1!|wI(RVuxbu)-rH+O=igSho_pDCw(c6b=P zKk4ATlB?bj9+HHlh<_!&z0rx13K3ZrAR8W)!@Y}o`?a*JJsD+twZIv`W)@Y?Amu_u zz``@-e2X}27$i(2=9rvIu5uTUOVhzwu%mNazS|lZb&PT;XE2|B&W1>=B58#*!~D&) zfVmJGg8UdP*fx(>Cj^?yS^zH#o-$Q-*$SnK(ZVFkw+er=>N^7!)FtP3y~Xxnu^nzY zikgB>Nj0%;WOltWIob|}%lo?_C7<``a5hEkx&1ku$|)i>Rh6@3h*`slY=9U}(Ql_< zaNG*J8vb&@zpdhAvv`?{=zDedJ23TD&Zg__snRAH4eh~^oawdYi6A3w8<Ozh@Kw)#bdktM^GVb zrG08?0bG?|NG+w^&JvD*7LAbjED{_Zkc`3H!My>0u5Q}m!+6VokMLXxl`Mkd=g&Xx z-a>m*#G3SLlhbKB!)tnzfWOBV;u;ftU}S!NdD5+YtOjLg?X}dl>7m^gOpihrf1;PY zvll&>dIuUGs{Qnd- zwIR3oIrct8Va^Tm0t#(bJD7c$Z7DO9*7NnRZorrSm`b`cxz>OIC;jSE3DO8`hX955ui`s%||YQtt2 z5DNA&pG-V+4oI2s*x^>-$6J?p=I>C|9wZF8z;VjR??Icg?1w2v5Me+FgAeGGa8(3S z4vg*$>zC-WIVZtJ7}o9{D-7d>zCe|z#<9>CFve-OPAYsneTb^JH!Enaza#j}^mXy1 z+ULn^10+rWLF6j2>Ya@@Kq?26>AqK{A_| zQKb*~F1>sE*=d?A?W7N2j?L09_7n+HGi{VY;MoTGr_)G9)ot$p!-UY5zZ2Xtbm=t z@dpPSGwgH=QtIcEulQNI>S-#ifbnO5EWkI;$A|pxJd885oM+ zGZ0_0gDvG8q2xebj+fbCHYfAXuZStH2j~|d^sBAzo46(K8n59+T6rzBwK)^rfPT+B zyIFw)9YC-V^rhtK`!3jrhmW-sTmM+tPH+;nwjL#-SjQPUZ53L@A>y*rt(#M(qsiB2 zx6B)dI}6Wlsw%bJ8h|(lhkJVogQZA&n{?Vgs6gNSXzuZpEyu*xySy8ro07QZ7Vk1!3tJphN_5V7qOiyK8p z#@jcDD8nmtYi1^l8ml;AF<#IPK?!pqf9D4moYk>d99Im}Jtwj6c#+A;f)CQ*f-hZ< z=p_T86jog%!p)D&5g9taSwYi&eP z#JuEK%+NULWus;0w32-SYFku#i}d~+{Pkho&^{;RxzP&0!RCm3-9K6`>KZpnzS6?L z^H^V*s!8<>x8bomvD%rh>Zp3>Db%kyin;qtl+jAv8Oo~1g~mqGAC&Qi_wy|xEt2iz zWAJEfTV%cl2Cs<1L&DLRVVH05EDq`pH7Oh7sR`NNkL%wi}8n>IXcO40hp+J+sC!W?!krJf!GJNE8uj zg-y~Ns-<~D?yqbzVRB}G>0A^f0!^N7l=$m0OdZuqAOQqLc zX?AEGr1Ht+inZ-Qiwnl@Z0qukd__a!C*CKuGdy5#nD7VUBM^6OCpxCa2A(X;e0&V4 zM&WR8+wErQ7UIc6LY~Q9x%Sn*Tn>>P`^t&idaOEnOd(Ufw#>NoR^1QdhJ8s`h^|R_ zXX`c5*O~Xdvh%q;7L!_!ohf$NfEBmCde|#uVZvEo>OfEq%+Ns7&_f$OR9xsihRpBb z+cjk8LyDm@U{YN>+r46?nn{7Gh(;WhFw6GAxtcKD+YWV?uge>;+q#Xx4!GpRkVZYu zzsF}1)7$?%s9g9CH=Zs+B%M_)+~*j3L0&Q9u7!|+T`^O{xE6qvAP?XWv9_MrZKdo& z%IyU)$Q95AB4!#hT!_dA>4e@zjOBD*Y=XjtMm)V|+IXzjuM;(l+8aA5#Kaz_$rR6! zj>#&^DidYD$nUY(D$mH`9eb|dtV0b{S>H6FBfq>t5`;OxA4Nn{J(+XihF(stSche7$es&~N$epi&PDM_N`As;*9D^L==2Q7Z2zD+CiU(|+-kL*VG+&9!Yb3LgPy?A zm7Z&^qRG_JIxK7-FBzZI3Q<;{`DIxtc48k> zc|0dmX;Z=W$+)qE)~`yn6MdoJ4co;%!`ddy+FV538Y)j(vg}5*k(WK)KWZ3WaOG!8 z!syGn=s{H$odtpqFrT#JGM*utN7B((abXnpDM6w56nhw}OY}0TiTG1#f*VFZr+^-g zbP10`$LPq_;PvrA1XXlyx2uM^mrjTzX}w{yuLo-cOClE8MMk47T25G8M!9Z5ypOSV zAJUBGEg5L2fY)ZGJb^E34R2zJ?}Vf>{~gB!8=5Z) z9y$>5c)=;o0HeHHSuE4U)#vG&KF|I%-cF6f$~pdYJWk_dD}iOA>iA$O$+4%@>JU08 zS`ep)$XLPJ+n0_i@PkF#ri6T8?ZeAot$6JIYHm&P6EB=BiaNY|aA$W0I+nz*zkz_z zkEru!tj!QUffq%)8y0y`T&`fuus-1p>=^hnBiBqD^hXrPs`PY9tU3m0np~rISY09> z`P3s=-kt_cYcxWd{de@}TwSqg*xVhp;E9zCsnXo6z z?f&Sv^U7n4`xr=mXle94HzOdN!2kB~4=%)u&N!+2;z6UYKUDqi-s6AZ!haB;@&B`? z_TRX0%@suz^TRdCb?!vNJYPY8L_}&07uySH9%W^Tc&1pia6y1q#?*Drf}GjGbPjBS zbOPcUY#*$3sL2x4v_i*Y=N7E$mR}J%|GUI(>WEr+28+V z%v5{#e!UF*6~G&%;l*q*$V?&r$Pp^sE^i-0$+RH3ERUUdQ0>rAq2(2QAbG}$y{de( z>{qD~GGuOk559Y@%$?N^1ApVL_a704>8OD%8Y%8B;FCt%AoPu8*D1 zLB5X>b}Syz81pn;xnB}%0FnwazlWfUV)Z-~rZg6~b z6!9J$EcE&sEbzcy?CI~=boWA&eeIa%z(7SE^qgVLz??1Vbc1*aRvc%Mri)AJaAG!p z$X!_9Ds;Zz)f+;%s&dRcJt2==P{^j3bf0M=nJd&xwUGlUFn?H=2W(*2I2Gdu zv!gYCwM10aeus)`RIZSrCK=&oKaO_Ry~D1B5!y0R=%!i2*KfXGYX&gNv_u+n9wiR5 z*e$Zjju&ODRW3phN925%S(jL+bCHv6rZtc?!*`1TyYXT6%Ju=|X;6D@lq$8T zW{Y|e39ioPez(pBH%k)HzFITXHvnD6hw^lIoUMA;qAJ^CU?top1fo@s7xT13Fvn1H z6JWa-6+FJF#x>~+A;D~;VDs26>^oH0EI`IYT2iagy23?nyJ==i{g4%HrAf1-*v zK1)~@&(KkwR7TL}L(A@C_S0G;-GMDy=MJn2$FP5s<%wC)4jC5PXoxrQBFZ_k0P{{s@sz+gX`-!=T8rcB(=7vW}^K6oLWMmp(rwDh}b zwaGGd>yEy6fHv%jM$yJXo5oMAQ>c9j`**}F?MCry;T@47@r?&sKHgVe$MCqk#Z_3S z1GZI~nOEN*P~+UaFGnj{{Jo@16`(qVNtbU>O0Hf57-P>x8Jikp=`s8xWs^dAJ9lCQ z)GFm+=OV%AMVqVATtN@|vp61VVAHRn87}%PC^RAzJ%JngmZTasWBAWsoAqBU+8L8u z4A&Pe?fmTm0?mK-BL9t+{y7o(7jm+RpOhL9KnY#E&qu^}B6=K_dB}*VlSEiC9fn)+V=J;OnN)Ta5v66ic1rG+dGAJ1 z1%Zb_+!$=tQ~lxQrzv3x#CPb?CekEkA}0MYSgx$Jdd}q8+R=ma$|&1a#)TQ=l$1tQ z=tL9&_^vJ)Pk}EDO-va`UCT1m#Uty1{v^A3P~83_#v^ozH}6*9mIjIr;t3Uv%@VeW zGL6(CwCUp)Jq%G0bIG%?{_*Y#5IHf*5M@wPo6A{$Um++Co$wLC=J1aoG93&T7Ho}P z=mGEPP7GbvoG!uD$k(H3A$Z))+i{Hy?QHdk>3xSBXR0j!11O^mEe9RHmw!pvzv?Ua~2_l2Yh~_!s1qS`|0~0)YsbHSz8!mG)WiJE| z2f($6TQtt6L_f~ApQYQKSb=`053LgrQq7G@98#igV>y#i==-nEjQ!XNu9 z~;mE+gtj4IDDNQJ~JVk5Ux6&LCSFL!y=>79kE9=V}J7tD==Ga+IW zX)r7>VZ9dY=V&}DR))xUoV!u(Z|%3ciQi_2jl}3=$Agc(`RPb z8kEBpvY>1FGQ9W$n>Cq=DIpski};nE)`p3IUw1Oz0|wxll^)4dq3;CCY@RyJgFgc# zKouFh!`?Xuo{IMz^xi-h=StCis_M7yq$u) z?XHvw*HP0VgR+KR6wI)jEMX|ssqYvSf*_3W8zVTQzD?3>H!#>InzpSO)@SC8q*ii- z%%h}_#0{4JG;Jm`4zg};BPTGkYamx$Xo#O~lBirRY)q=5M45n{GCfV7h9qwyu1NxOMoP4)jjZMxmT|IQQh0U7C$EbnMN<3)Kk?fFHYq$d|ICu>KbY_hO zTZM+uKHe(cIZfEqyzyYSUBZa8;Fcut-GN!HSA9ius`ltNebF46ZX_BbZNU}}ZOm{M2&nANL9@0qvih15(|`S~z}m&h!u4x~(%MAO$jHRWNfuxWF#B)E&g3ghSQ9|> z(MFaLQj)NE0lowyjvg8z0#m6FIuKE9lDO~Glg}nSb7`~^&#(Lw{}GVOS>U)m8bF}x zVjbXljBm34Cs-yM6TVusr+3kYFjr28STT3g056y3cH5Tmge~ASxBj z%|yb>$eF;WgrcOZf569sDZOVwoo%8>XO>XQOX1OyN9I-SQgrm;U;+#3OI(zrWyow3 zk==|{lt2xrQ%FIXOTejR>;wv(Pb8u8}BUpx?yd(Abh6? zsoO3VYWkeLnF43&@*#MQ9-i-d0t*xN-UEyNKeyNMHw|A(k(_6QKO=nKMCxD(W(Yop zsRQ)QeL4X3Lxp^L%wzi2-WVSsf61dqliPUM7srDB?Wm6Lzn0&{*}|IsKQW;02(Y&| zaTKv|`U(pSzuvR6Rduu$wzK_W-Y-7>7s?G$)U}&uK;<>vU}^^ns@Z!p+9?St1s)dG zK%y6xkPyyS1$~&6v{kl?Md6gwM|>mt6Upm>oa8RLD^8T{0?HC!Z>;(Bob7el(DV6x zi`I)$&E&ngwFS@bi4^xFLAn`=fzTC;aimE^!cMI2n@Vo%Ae-ne`RF((&5y6xsjjAZ zVguVoQ?Z9uk$2ON;ersE%PU*xGO@T*;j1BO5#TuZKEf(mB7|g7pcEA=nYJ{s3vlbg zd4-DUlD{*6o%Gc^N!Nptgay>j6E5;3psI+C3Q!1ZIbeCubW%w4pq9)MSDyB{HLm|k zxv-{$$A*pS@csolri$Ge<4VZ}e~78JOL-EVyrbxKra^d{?|NnPp86!q>t<&IP07?Z z^>~IK^k#OEKgRH+LjllZXk7iA>2cfH6+(e&9ku5poo~6y{GC5>(bRK7hwjiurqAiZ zg*DmtgY}v83IjE&AbiWgMyFbaRUPZ{lYiz$U^&Zt2YjG<%m((&_JUbZcfJ22(>bi5 z!J?<7AySj0JZ&<-qXX;mcV!f~>G=sB0KnjWca4}vrtunD^1TrpfeS^4dvFr!65knK zZh`d;*VOkPs4*-9kL>$GP0`(M!j~B;#x?Ba~&s6CopvO86oM?-? zOw#dIRc;6A6T?B`Qp%^<U5 z19x(ywSH$_N+Io!6;e?`tWaM$`=Db!gzx|lQ${DG!zb1Zl&|{kX0y6xvO1o z220r<-oaS^^R2pEyY;=Qllqpmue|5yI~D|iI!IGt@iod{Opz@*ml^w2bNs)p`M(Io z|E;;m*Xpjd9l)4G#KaWfV(t8YUn@A;nK^#xgv=LtnArX|vWQVuw3}B${h+frU2>9^ z!l6)!Uo4`5k`<<;E(ido7M6lKTgWezNLq>U*=uz&s=cc$1%>VrAeOoUtA|T6gO4>UNqsdK=NF*8|~*sl&wI=x9-EGiq*aqV!(VVXA57 zw9*o6Ir8Lj1npUXvlevtn(_+^X5rzdR>#(}4YcB9O50q97%rW2me5_L=%ffYPUSRc z!vv?Kv>dH994Qi>U(a<0KF6NH5b16enCp+mw^Hb3Xs1^tThFpz!3QuN#}KBbww`(h z7GO)1olDqy6?T$()R7y%NYx*B0k_2IBiZ14&8|JPFxeMF{vSTxF-Vi3+ZOI=Thq2} zyQgjYY1_7^ZQHh{?P))4+qUiQJLi1&{yE>h?~jU%tjdV0h|FENbM3X(KnJdPKc?~k zh=^Ixv*+smUll!DTWH!jrV*wSh*(mx0o6}1@JExzF(#9FXgmTXVoU+>kDe68N)dkQ zH#_98Zv$}lQwjKL@yBd;U(UD0UCl322=pav<=6g>03{O_3oKTq;9bLFX1ia*lw;#K zOiYDcBJf)82->83N_Y(J7Kr_3lE)hAu;)Q(nUVydv+l+nQ$?|%MWTy`t>{havFSQloHwiIkGK9YZ79^9?AZo0ZyQlVR#}lF%dn5n%xYksXf8gnBm=wO7g_^! zauQ-bH1Dc@3ItZ-9D_*pH}p!IG7j8A_o94#~>$LR|TFq zZ-b00*nuw|-5C2lJDCw&8p5N~Z1J&TrcyErds&!l3$eSz%`(*izc;-?HAFD9AHb-| z>)id`QCrzRws^9(#&=pIx9OEf2rmlob8sK&xPCWS+nD~qzU|qG6KwA{zbikcfQrdH z+ zQg>O<`K4L8rN7`GJB0*3<3`z({lWe#K!4AZLsI{%z#ja^OpfjU{!{)x0ZH~RB0W5X zTwN^w=|nA!4PEU2=LR05x~}|B&ZP?#pNgDMwD*ajI6oJqv!L81gu=KpqH22avXf0w zX3HjbCI!n9>l046)5rr5&v5ja!xkKK42zmqHzPx$9Nn_MZk`gLeSLgC=LFf;H1O#B zn=8|^1iRrujHfbgA+8i<9jaXc;CQBAmQvMGQPhFec2H1knCK2x!T`e6soyrqCamX% zTQ4dX_E*8so)E*TB$*io{$c6X)~{aWfaqdTh=xEeGvOAN9H&-t5tEE-qso<+C!2>+ zskX51H-H}#X{A75wqFe-J{?o8Bx|>fTBtl&tcbdR|132Ztqu5X0i-pisB-z8n71%q%>EF}yy5?z=Ve`}hVh{Drv1YWL zW=%ug_&chF11gDv3D6B)Tz5g54H0mDHNjuKZ+)CKFk4Z|$RD zfRuKLW`1B>B?*RUfVd0+u8h3r-{@fZ{k)c!93t1b0+Q9vOaRnEn1*IL>5Z4E4dZ!7 ztp4GP-^1d>8~LMeb}bW!(aAnB1tM_*la=Xx)q(I0Y@__Zd$!KYb8T2VBRw%e$iSdZ zkwdMwd}eV9q*;YvrBFTv1>1+}{H!JK2M*C|TNe$ZSA>UHKk);wz$(F$rXVc|sI^lD zV^?_J!3cLM;GJuBMbftbaRUs$;F}HDEDtIeHQ)^EJJ1F9FKJTGH<(Jj`phE6OuvE) zqK^K`;3S{Y#1M@8yRQwH`?kHMq4tHX#rJ>5lY3DM#o@or4&^_xtBC(|JpGTfrbGkA z2Tu+AyT^pHannww!4^!$5?@5v`LYy~T`qs7SYt$JgrY(w%C+IWA;ZkwEF)u5sDvOK zGk;G>Mh&elvXDcV69J_h02l&O;!{$({fng9Rlc3ID#tmB^FIG^w{HLUpF+iB`|
NnX)EH+Nua)3Y(c z&{(nX_ht=QbJ%DzAya}!&uNu!4V0xI)QE$SY__m)SAKcN0P(&JcoK*Lxr@P zY&P=}&B3*UWNlc|&$Oh{BEqwK2+N2U$4WB7Fd|aIal`FGANUa9E-O)!gV`((ZGCc$ zBJA|FFrlg~9OBp#f7aHodCe{6= zay$6vN~zj1ddMZ9gQ4p32(7wD?(dE>KA2;SOzXRmPBiBc6g`eOsy+pVcHu=;Yd8@{ zSGgXf@%sKKQz~;!J;|2fC@emm#^_rnO0esEn^QxXgJYd`#FPWOUU5b;9eMAF zZhfiZb|gk8aJIw*YLp4!*(=3l8Cp{(%p?ho22*vN9+5NLV0TTazNY$B5L6UKUrd$n zjbX%#m7&F#U?QNOBXkiiWB*_tk+H?N3`vg;1F-I+83{M2!8<^nydGr5XX}tC!10&e z7D36bLaB56WrjL&HiiMVtpff|K%|*{t*ltt^5ood{FOG0<>k&1h95qPio)2`eL${YAGIx(b4VN*~nKn6E~SIQUuRH zQ+5zP6jfnP$S0iJ@~t!Ai3o`X7biohli;E zT#yXyl{bojG@-TGZzpdVDXhbmF%F9+-^YSIv|MT1l3j zrxOFq>gd2%U}?6}8mIj?M zc077Zc9fq(-)4+gXv?Az26IO6eV`RAJz8e3)SC7~>%rlzDwySVx*q$ygTR5kW2ds- z!HBgcq0KON9*8Ff$X0wOq$`T7ml(@TF)VeoF}x1OttjuVHn3~sHrMB++}f7f9H%@f z=|kP_?#+fve@{0MlbkC9tyvQ_R?lRdRJ@$qcB(8*jyMyeME5ns6ypVI1Xm*Zr{DuS zZ!1)rQfa89c~;l~VkCiHI|PCBd`S*2RLNQM8!g9L6?n`^evQNEwfO@&JJRme+uopQX0%Jo zgd5G&#&{nX{o?TQwQvF1<^Cg3?2co;_06=~Hcb6~4XWpNFL!WU{+CK;>gH%|BLOh7@!hsa(>pNDAmpcuVO-?;Bic17R}^|6@8DahH)G z!EmhsfunLL|3b=M0MeK2vqZ|OqUqS8npxwge$w-4pFVXFq$_EKrZY?BuP@Az@(k`L z`ViQBSk`y+YwRT;&W| z2e3UfkCo^uTA4}Qmmtqs+nk#gNr2W4 zTH%hhErhB)pkXR{B!q5P3-OM+M;qu~f>}IjtF%>w{~K-0*jPVLl?Chz&zIdxp}bjx zStp&Iufr58FTQ36AHU)0+CmvaOpKF;W@sMTFpJ`j;3d)J_$tNQI^c<^1o<49Z(~K> z;EZTBaVT%14(bFw2ob@?JLQ2@(1pCdg3S%E4*dJ}dA*v}_a4_P(a`cHnBFJxNobAv zf&Zl-Yt*lhn-wjZsq<9v-IsXxAxMZ58C@e0!rzhJ+D@9^3~?~yllY^s$?&oNwyH!#~6x4gUrfxplCvK#!f z$viuszW>MFEcFL?>ux*((!L$;R?xc*myjRIjgnQX79@UPD$6Dz0jutM@7h_pq z0Zr)#O<^y_K6jfY^X%A-ip>P%3saX{!v;fxT-*0C_j4=UMH+Xth(XVkVGiiKE#f)q z%Jp=JT)uy{&}Iq2E*xr4YsJ5>w^=#-mRZ4vPXpI6q~1aFwi+lQcimO45V-JXP;>(Q zo={U`{=_JF`EQj87Wf}{Qy35s8r1*9Mxg({CvOt}?Vh9d&(}iI-quvs-rm~P;eRA@ zG5?1HO}puruc@S{YNAF3vmUc2B4!k*yi))<5BQmvd3tr}cIs#9)*AX>t`=~{f#Uz0 z0&Nk!7sSZwJe}=)-R^$0{yeS!V`Dh7w{w5rZ9ir!Z7Cd7dwZcK;BT#V0bzTt>;@Cl z#|#A!-IL6CZ@eHH!CG>OO8!%G8&8t4)Ro@}USB*k>oEUo0LsljsJ-%5Mo^MJF2I8- z#v7a5VdJ-Cd%(a+y6QwTmi+?f8Nxtm{g-+WGL>t;s#epv7ug>inqimZCVm!uT5Pf6 ziEgQt7^%xJf#!aPWbuC_3Nxfb&CFbQy!(8ANpkWLI4oSnH?Q3f?0k1t$3d+lkQs{~(>06l&v|MpcFsyAv zin6N!-;pggosR*vV=DO(#+}4ps|5$`udE%Kdmp?G7B#y%H`R|i8skKOd9Xzx8xgR$>Zo2R2Ytktq^w#ul4uicxW#{ zFjG_RNlBroV_n;a7U(KIpcp*{M~e~@>Q#Av90Jc5v%0c>egEdY4v3%|K1XvB{O_8G zkTWLC>OZKf;XguMH2-Pw{BKbFzaY;4v2seZV0>^7Q~d4O=AwaPhP3h|!hw5aqOtT@ z!SNz}$of**Bl3TK209@F=Tn1+mgZa8yh(Png%Zd6Mt}^NSjy)etQrF zme*llAW=N_8R*O~d2!apJnF%(JcN??=`$qs3Y+~xs>L9x`0^NIn!8mMRFA_tg`etw z3k{9JAjnl@ygIiJcNHTy02GMAvBVqEss&t2<2mnw!; zU`J)0>lWiqVqo|ex7!+@0i>B~BSU1A_0w#Ee+2pJx0BFiZ7RDHEvE*ptc9md(B{&+ zKE>TM)+Pd>HEmdJao7U@S>nL(qq*A)#eLOuIfAS@j`_sK0UEY6OAJJ-kOrHG zjHx`g!9j*_jRcJ%>CE9K2MVf?BUZKFHY?EpV6ai7sET-tqk=nDFh-(65rhjtlKEY% z@G&cQ<5BKatfdA1FKuB=i>CCC5(|9TMW%K~GbA4}80I5%B}(gck#Wlq@$nO3%@QP_ z8nvPkJFa|znk>V92cA!K1rKtr)skHEJD;k8P|R8RkCq1Rh^&}Evwa4BUJz2f!2=MH zo4j8Y$YL2313}H~F7@J7mh>u%556Hw0VUOz-Un@ZASCL)y8}4XXS`t1AC*^>PLwIc zUQok5PFS=*#)Z!3JZN&eZ6ZDP^-c@StY*t20JhCnbMxXf=LK#;`4KHEqMZ-Ly9KsS zI2VUJGY&PmdbM+iT)zek)#Qc#_i4uH43 z@T5SZBrhNCiK~~esjsO9!qBpaWK<`>!-`b71Y5ReXQ4AJU~T2Njri1CEp5oKw;Lnm)-Y@Z3sEY}XIgSy%xo=uek(kAAH5MsV$V3uTUsoTzxp_rF=tx zV07vlJNKtJhCu`b}*#m&5LV4TAE&%KtHViDAdv#c^x`J7bg z&N;#I2GkF@SIGht6p-V}`!F_~lCXjl1BdTLIjD2hH$J^YFN`7f{Q?OHPFEM$65^!u zNwkelo*5+$ZT|oQ%o%;rBX$+?xhvjb)SHgNHE_yP%wYkkvXHS{Bf$OiKJ5d1gI0j< zF6N}Aq=(WDo(J{e-uOecxPD>XZ@|u-tgTR<972`q8;&ZD!cep^@B5CaqFz|oU!iFj zU0;6fQX&~15E53EW&w1s9gQQ~Zk16X%6 zjG`j0yq}4deX2?Tr(03kg>C(!7a|b9qFI?jcE^Y>-VhudI@&LI6Qa}WQ>4H_!UVyF z((cm&!3gmq@;BD#5P~0;_2qgZhtJS|>WdtjY=q zLnHH~Fm!cxw|Z?Vw8*~?I$g#9j&uvgm7vPr#&iZgPP~v~BI4jOv;*OQ?jYJtzO<^y z7-#C={r7CO810!^s(MT!@@Vz_SVU)7VBi(e1%1rvS!?PTa}Uv`J!EP3s6Y!xUgM^8 z4f!fq<3Wer_#;u!5ECZ|^c1{|q_lh3m^9|nsMR1#Qm|?4Yp5~|er2?W^7~cl;_r4WSme_o68J9p03~Hc%X#VcX!xAu%1`R!dfGJCp zV*&m47>s^%Ib0~-2f$6oSgn3jg8m%UA;ArcdcRyM5;}|r;)?a^D*lel5C`V5G=c~k zy*w_&BfySOxE!(~PI$*dwG><+-%KT5p?whOUMA*k<9*gi#T{h3DAxzAPxN&Xws8o9Cp*`PA5>d9*Z-ynV# z9yY*1WR^D8|C%I@vo+d8r^pjJ$>eo|j>XiLWvTWLl(^;JHCsoPgem6PvegHb-OTf| zvTgsHSa;BkbG=(NgPO|CZu9gUCGr$8*EoH2_Z#^BnxF0yM~t`|9ws_xZ8X8iZYqh! zAh;HXJ)3P&)Q0(&F>!LN0g#bdbis-cQxyGn9Qgh`q+~49Fqd2epikEUw9caM%V6WgP)532RMRW}8gNS%V%Hx7apSz}tn@bQy!<=lbhmAH=FsMD?leawbnP5BWM0 z5{)@EEIYMu5;u)!+HQWhQ;D3_Cm_NADNeb-f56}<{41aYq8p4=93d=-=q0Yx#knGYfXVt z+kMxlus}t2T5FEyCN~!}90O_X@@PQpuy;kuGz@bWft%diBTx?d)_xWd_-(!LmVrh**oKg!1CNF&LX4{*j|) zIvjCR0I2UUuuEXh<9}oT_zT#jOrJAHNLFT~Ilh9hGJPI1<5`C-WA{tUYlyMeoy!+U zhA#=p!u1R7DNg9u4|QfED-2TuKI}>p#2P9--z;Bbf4Op*;Q9LCbO&aL2i<0O$ByoI z!9;Ght733FC>Pz>$_mw(F`zU?`m@>gE`9_p*=7o=7av`-&ifU(^)UU`Kg3Kw`h9-1 z6`e6+im=|m2v`pN(2dE%%n8YyQz;#3Q-|x`91z?gj68cMrHl}C25|6(_dIGk*8cA3 zRHB|Nwv{@sP4W+YZM)VKI>RlB`n=Oj~Rzx~M+Khz$N$45rLn6k1nvvD^&HtsMA4`s=MmuOJID@$s8Ph4E zAmSV^+s-z8cfv~Yd(40Sh4JG#F~aB>WFoX7ykaOr3JaJ&Lb49=B8Vk-SQT9%7TYhv z?-Pprt{|=Y5ZQ1?od|A<_IJU93|l4oAfBm?3-wk{O<8ea+`}u%(kub(LFo2zFtd?4 zwpN|2mBNywv+d^y_8#<$r>*5+$wRTCygFLcrwT(qc^n&@9r+}Kd_u@Ithz(6Qb4}A zWo_HdBj#V$VE#l6pD0a=NfB0l^6W^g`vm^sta>Tly?$E&{F?TTX~DsKF~poFfmN%2 z4x`Dc{u{Lkqz&y!33;X}weD}&;7p>xiI&ZUb1H9iD25a(gI|`|;G^NwJPv=1S5e)j z;U;`?n}jnY6rA{V^ zxTd{bK)Gi^odL3l989DQlN+Zs39Xe&otGeY(b5>rlIqfc7Ap4}EC?j<{M=hlH{1+d zw|c}}yx88_xQr`{98Z!d^FNH77=u(p-L{W6RvIn40f-BldeF-YD>p6#)(Qzf)lfZj z?3wAMtPPp>vMehkT`3gToPd%|D8~4`5WK{`#+}{L{jRUMt zrFz+O$C7y8$M&E4@+p+oV5c%uYzbqd2Y%SSgYy#xh4G3hQv>V*BnuKQhBa#=oZB~w{azUB+q%bRe_R^ z>fHBilnRTUfaJ201czL8^~Ix#+qOHSO)A|xWLqOxB$dT2W~)e-r9;bm=;p;RjYahB z*1hegN(VKK+ztr~h1}YP@6cfj{e#|sS`;3tJhIJK=tVJ-*h-5y9n*&cYCSdg#EHE# zSIx=r#qOaLJoVVf6v;(okg6?*L_55atl^W(gm^yjR?$GplNP>BZsBYEf_>wM0Lc;T zhf&gpzOWNxS>m+mN92N0{;4uw`P+9^*|-1~$uXpggj4- z^SFc4`uzj2OwdEVT@}Q`(^EcQ_5(ZtXTql*yGzdS&vrS_w>~~ra|Nb5abwf}Y!uq6R5f&6g2ge~2p(%c< z@O)cz%%rr4*cRJ5f`n@lvHNk@lE1a*96Kw6lJ~B-XfJW%?&-y?;E&?1AacU@`N`!O z6}V>8^%RZ7SQnZ-z$(jsX`amu*5Fj8g!3RTRwK^`2_QHe;_2y_n|6gSaGyPmI#kA0sYV<_qOZc#-2BO%hX)f$s-Z3xlI!ub z^;3ru11DA`4heAu%}HIXo&ctujzE2!6DIGE{?Zs>2}J+p&C$rc7gJC35gxhflorvsb%sGOxpuWhF)dL_&7&Z99=5M0b~Qa;Mo!j&Ti_kXW!86N%n= zSC@6Lw>UQ__F&+&Rzv?gscwAz8IP!n63>SP)^62(HK98nGjLY2*e^OwOq`3O|C92? z;TVhZ2SK%9AGW4ZavTB9?)mUbOoF`V7S=XM;#3EUpR+^oHtdV!GK^nXzCu>tpR|89 zdD{fnvCaN^^LL%amZ^}-E+214g&^56rpdc@yv0b<3}Ys?)f|fXN4oHf$six)-@<;W&&_kj z-B}M5U*1sb4)77aR=@%I?|Wkn-QJVuA96an25;~!gq(g1@O-5VGo7y&E_srxL6ZfS z*R%$gR}dyONgju*D&?geiSj7SZ@ftyA|}(*Y4KbvU!YLsi1EDQQCnb+-cM=K1io78o!v*);o<XwjaQH%)uIP&Zm?)Nfbfn;jIr z)d#!$gOe3QHp}2NBak@yYv3m(CPKkwI|{;d=gi552u?xj9ObCU^DJFQp4t4e1tPzM zvsRIGZ6VF+{6PvqsplMZWhz10YwS={?`~O0Ec$`-!klNUYtzWA^f9m7tkEzCy<_nS z=&<(awFeZvt51>@o_~>PLs05CY)$;}Oo$VDO)?l-{CS1Co=nxjqben*O1BR>#9`0^ zkwk^k-wcLCLGh|XLjdWv0_Hg54B&OzCE^3NCP}~OajK-LuRW53CkV~Su0U>zN%yQP zH8UH#W5P3-!ToO-2k&)}nFe`t+mdqCxxAHgcifup^gKpMObbox9LFK;LP3}0dP-UW z?Zo*^nrQ6*$FtZ(>kLCc2LY*|{!dUn$^RW~m9leoF|@Jy|M5p-G~j%+P0_#orRKf8 zvuu5<*XO!B?1E}-*SY~MOa$6c%2cM+xa8}_8x*aVn~57v&W(0mqN1W`5a7*VN{SUH zXz98DDyCnX2EPl-`Lesf`=AQT%YSDb`$%;(jUTrNen$NPJrlpPDP}prI>Ml!r6bCT;mjsg@X^#&<}CGf0JtR{Ecwd&)2zuhr#nqdgHj+g2n}GK9CHuwO zk>oZxy{vcOL)$8-}L^iVfJHAGfwN$prHjYV0ju}8%jWquw>}_W6j~m<}Jf!G?~r5&Rx)!9JNX!ts#SGe2HzobV5); zpj@&`cNcO&q+%*<%D7za|?m5qlmFK$=MJ_iv{aRs+BGVrs)98BlN^nMr{V_fcl_;jkzRju+c-y?gqBC_@J0dFLq-D9@VN&-`R9U;nv$Hg?>$oe4N&Ht$V_(JR3TG^! zzJsbQbi zFE6-{#9{G{+Z}ww!ycl*7rRdmU#_&|DqPfX3CR1I{Kk;bHwF6jh0opI`UV2W{*|nn zf_Y@%wW6APb&9RrbEN=PQRBEpM(N1w`81s=(xQj6 z-eO0k9=Al|>Ej|Mw&G`%q8e$2xVz1v4DXAi8G};R$y)ww638Y=9y$ZYFDM$}vzusg zUf+~BPX>(SjA|tgaFZr_e0{)+z9i6G#lgt=F_n$d=beAt0Sa0a7>z-?vcjl3e+W}+ z1&9=|vC=$co}-Zh*%3588G?v&U7%N1Qf-wNWJ)(v`iO5KHSkC5&g7CrKu8V}uQGcfcz zmBz#Lbqwqy#Z~UzHgOQ;Q-rPxrRNvl(&u6ts4~0=KkeS;zqURz%!-ERppmd%0v>iRlEf+H$yl{_8TMJzo0 z>n)`On|7=WQdsqhXI?#V{>+~}qt-cQbokEbgwV3QvSP7&hK4R{Z{aGHVS3;+h{|Hz z6$Js}_AJr383c_+6sNR|$qu6dqHXQTc6?(XWPCVZv=)D#6_;D_8P-=zOGEN5&?~8S zl5jQ?NL$c%O)*bOohdNwGIKM#jSAC?BVY={@A#c9GmX0=T(0G}xs`-%f3r=m6-cpK z!%waekyAvm9C3%>sixdZj+I(wQlbB4wv9xKI*T13DYG^T%}zZYJ|0$Oj^YtY+d$V$ zAVudSc-)FMl|54n=N{BnZTM|!>=bhaja?o7s+v1*U$!v!qQ%`T-6fBvmdPbVmro&d zk07TOp*KuxRUSTLRrBj{mjsnF8`d}rMViY8j`jo~Hp$fkv9F_g(jUo#Arp;Xw0M$~ zRIN!B22~$kx;QYmOkos@%|5k)!QypDMVe}1M9tZfkpXKGOxvKXB!=lo`p?|R1l=tA zp(1}c6T3Fwj_CPJwVsYtgeRKg?9?}%oRq0F+r+kdB=bFUdVDRPa;E~~>2$w}>O>v=?|e>#(-Lyx?nbg=ckJ#5U6;RT zNvHhXk$P}m9wSvFyU3}=7!y?Y z=fg$PbV8d7g25&-jOcs{%}wTDKm>!Vk);&rr;O1nvO0VrU&Q?TtYVU=ir`te8SLlS zKSNmV=+vF|ATGg`4$N1uS|n??f}C_4Sz!f|4Ly8#yTW-FBfvS48Tef|-46C(wEO_%pPhUC5$-~Y?!0vFZ^Gu`x=m7X99_?C-`|h zfmMM&Y@zdfitA@KPw4Mc(YHcY1)3*1xvW9V-r4n-9ZuBpFcf{yz+SR{ zo$ZSU_|fgwF~aakGr(9Be`~A|3)B=9`$M-TWKipq-NqRDRQc}ABo*s_5kV%doIX7LRLRau_gd@Rd_aLFXGSU+U?uAqh z8qusWWcvgQ&wu{|sRXmv?sl=xc<$6AR$+cl& zFNh5q1~kffG{3lDUdvEZu5c(aAG~+64FxdlfwY^*;JSS|m~CJusvi-!$XR`6@XtY2 znDHSz7}_Bx7zGq-^5{stTRy|I@N=>*y$zz>m^}^{d&~h;0kYiq8<^Wq7Dz0w31ShO^~LUfW6rfitR0(=3;Uue`Y%y@ex#eKPOW zO~V?)M#AeHB2kovn1v=n^D?2{2jhIQd9t|_Q+c|ZFaWt+r&#yrOu-!4pXAJuxM+Cx z*H&>eZ0v8Y`t}8{TV6smOj=__gFC=eah)mZt9gwz>>W$!>b3O;Rm^Ig*POZP8Rl0f zT~o=Nu1J|lO>}xX&#P58%Yl z83`HRs5#32Qm9mdCrMlV|NKNC+Z~ z9OB8xk5HJ>gBLi+m@(pvpw)1(OaVJKs*$Ou#@Knd#bk+V@y;YXT?)4eP9E5{J%KGtYinNYJUH9PU3A}66c>Xn zZ{Bn0<;8$WCOAL$^NqTjwM?5d=RHgw3!72WRo0c;+houoUA@HWLZM;^U$&sycWrFd zE7ekt9;kb0`lps{>R(}YnXlyGY}5pPd9zBpgXeJTY_jwaJGSJQC#-KJqmh-;ad&F- z-Y)E>!&`Rz!HtCz>%yOJ|v(u7P*I$jqEY3}(Z-orn4 zlI?CYKNl`6I){#2P1h)y(6?i;^z`N3bxTV%wNvQW+eu|x=kbj~s8rhCR*0H=iGkSj zk23lr9kr|p7#qKL=UjgO`@UnvzU)`&fI>1Qs7ubq{@+lK{hH* zvl6eSb9%yngRn^T<;jG1SVa)eA>T^XX=yUS@NCKpk?ovCW1D@!=@kn;l_BrG;hOTC z6K&H{<8K#dI(A+zw-MWxS+~{g$tI7|SfP$EYKxA}LlVO^sT#Oby^grkdZ^^lA}uEF zBSj$weBJG{+Bh@Yffzsw=HyChS(dtLE3i*}Zj@~!_T-Ay7z=B)+*~3|?w`Zd)Co2t zC&4DyB!o&YgSw+fJn6`sn$e)29`kUwAc+1MND7YjV%lO;H2}fNy>hD#=gT ze+-aFNpyKIoXY~Vq-}OWPBe?Rfu^{ps8>Xy%42r@RV#*QV~P83jdlFNgkPN=T|Kt7 zV*M`Rh*30&AWlb$;ae130e@}Tqi3zx2^JQHpM>j$6x`#{mu%tZlwx9Gj@Hc92IuY* zarmT|*d0E~vt6<+r?W^UW0&#U&)8B6+1+;k^2|FWBRP9?C4Rk)HAh&=AS8FS|NQaZ z2j!iZ)nbEyg4ZTp-zHwVlfLC~tXIrv(xrP8PAtR{*c;T24ycA-;auWsya-!kF~CWZ zw_uZ|%urXgUbc@x=L=_g@QJ@m#5beS@6W195Hn7>_}z@Xt{DIEA`A&V82bc^#!q8$ zFh?z_Vn|ozJ;NPd^5uu(9tspo8t%&-U9Ckay-s@DnM*R5rtu|4)~e)`z0P-sy?)kc zs_k&J@0&0!q4~%cKL)2l;N*T&0;mqX5T{Qy60%JtKTQZ-xb%KOcgqwJmb%MOOKk7N zgq})R_6**{8A|6H?fO+2`#QU)p$Ei2&nbj6TpLSIT^D$|`TcSeh+)}VMb}LmvZ{O| ze*1IdCt3+yhdYVxcM)Q_V0bIXLgr6~%JS<<&dxIgfL=Vnx4YHuU@I34JXA|+$_S3~ zy~X#gO_X!cSs^XM{yzDGNM>?v(+sF#<0;AH^YrE8smx<36bUsHbN#y57K8WEu(`qHvQ6cAZPo=J5C(lSmUCZ57Rj6cx!e^rfaI5%w}unz}4 zoX=nt)FVNV%QDJH`o!u9olLD4O5fl)xp+#RloZlaA92o3x4->?rB4`gS$;WO{R;Z3>cG3IgFX2EA?PK^M}@%1%A;?f6}s&CV$cIyEr#q5;yHdNZ9h{| z-=dX+a5elJoDo?Eq&Og!nN6A)5yYpnGEp}?=!C-V)(*~z-+?kY1Q7qs#Rsy%hu_60rdbB+QQNr?S1 z?;xtjUv|*E3}HmuNyB9aFL5H~3Ho0UsmuMZELp1a#CA1g`P{-mT?BchuLEtK}!QZ=3AWakRu~?f9V~3F;TV`5%9Pcs_$gq&CcU}r8gOO zC2&SWPsSG{&o-LIGTBqp6SLQZPvYKp$$7L4WRRZ0BR$Kf0I0SCFkqveCp@f)o8W)! z$%7D1R`&j7W9Q9CGus_)b%+B#J2G;l*FLz#s$hw{BHS~WNLODV#(!u_2Pe&tMsq={ zdm7>_WecWF#D=?eMjLj=-_z`aHMZ=3_-&E8;ibPmM}61i6J3is*=dKf%HC>=xbj4$ zS|Q-hWQ8T5mWde6h@;mS+?k=89?1FU<%qH9B(l&O>k|u_aD|DY*@~(`_pb|B#rJ&g zR0(~(68fpUPz6TdS@4JT5MOPrqDh5_H(eX1$P2SQrkvN8sTxwV>l0)Qq z0pzTuvtEAKRDkKGhhv^jk%|HQ1DdF%5oKq5BS>szk-CIke{%js?~%@$uaN3^Uz6Wf z_iyx{bZ(;9y4X&>LPV=L=d+A}7I4GkK0c1Xts{rrW1Q7apHf-))`BgC^0^F(>At1* za@e7{lq%yAkn*NH8Q1{@{lKhRg*^TfGvv!Sn*ed*x@6>M%aaqySxR|oNadYt1mpUZ z6H(rupHYf&Z z29$5g#|0MX#aR6TZ$@eGxxABRKakDYtD%5BmKp;HbG_ZbT+=81E&=XRk6m_3t9PvD zr5Cqy(v?gHcYvYvXkNH@S#Po~q(_7MOuCAB8G$a9BC##gw^5mW16cML=T=ERL7wsk zzNEayTG?mtB=x*wc@ifBCJ|irFVMOvH)AFRW8WE~U()QT=HBCe@s$dA9O!@`zAAT) zaOZ7l6vyR+Nk_OOF!ZlZmjoImKh)dxFbbR~z(cMhfeX1l7S_`;h|v3gI}n9$sSQ>+3@AFAy9=B_y$)q;Wdl|C-X|VV3w8 z2S#>|5dGA8^9%Bu&fhmVRrTX>Z7{~3V&0UpJNEl0=N32euvDGCJ>#6dUSi&PxFW*s zS`}TB>?}H(T2lxBJ!V#2taV;q%zd6fOr=SGHpoSG*4PDaiG0pdb5`jelVipkEk%FV zThLc@Hc_AL1#D&T4D=w@UezYNJ%0=f3iVRuVL5H?eeZM}4W*bomebEU@e2d`M<~uW zf#Bugwf`VezG|^Qbt6R_=U0}|=k;mIIakz99*>FrsQR{0aQRP6ko?5<7bkDN8evZ& zB@_KqQG?ErKL=1*ZM9_5?Pq%lcS4uLSzN(Mr5=t6xHLS~Ym`UgM@D&VNu8e?_=nSFtF$u@hpPSmI4Vo_t&v?>$~K4y(O~Rb*(MFy_igM7 z*~yYUyR6yQgzWnWMUgDov!!g=lInM+=lOmOk4L`O?{i&qxy&D*_qorRbDwj6?)!ef z#JLd7F6Z2I$S0iYI={rZNk*<{HtIl^mx=h>Cim*04K4+Z4IJtd*-)%6XV2(MCscPiw_a+y*?BKbTS@BZ3AUao^%Zi#PhoY9Vib4N>SE%4>=Jco0v zH_Miey{E;FkdlZSq)e<{`+S3W=*ttvD#hB8w=|2aV*D=yOV}(&p%0LbEWH$&@$X3x~CiF-?ejQ*N+-M zc8zT@3iwkdRT2t(XS`d7`tJQAjRmKAhiw{WOqpuvFp`i@Q@!KMhwKgsA}%@sw8Xo5Y=F zhRJZg)O4uqNWj?V&&vth*H#je6T}}p_<>!Dr#89q@uSjWv~JuW(>FqoJ5^ho0%K?E z9?x_Q;kmcsQ@5=}z@tdljMSt9-Z3xn$k)kEjK|qXS>EfuDmu(Z8|(W?gY6-l z@R_#M8=vxKMAoi&PwnaIYw2COJM@atcgfr=zK1bvjW?9B`-+Voe$Q+H$j!1$Tjn+* z&LY<%)L@;zhnJlB^Og6I&BOR-m?{IW;tyYC%FZ!&Z>kGjHJ6cqM-F z&19n+e1=9AH1VrVeHrIzqlC`w9=*zfmrerF?JMzO&|Mmv;!4DKc(sp+jy^Dx?(8>1 zH&yS_4yL7m&GWX~mdfgH*AB4{CKo;+egw=PrvkTaoBU+P-4u?E|&!c z)DKc;>$$B6u*Zr1SjUh2)FeuWLWHl5TH(UHWkf zLs>7px!c5n;rbe^lO@qlYLzlDVp(z?6rPZel=YB)Uv&n!2{+Mb$-vQl=xKw( zve&>xYx+jW_NJh!FV||r?;hdP*jOXYcLCp>DOtJ?2S^)DkM{{Eb zS$!L$e_o0(^}n3tA1R3-$SNvgBq;DOEo}fNc|tB%%#g4RA3{|euq)p+xd3I8^4E&m zFrD%}nvG^HUAIKe9_{tXB;tl|G<%>yk6R;8L2)KUJw4yHJXUOPM>(-+jxq4R;z8H#>rnJy*)8N+$wA$^F zN+H*3t)eFEgxLw+Nw3};4WV$qj&_D`%ADV2%r zJCPCo%{=z7;`F98(us5JnT(G@sKTZ^;2FVitXyLe-S5(hV&Ium+1pIUB(CZ#h|g)u zSLJJ<@HgrDiA-}V_6B^x1>c9B6%~847JkQ!^KLZ2skm;q*edo;UA)~?SghG8;QbHh z_6M;ouo_1rq9=x$<`Y@EA{C%6-pEV}B(1#sDoe_e1s3^Y>n#1Sw;N|}8D|s|VPd+g z-_$QhCz`vLxxrVMx3ape1xu3*wjx=yKSlM~nFgkNWb4?DDr*!?U)L_VeffF<+!j|b zZ$Wn2$TDv3C3V@BHpSgv3JUif8%hk%OsGZ=OxH@8&4`bbf$`aAMchl^qN>Eyu3JH} z9-S!x8-s4fE=lad%Pkp8hAs~u?|uRnL48O|;*DEU! zuS0{cpk%1E0nc__2%;apFsTm0bKtd&A0~S3Cj^?72-*Owk3V!ZG*PswDfS~}2<8le z5+W^`Y(&R)yVF*tU_s!XMcJS`;(Tr`J0%>p=Z&InR%D3@KEzzI+-2)HK zuoNZ&o=wUC&+*?ofPb0a(E6(<2Amd6%uSu_^-<1?hsxs~0K5^f(LsGqgEF^+0_H=uNk9S0bb!|O8d?m5gQjUKevPaO+*VfSn^2892K~%crWM8+6 z25@V?Y@J<9w%@NXh-2!}SK_(X)O4AM1-WTg>sj1{lj5@=q&dxE^9xng1_z9w9DK>| z6Iybcd0e zyi;Ew!KBRIfGPGytQ6}z}MeXCfLY0?9%RiyagSp_D1?N&c{ zyo>VbJ4Gy`@Fv+5cKgUgs~na$>BV{*em7PU3%lloy_aEovR+J7TfQKh8BJXyL6|P8un-Jnq(ghd!_HEOh$zlv2$~y3krgeH;9zC}V3f`uDtW(%mT#944DQa~^8ZI+zAUu4U(j0YcDfKR$bK#gvn_{JZ>|gZ5+)u?T$w7Q%F^;!Wk?G z(le7r!ufT*cxS}PR6hIVtXa)i`d$-_1KkyBU>qmgz-=T};uxx&sKgv48akIWQ89F{ z0XiY?WM^~;|T8zBOr zs#zuOONzH?svv*jokd5SK8wG>+yMC)LYL|vLqm^PMHcT=`}V$=nIRHe2?h)8WQa6O zPAU}d`1y(>kZiP~Gr=mtJLMu`i<2CspL|q2DqAgAD^7*$xzM`PU4^ga`ilE134XBQ z99P(LhHU@7qvl9Yzg$M`+dlS=x^(m-_3t|h>S}E0bcFMn=C|KamQ)=w2^e)35p`zY zRV8X?d;s^>Cof2SPR&nP3E+-LCkS0J$H!eh8~k0qo$}00b=7!H_I2O+Ro@3O$nPdm ztmbOO^B+IHzQ5w>@@@J4cKw5&^_w6s!s=H%&byAbUtczPQ7}wfTqxxtQNfn*u73Qw zGuWsrky_ajPx-5`R<)6xHf>C(oqGf_Fw|-U*GfS?xLML$kv;h_pZ@Kk$y0X(S+K80 z6^|z)*`5VUkawg}=z`S;VhZhxyDfrE0$(PMurAxl~<>lfZa>JZ288ULK7D` zl9|#L^JL}Y$j*j`0-K6kH#?bRmg#5L3iB4Z)%iF@SqT+Lp|{i`m%R-|ZE94Np7Pa5 zCqC^V3}B(FR340pmF*qaa}M}+h6}mqE~7Sh!9bDv9YRT|>vBNAqv09zXHMlcuhKD| zcjjA(b*XCIwJ33?CB!+;{)vX@9xns_b-VO{i0y?}{!sdXj1GM8+$#v>W7nw;+O_9B z_{4L;C6ol?(?W0<6taGEn1^uG=?Q3i29sE`RfYCaV$3DKc_;?HsL?D_fSYg}SuO5U zOB_f4^vZ_x%o`5|C@9C5+o=mFy@au{s)sKw!UgC&L35aH(sgDxRE2De%(%OT=VUdN ziVLEmdOvJ&5*tCMKRyXctCwQu_RH%;m*$YK&m;jtbdH#Ak~13T1^f89tn`A%QEHWs~jnY~E}p_Z$XC z=?YXLCkzVSK+Id`xZYTegb@W8_baLt-Fq`Tv|=)JPbFsKRm)4UW;yT+J`<)%#ue9DPOkje)YF2fsCilK9MIIK>p*`fkoD5nGfmLwt)!KOT+> zOFq*VZktDDyM3P5UOg`~XL#cbzC}eL%qMB=Q5$d89MKuN#$6|4gx_Jt0Gfn8w&q}%lq4QU%6#jT*MRT% zrLz~C8FYKHawn-EQWN1B75O&quS+Z81(zN)G>~vN8VwC+e+y(`>HcxC{MrJ;H1Z4k zZWuv$w_F0-Ub%MVcpIc){4PGL^I7M{>;hS?;eH!;gmcOE66z3;Z1Phqo(t zVP(Hg6q#0gIKgsg7L7WE!{Y#1nI(45tx2{$34dDd#!Z0NIyrm)HOn5W#7;f4pQci# zDW!FI(g4e668kI9{2+mLwB+=#9bfqgX%!B34V-$wwSN(_cm*^{y0jQtv*4}eO^sOV z*9xoNvX)c9isB}Tgx&ZRjp3kwhTVK?r9;n!x>^XYT z@Q^7zp{rkIs{2mUSE^2!Gf6$6;j~&4=-0cSJJDizZp6LTe8b45;{AKM%v99}{{FfC zz709%u0mC=1KXTo(=TqmZQ;c?$M3z(!xah>aywrj40sc2y3rKFw4jCq+Y+u=CH@_V zxz|qeTwa>+<|H%8Dz5u>ZI5MmjTFwXS-Fv!TDd*`>3{krWoNVx$<133`(ftS?ZPyY z&4@ah^3^i`vL$BZa>O|Nt?ucewzsF)0zX3qmM^|waXr=T0pfIb0*$AwU=?Ipl|1Y; z*Pk6{C-p4MY;j@IJ|DW>QHZQJcp;Z~?8(Q+Kk3^0qJ}SCk^*n4W zu9ZFwLHUx-$6xvaQ)SUQcYd6fF8&x)V`1bIuX@>{mE$b|Yd(qomn3;bPwnDUc0F=; zh*6_((%bqAYQWQ~odER?h>1mkL4kpb3s7`0m@rDKGU*oyF)$j~Ffd4fXV$?`f~rHf zB%Y)@5SXZvfwm10RY5X?TEo)PK_`L6qgBp=#>fO49$D zDq8Ozj0q6213tV5Qq=;fZ0$|KroY{Dz=l@lU^J)?Ko@ti20TRplXzphBi>XGx4bou zEWrkNjz0t5j!_ke{g5I#PUlEU$Km8g8TE|XK=MkU@PT4T><2OVamoK;wJ}3X0L$vX zgd7gNa359*nc)R-0!`2X@FOTB`+oETOPc=ubp5R)VQgY+5BTZZJ2?9QwnO=dnulIUF3gFn;BODC2)65)HeVd%t86sL7Rv^Y+nbn+&l z6BAJY(ETvwI)Ts$aiE8rht4KD*qNyE{8{x6R|%akbTBzw;2+6Echkt+W+`u^XX z_z&x%n5IFJ|DjL!e)upfGNX(kojugZ3I`oH1PvW`wFW_ske0j@lB9bX zO;2)`y+|!@X(fZ1<2n!Qx*)_^Ai@Cv-dF&(vnudG?0CsddG_&Wtae(n|K59ew)6St z#dj7_(Cfwzh$H$5M!$UDd8=4>IQsD3xV=lXUq($;(h*$0^yd+b{qq63f0r_de#!o_ zXDngc>zy`uor)4A^2M#U*DC~i+dc<)Tb1Tv&~Ev@oM)5iJ4Sn#8iRw16XXuV50BS7 zdBL5Mefch(&^{luE{*5qtCZk$oFr3RH=H!c3wGR=HJ(yKc_re_X9pD` zJ;uxPzUfVpgU>DSq?J;I@a+10l0ONXPcDkiYcihREt5~T5Gb}sT0+6Q;AWHl`S5dV>lv%-p9l#xNNy7ZCr%cyqHY%TZ8Q4 zbp&#ov1*$#grNG#1vgfFOLJCaNG@K|2!W&HSh@3@Y%T?3YI75bJp!VP*$*!< z;(ffNS_;@RJ`=c7yX04!u3JP*<8jeqLHVJu#WV&v6wA!OYJS4h<_}^QI&97-;=ojW zQ-1t)7wnxG*5I%U4)9$wlv5Fr;cIizft@&N+32O%B{R1POm$oap@&f| zh+5J{>U6ftv|vAeKGc|zC=kO(+l7_cLpV}-D#oUltScw})N>~JOZLU_0{Ka2e1evz z{^a*ZrLr+JUj;)K&u2CoCAXLC2=fVScI(m_p~0FmF>>&3DHziouln?;sxW`NB}cSX z8?IsJB)Z=aYRz!X=yJn$kyOWK%rCYf-YarNqKzmWu$ZvkP12b4qH zhS9Q>j<}(*frr?z<%9hl*i^#@*O2q(Z^CN)c2c z>1B~D;@YpG?G!Yk+*yn4vM4sO-_!&m6+`k|3zd;8DJnxsBYtI;W3We+FN@|tQ5EW= z!VU>jtim0Mw#iaT8t_<+qKIEB-WwE04lBd%Letbml9N!?SLrEG$nmn7&W(W`VB@5S zaY=sEw2}i@F_1P4OtEw?xj4@D6>_e=m=797#hg}f*l^`AB|Y0# z9=)o|%TZFCY$SzgSjS|8AI-%J4x}J)!IMxY3_KYze`_I=c1nmrk@E8c9?MVRu)7+Ue79|)rBX7tVB7U|w4*h(;Gi3D9le49B38`wuv zp7{4X^p+K4*$@gU(Tq3K1a#3SmYhvI42)GzG4f|u zwQFT1n_=n|jpi=70-yE9LA+d*T8u z`=VmmXJ_f6WmZveZPct$Cgu^~gFiyL>Lnpj*6ee>*0pz=t$IJ}+rE zsf@>jlcG%Wx;Cp5x)YSVvB1$yyY1l&o zvwX=D7k)Dn;ciX?Z)Pn8$flC8#m`nB&(8?RSdBvr?>T9?E$U3uIX7T?$v4dWCa46 z+&`ot8ZTEgp7G+c52oHJ8nw5}a^dwb_l%MOh(ebVj9>_koQP^$2B~eUfSbw9RY$_< z&DDWf2LW;b0ZDOaZ&2^i^g+5uTd;GwO(-bbo|P^;CNL-%?9mRmxEw~5&z=X^Rvbo^WJW=n_%*7974RY}JhFv46> zd}`2|qkd;89l}R;i~9T)V-Q%K)O=yfVKNM4Gbacc7AOd>#^&W&)Xx!Uy5!BHnp9kh z`a(7MO6+Ren#>R^D0K)1sE{Bv>}s6Rb9MT14u!(NpZOe-?4V=>qZ>}uS)!y~;jEUK z&!U7Fj&{WdgU#L0%bM}SYXRtM5z!6M+kgaMKt%3FkjWYh=#QUpt$XX1!*XkpSq-pl zhMe{muh#knk{9_V3%qdDcWDv}v)m4t9 zQhv{;} zc{}#V^N3H>9mFM8`i`0p+fN@GqX+kl|M94$BK3J-X`Hyj8r!#x6Vt(PXjn?N)qedP z=o1T^#?1^a{;bZ&x`U{f?}TMo8ToN zkHj5v|}r}wDEi7I@)Gj+S1aE-GdnLN+$hw!=DzglMaj#{qjXi_dwpr|HL(gcCXwGLEmi|{4&4#OZ4ChceA zKVd4K!D>_N=_X;{poT~4Q+!Le+ZV>=H7v1*l%w`|`Dx8{)McN@NDlQyln&N3@bFpV z_1w~O4EH3fF@IzJ9kDk@7@QctFq8FbkbaH7K$iX=bV~o#gfh?2JD6lZf(XP>~DACF)fGFt)X%-h1yY~MJU{nA5 ze2zxWMs{YdX3q5XU*9hOH0!_S24DOBA5usB+Ws$6{|AMe*joJ?RxfV}*7AKN9V*~J zK+OMcE@bTD>TG1*yc?*qGqjBN8mgg@h1cJLDv)0!WRPIkC` zZrWXrceVw;fB%3`6kq=a!pq|hFIsQ%ZSlo~)D z|64!aCnw-?>}AG|*iOl44KVf8@|joXi&|)1rB;EQWgm+iHfVbgllP$f!$Wf42%NO5b(j9Bw6L z;0dpUUK$5GX4QbMlTmLM_jJt!ur`_0~$b#BB7FL*%XFf<b__1o)Ao3rlobbN8-(T!1d-bR8D3S0@d zLI!*GMb5s~Q<&sjd}lBb8Nr0>PqE6_!3!2d(KAWFxa{hm`@u|a(%#i(#f8{BP2wbs zt+N_slWF4IF_O|{w`c~)Xvh&R{Au~CFmW#0+}MBd2~X}t9lz6*E7uAD`@EBDe$>7W zzPUkJx<`f$0VA$=>R57^(K^h86>09?>_@M(R4q($!Ck6GG@pnu-x*exAx1jOv|>KH zjNfG5pwm`E-=ydcb+3BJwuU;V&OS=6yM^4Jq{%AVqnTTLwV`AorIDD}T&jWr8pB&j28fVtk_y*JRP^t@l*($UZ z6(B^-PBNZ+z!p?+e8@$&jCv^EWLb$WO=}Scr$6SM*&~B95El~;W_0(Bvoha|uQ1T< zO$%_oLAwf1bW*rKWmlD+@CP&$ObiDy=nh1b2ejz%LO9937N{LDe7gle4i!{}I$;&Y zkexJ9Ybr+lrCmKWg&}p=`2&Gf10orS?4$VrzWidT=*6{KzOGMo?KI0>GL0{iFWc;C z+LPq%VH5g}6V@-tg2m{C!-$fapJ9y}c$U}aUmS{9#0CM*8pC|sfer!)nG7Ji>mfRh z+~6CxNb>6eWKMHBz-w2{mLLwdA7dA-qfTu^A2yG1+9s5k zcF=le_UPYG&q!t5Zd_*E_P3Cf5T6821bO`daa`;DODm8Ih8k89=RN;-asHIigj`n=ux>*f!OC5#;X5i;Q z+V!GUy0|&Y_*8k_QRUA8$lHP;GJ3UUD08P|ALknng|YY13)}!!HW@0z$q+kCH%xet zlWf@BXQ=b=4}QO5eNnN~CzWBbHGUivG=`&eWK}beuV*;?zt=P#pM*eTuy3 zP}c#}AXJ0OIaqXji78l;YrP4sQe#^pOqwZUiiN6^0RCd#D271XCbEKpk`HI0IsN^s zES7YtU#7=8gTn#lkrc~6)R9u&SX6*Jk4GFX7){E)WE?pT8a-%6P+zS6o&A#ml{$WX zABFz#i7`DDlo{34)oo?bOa4Z_lNH>n;f0nbt$JfAl~;4QY@}NH!X|A$KgMmEsd^&Y zt;pi=>AID7ROQfr;MsMtClr5b0)xo|fwhc=qk33wQ|}$@?{}qXcmECh>#kUQ-If0$ zseb{Wf4VFGLNc*Rax#P8ko*=`MwaR-DQ8L8V8r=2N{Gaips2_^cS|oC$+yScRo*uF zUO|5=?Q?{p$inDpx*t#Xyo6=s?bbN}y>NNVxj9NZCdtwRI70jxvm3!5R7yiWjREEd zDUjrsZhS|P&|Ng5r+f^kA6BNN#|Se}_GF>P6sy^e8kBrgMv3#vk%m}9PCwUWJg-AD zFnZ=}lbi*mN-AOm zCs)r=*YQAA!`e#1N>aHF=bb*z*hXH#Wl$z^o}x##ZrUc=kh%OHWhp=7;?8%Xj||@V?1c ziWoaC$^&04;A|T)!Zd9sUzE&$ODyJaBpvqsw19Uiuq{i#VK1!htkdRWBnb z`{rat=nHArT%^R>u#CjjCkw-7%g53|&7z-;X+ewb?OLWiV|#nuc8mp*LuGSi3IP<<*Wyo9GKV7l0Noa4Jr0g3p_$ z*R9{qn=?IXC#WU>48-k5V2Oc_>P;4_)J@bo1|pf=%Rcbgk=5m)CJZ`caHBTm3%!Z9 z_?7LHr_BXbKKr=JD!%?KhwdYSdu8XxPoA{n8^%_lh5cjRHuCY9Zlpz8g+$f@bw@0V z+6DRMT9c|>1^3D|$Vzc(C?M~iZurGH2pXPT%F!JSaAMdO%!5o0uc&iqHx?ImcX6fI zCApkzc~OOnfzAd_+-DcMp&AOQxE_EsMqKM{%dRMI5`5CT&%mQO?-@F6tE*xL?aEGZ z8^wH@wRl`Izx4sDmU>}Ym{ybUm@F83qqZPD6nFm?t?(7>h*?`fw)L3t*l%*iw0Qu#?$5eq!Qc zpQvqgSxrd83NsdO@lL6#{%lsYXWen~d3p4fGBb7&5xqNYJ)yn84!e1PmPo7ChVd%4 zHUsV0Mh?VpzZD=A6%)Qrd~i7 z96*RPbid;BN{Wh?adeD_p8YU``kOrGkNox3D9~!K?w>#kFz!4lzOWR}puS(DmfjJD z`x0z|qB33*^0mZdM&6$|+T>fq>M%yoy(BEjuh9L0>{P&XJ3enGpoQRx`v6$txXt#c z0#N?b5%srj(4xmPvJxrlF3H%OMB!jvfy z;wx8RzU~lb?h_}@V=bh6p8PSb-dG|-T#A?`c&H2`_!u+uenIZe`6f~A7r)`9m8atC zt(b|6Eg#!Q*DfRU=Ix`#B_dK)nnJ_+>Q<1d7W)eynaVn`FNuN~%B;uO2}vXr5^zi2 z!ifIF5@Zlo0^h~8+ixFBGqtweFc`C~JkSq}&*a3C}L?b5Mh-bW=e)({F_g4O3 zb@SFTK3VD9QuFgFnK4Ve_pXc3{S$=+Z;;4+;*{H}Rc;845rP?DLK6G5Y-xdUKkA6E3Dz&5f{F^FjJQ(NSpZ8q-_!L3LL@H* zxbDF{gd^U3uD;)a)sJwAVi}7@%pRM&?5IaUH%+m{E)DlA_$IA1=&jr{KrhD5q&lTC zAa3c)A(K!{#nOvenH6XrR-y>*4M#DpTTOGQEO5Jr6kni9pDW`rvY*fs|ItV;CVITh z=`rxcH2nEJpkQ^(;1c^hfb8vGN;{{oR=qNyKtR1;J>CByul*+=`NydWnSWJR#I2lN zTvgnR|MBx*XFsfdA&;tr^dYaqRZp*2NwkAZE6kV@1f{76e56eUmGrZ>MDId)oqSWw z7d&r3qfazg+W2?bT}F)4jD6sWaw`_fXZGY&wnGm$FRPFL$HzVTH^MYBHWGCOk-89y zA+n+Q6EVSSCpgC~%uHfvyg@ufE^#u?JH?<73A}jj5iILz4Qqk5$+^U(SX(-qv5agK znUkfpke(KDn~dU0>gdKqjTkVk`0`9^0n_wzXO7R!0Thd@S;U`y)VVP&mOd-2 z(hT(|$=>4FY;CBY9#_lB$;|Wd$aOMT5O_3}DYXEHn&Jrc3`2JiB`b6X@EUOD zVl0S{ijm65@n^19T3l%>*;F(?3r3s?zY{thc4%AD30CeL_4{8x6&cN}zN3fE+x<9; zt2j1RRVy5j22-8U8a6$pyT+<`f+x2l$fd_{qEp_bfxfzu>ORJsXaJn4>U6oNJ#|~p z`*ZC&NPXl&=vq2{Ne79AkQncuxvbOG+28*2wU$R=GOmns3W@HE%^r)Fu%Utj=r9t` zd;SVOnA(=MXgnOzI2@3SGKHz8HN~Vpx&!Ea+Df~`*n@8O=0!b4m?7cE^K*~@fqv9q zF*uk#1@6Re_<^9eElgJD!nTA@K9C732tV~;B`hzZ321Ph=^BH?zXddiu{Du5*IPg} zqDM=QxjT!Rp|#Bkp$(mL)aar)f(dOAXUiw81pX0DC|Y4;>Vz>>DMshoips^8Frdv} zlTD=cKa48M>dR<>(YlLPOW%rokJZNF2gp8fwc8b2sN+i6&-pHr?$rj|uFgktK@jg~ zIFS(%=r|QJ=$kvm_~@n=ai1lA{7Z}i+zj&yzY+!t$iGUy|9jH#&oTNJ;JW-3n>DF+ z3aCOzqn|$X-Olu_p7brzn`uk1F*N4@=b=m;S_C?#hy{&NE#3HkATrg?enaVGT^$qIjvgc61y!T$9<1B@?_ibtDZ{G zeXInVr5?OD_nS_O|CK3|RzzMmu+8!#Zb8Ik;rkIAR%6?$pN@d<0dKD2c@k2quB%s( zQL^<_EM6ow8F6^wJN1QcPOm|ehA+dP(!>IX=Euz5qqIq}Y3;ibQtJnkDmZ8c8=Cf3 zu`mJ!Q6wI7EblC5RvP*@)j?}W=WxwCvF3*5Up_`3*a~z$`wHwCy)2risye=1mSp%p zu+tD6NAK3o@)4VBsM!@);qgsjgB$kkCZhaimHg&+k69~drbvRTacWKH;YCK(!rC?8 zP#cK5JPHSw;V;{Yji=55X~S+)%(8fuz}O>*F3)hR;STU`z6T1aM#Wd+FP(M5*@T1P z^06O;I20Sk!bxW<-O;E081KRdHZrtsGJflFRRFS zdi5w9OVDGSL3 zNrC7GVsGN=b;YH9jp8Z2$^!K@h=r-xV(aEH@#JicPy;A0k1>g1g^XeR`YV2HfmqXY zYbRwaxHvf}OlCAwHoVI&QBLr5R|THf?nAevV-=~V8;gCsX>jndvNOcFA+DI+zbh~# zZ7`qNk&w+_+Yp!}j;OYxIfx_{f0-ONc?mHCiCUak=>j>~>YR4#w# zuKz~UhT!L~GfW^CPqG8Lg)&Rc6y^{%3H7iLa%^l}cw_8UuG;8nn9)kbPGXS}p3!L_ zd#9~5CrH8xtUd?{d2y^PJg+z(xIfRU;`}^=OlehGN2=?}9yH$4Rag}*+AWotyxfCJ zHx=r7ZH>j2kV?%7WTtp+-HMa0)_*DBBmC{sd$)np&GEJ__kEd`xB5a2A z*J+yx>4o#ZxwA{;NjhU*1KT~=ZK~GAA;KZHDyBNTaWQ1+;tOFFthnD)DrCn`DjBZ% zk$N5B4^$`n^jNSOr=t(zi8TN4fpaccsb`zOPD~iY=UEK$0Y70bG{idLx@IL)7^(pL z{??Bnu=lDeguDrd%qW1)H)H`9otsOL-f4bSu};o9OXybo6J!Lek`a4ff>*O)BDT_g z<6@SrI|C9klY(>_PfA^qai7A_)VNE4c^ZjFcE$Isp>`e5fLc)rg@8Q_d^Uk24$2bn z9#}6kZ2ZxS9sI(RqT7?El2@B+($>eBQrNi_k#CDJ8D9}8$mmm z4oSKO^F$i+NG)-HE$O6s1--6EzJa?C{x=QgK&c=)b(Q9OVoAXYEEH20G|q$}Hue%~ zO3B^bF=t7t48sN zWh_zA`w~|){-!^g?6Mqf6ieV zFx~aPUOJGR=4{KsW7I?<=J2|lY`NTU=lt=%JE9H1vBpkcn=uq(q~=?iBt_-r(PLBM zP-0dxljJO>4Wq-;stY)CLB4q`-r*T$!K2o}?E-w_i>3_aEbA^MB7P5piwt1dI-6o!qWCy0 ztYy!x9arGTS?kabkkyv*yxvsPQ7Vx)twkS6z2T@kZ|kb8yjm+^$|sEBmvACeqbz)RmxkkDQX-A*K!YFziuhwb|ym>C$}U|J)4y z$(z#)GH%uV6{ec%Zy~AhK|+GtG8u@c884Nq%w`O^wv2#A(&xH@c5M`Vjk*SR_tJnq z0trB#aY)!EKW_}{#L3lph5ow=@|D5LzJYUFD6 z7XnUeo_V0DVSIKMFD_T0AqAO|#VFDc7c?c-Q%#u00F%!_TW1@JVnsfvm@_9HKWflBOUD~)RL``-!P;(bCON_4eVdduMO>?IrQ__*zE@7(OX zUtfH@AX*53&xJW*Pu9zcqxGiM>xol0I~QL5B%Toog3Jlenc^WbVgeBvV8C8AX^Vj& z^I}H})B=VboO%q1;aU5ACMh{yK4J;xlMc`jCnZR^!~LDs_MP&8;dd@4LDWw~*>#OT zeZHwdQWS!tt5MJQI~cw|Ka^b4c|qyd_ly(+Ql2m&AAw^ zQeSXDOOH!!mAgzAp0z)DD>6Xo``b6QwzUV@w%h}Yo>)a|xRi$jGuHQhJVA%>)PUvK zBQ!l0hq<3VZ*RnrDODP)>&iS^wf64C;MGqDvx>|p;35%6(u+IHoNbK z;Gb;TneFo*`zUKS6kwF*&b!U8e5m4YAo03a_e^!5BP42+r)LFhEy?_7U1IR<; z^0v|DhCYMSj<-;MtY%R@Fg;9Kky^pz_t2nJfKWfh5Eu@_l{^ph%1z{jkg5jQrkvD< z#vdK!nku*RrH~TdN~`wDs;d>XY1PH?O<4^U4lmA|wUW{Crrv#r%N>7k#{Gc44Fr|t z@UZP}Y-TrAmnEZ39A*@6;ccsR>)$A)S>$-Cj!=x$rz7IvjHIPM(TB+JFf{ehuIvY$ zsDAwREg*%|=>Hw$`us~RP&3{QJg%}RjJKS^mC_!U;E5u>`X`jW$}P`Mf}?7G7FX#{ zE(9u1SO;3q@ZhDL9O({-RD+SqqPX)`0l5IQu4q)49TUTkxR(czeT}4`WV~pV*KY&i zAl3~X%D2cPVD^B43*~&f%+Op)wl<&|D{;=SZwImydWL6@_RJjxP2g)s=dH)u9Npki zs~z9A+3fj0l?yu4N0^4aC5x)Osnm0qrhz@?nwG_`h(71P znbIewljU%T*cC=~NJy|)#hT+lx#^5MuDDnkaMb*Efw9eThXo|*WOQzJ*#3dmRWm@! zfuSc@#kY{Um^gBc^_Xdxnl!n&y&}R4yAbK&RMc+P^Ti;YIUh|C+K1|=Z^{nZ}}rxH*v{xR!i%qO~o zTr`WDE@k$M9o0r4YUFFeQO7xCu_Zgy)==;fCJ94M_rLAv&~NhfvcLWCoaGg2ao~3e zBG?Ms9B+efMkp}7BhmISGWmJsKI@a8b}4lLI48oWKY|8?zuuNc$lt5Npr+p7a#sWu zh!@2nnLBVJK!$S~>r2-pN||^w|fY`CT{TFnJy`B|e5;=+_v4l8O-fkN&UQbA4NKTyntd zqK{xEKh}U{NHoQUf!M=2(&w+eef77VtYr;xs%^cPfKLObyOV_9q<(%76-J%vR>w9!us-0c-~Y?_EVS%v!* z15s2s3eTs$Osz$JayyH|5nPAIPEX=U;r&p;K14G<1)bvn@?bM5kC{am|C5%hyxv}a z(DeSKI5ZfZ1*%dl8frIX2?);R^^~LuDOpNpk-2R8U1w92HmG1m&|j&J{EK=|p$;f9 z7Rs5|jr4r8k5El&qcuM+YRlKny%t+1CgqEWO>3;BSRZi(LA3U%Jm{@{y+A+w(gzA< z7dBq6a1sEWa4cD0W7=Ld9z0H7RI^Z7vl(bfA;72j?SWCo`#5mVC$l1Q2--%V)-uN* z9ha*s-AdfbDZ8R8*fpwjzx=WvOtmSzGFjC#X)hD%Caeo^OWjS(3h|d9_*U)l%{Ab8 zfv$yoP{OuUl@$(-sEVNt{*=qi5P=lpxWVuz2?I7Dc%BRc+NGNw+323^ z5BXGfS71oP^%apUo(Y#xkxE)y?>BFzEBZ}UBbr~R4$%b7h3iZu3S(|A;&HqBR{nK& z$;GApNnz=kNO^FL&nYcfpB7Qg;hGJPsCW44CbkG1@l9pn0`~oKy5S777uH)l{irK!ru|X+;4&0D;VE*Ii|<3P zUx#xUqvZT5kVQxsF#~MwKnv7;1pR^0;PW@$@T7I?s`_rD1EGUdSA5Q(C<>5SzE!vw z;{L&kKFM-MO>hy#-8z`sdVx})^(Dc-dw;k-h*9O2_YZw}|9^y-|8RQ`BWJUJL(Cer zP5Z@fNc>pTXABbTRY-B5*MphpZv6#i802giwV&SkFCR zGMETyUm(KJbh+&$8X*RB#+{surjr;8^REEt`2&Dubw3$mx>|~B5IKZJ`s_6fw zKAZx9&PwBqW1Oz0r0A4GtnZd7XTKViX2%kPfv+^X3|_}RrQ2e3l=KG_VyY`H?I5&CS+lAX5HbA%TD9u6&s#v!G> zzW9n4J%d5ye7x0y`*{KZvqyXUfMEE^ZIffzI=Hh|3J}^yx7eL=s+TPH(Q2GT-sJ~3 zI463C{(ag7-hS1ETtU;_&+49ABt5!A7CwLwe z=SoA8mYZIQeU;9txI=zcQVbuO%q@E)JI+6Q!3lMc=Gbj(ASg-{V27u>z2e8n;Nc*pf}AqKz1D>p9G#QA+7mqqrEjGfw+85Uyh!=tTFTv3|O z+)-kFe_8FF_EkTw!YzwK^Hi^_dV5x-Ob*UWmD-})qKj9@aE8g240nUh=g|j28^?v7 zHRTBo{0KGaWBbyX2+lx$wgXW{3aUab6Bhm1G1{jTC7ota*JM6t+qy)c5<@ zpc&(jVdTJf(q3xB=JotgF$X>cxh7k*(T`-V~AR+`%e?YOeALQ2Qud( zz35YizXt(aW3qndR}fTw1p()Ol4t!D1pitGNL95{SX4ywzh0SF;=!wf=?Q?_h6!f* zh7<+GFi)q|XBsvXZ^qVCY$LUa{5?!CgwY?EG;*)0ceFe&=A;!~o`ae}Z+6me#^sv- z1F6=WNd6>M(~ z+092z>?Clrcp)lYNQl9jN-JF6n&Y0mp7|I0dpPx+4*RRK+VQI~>en0Dc;Zfl+x z_e_b7s`t1_A`RP3$H}y7F9_na%D7EM+**G_Z0l_nwE+&d_kc35n$Fxkd4r=ltRZhh zr9zER8>j(EdV&Jgh(+i}ltESBK62m0nGH6tCBr90!4)-`HeBmz54p~QP#dsu%nb~W z7sS|(Iydi>C@6ZM(Us!jyIiszMkd)^u<1D+R@~O>HqZIW&kearPWmT>63%_t2B{_G zX{&a(gOYJx!Hq=!T$RZ&<8LDnxsmx9+TBL0gTk$|vz9O5GkK_Yx+55^R=2g!K}NJ3 zW?C;XQCHZl7H`K5^BF!Q5X2^Mj93&0l_O3Ea3!Ave|ixx+~bS@Iv18v2ctpSt4zO{ zp#7pj!AtDmti$T`e9{s^jf(ku&E|83JIJO5Qo9weT6g?@vX!{7)cNwymo1+u(YQ94 zopuz-L@|5=h8A!(g-MXgLJC0MA|CgQF8qlonnu#j z;uCeq9ny9QSD|p)9sp3ebgY3rk#y0DA(SHdh$DUm^?GI<>%e1?&}w(b zdip1;P2Z=1wM+$q=TgLP$}svd!vk+BZ@h<^4R=GS2+sri7Z*2f`9 z5_?i)xj?m#pSVchk-SR!2&uNhzEi+#5t1Z$o0PoLGz*pT64%+|Wa+rd5Z}60(j?X= z{NLjtgRb|W?CUADqOS@(*MA-l|E342NxRaxLTDqsOyfWWe%N(jjBh}G zm7WPel6jXijaTiNita+z(5GCO0NM=Melxud57PP^d_U## zbA;9iVi<@wr0DGB8=T9Ab#2K_#zi=$igyK48@;V|W`fg~7;+!q8)aCOo{HA@vpSy-4`^!ze6-~8|QE||hC{ICKllG9fbg_Y7v z$jn{00!ob3!@~-Z%!rSZ0JO#@>|3k10mLK0JRKP-Cc8UYFu>z93=Ab-r^oL2 zl`-&VBh#=-?{l1TatC;VweM^=M7-DUE>m+xO7Xi6vTEsReyLs8KJ+2GZ&rxw$d4IT zPXy6pu^4#e;;ZTsgmG+ZPx>piodegkx2n0}SM77+Y*j^~ICvp#2wj^BuqRY*&cjmL zcKp78aZt>e{3YBb4!J_2|K~A`lN=u&5j!byw`1itV(+Q_?RvV7&Z5XS1HF)L2v6ji z&kOEPmv+k_lSXb{$)of~(BkO^py&7oOzpjdG>vI1kcm_oPFHy38%D4&A4h_CSo#lX z2#oqMCTEP7UvUR3mwkPxbl8AMW(e{ARi@HCYLPSHE^L<1I}OgZD{I#YH#GKnpRmW3 z2jkz~Sa(D)f?V?$gNi?6)Y;Sm{&?~2p=0&BUl_(@hYeX8YjaRO=IqO7neK0RsSNdYjD zaw$g2sG(>JR=8Iz1SK4`*kqd_3-?;_BIcaaMd^}<@MYbYisWZm2C2|Np_l|8r9yM|JkUngSo@?wci(7&O9a z%|V(4C1c9pps0xxzPbXH=}QTxc2rr7fXk$9`a6TbWKPCz&p=VsB8^W96W=BsB|7bc zf(QR8&Ktj*iz)wK&mW`#V%4XTM&jWNnDF56O+2bo<3|NyUhQ%#OZE8$Uv2a@J>D%t zMVMiHh?es!Ex19q&6eC&L=XDU_BA&uR^^w>fpz2_`U87q_?N2y;!Z!bjoeKrzfC)} z?m^PM=(z{%n9K`p|7Bz$LuC7!>tFOuN74MFELm}OD9?%jpT>38J;=1Y-VWtZAscaI z_8jUZ#GwWz{JqvGEUmL?G#l5E=*m>`cY?m*XOc*yOCNtpuIGD+Z|kn4Xww=BLrNYS zGO=wQh}Gtr|7DGXLF%|`G>J~l{k^*{;S-Zhq|&HO7rC_r;o`gTB7)uMZ|WWIn@e0( zX$MccUMv3ABg^$%_lNrgU{EVi8O^UyGHPNRt%R!1#MQJn41aD|_93NsBQhP80yP<9 zG4(&0u7AtJJXLPcqzjv`S~5;Q|5TVGccN=Uzm}K{v)?f7W!230C<``9(64}D2raRU zAW5bp%}VEo{4Rko`bD%Ehf=0voW?-4Mk#d3_pXTF!-TyIt6U+({6OXWVAa;s-`Ta5 zTqx&8msH3+DLrVmQOTBOAj=uoxKYT3DS1^zBXM?1W+7gI!aQNPYfUl{3;PzS9*F7g zWJN8x?KjBDx^V&6iCY8o_gslO16=kh(|Gp)kz8qlQ`dzxQv;)V&t+B}wwdi~uBs4? zu~G|}y!`3;8#vIMUdyC7YEx6bb^1o}G!Jky4cN?BV9ejBfN<&!4M)L&lRKiuMS#3} z_B}Nkv+zzxhy{dYCW$oGC&J(Ty&7%=5B$sD0bkuPmj7g>|962`(Q{ZZMDv%YMuT^KweiRDvYTEop3IgFv#)(w>1 zSzH>J`q!LK)c(AK>&Ib)A{g`Fdykxqd`Yq@yB}E{gnQV$K!}RsgMGWqC3DKE(=!{}ekB3+(1?g}xF>^icEJbc z5bdxAPkW90atZT+&*7qoLqL#p=>t-(-lsnl2XMpZcYeW|o|a322&)yO_8p(&Sw{|b zn(tY$xn5yS$DD)UYS%sP?c|z>1dp!QUD)l;aW#`%qMtQJjE!s2z`+bTSZmLK7SvCR z=@I4|U^sCwZLQSfd*ACw9B@`1c1|&i^W_OD(570SDLK`MD0wTiR8|$7+%{cF&){$G zU~|$^Ed?TIxyw{1$e|D$050n8AjJvvOWhLtLHbSB|HIfjMp+gu>DraHZJRrdO53(= z+o-f{+qNog+qSLB%KY;5>Av6X(>-qYk3IIEwZ5~6a+P9lMpC^ z8CJ0q>rEpjlsxCvJm=kms@tlN4+sv}He`xkr`S}bGih4t`+#VEIt{1veE z{ZLtb_pSbcfcYPf4=T1+|BtR!x5|X#x2TZEEkUB6kslKAE;x)*0x~ES0kl4Dex4e- zT2P~|lT^vUnMp{7e4OExfxak0EE$Hcw;D$ehTV4a6hqxru0$|Mo``>*a5=1Ym0u>BDJKO|=TEWJ5jZu!W}t$Kv{1!q`4Sn7 zrxRQOt>^6}Iz@%gA3&=5r;Lp=N@WKW;>O!eGIj#J;&>+3va^~GXRHCY2}*g#9ULab zitCJt-OV0*D_Q3Q`p1_+GbPxRtV_T`jyATjax<;zZ?;S+VD}a(aN7j?4<~>BkHK7bO8_Vqfdq1#W&p~2H z&w-gJB4?;Q&pG9%8P(oOGZ#`!m>qAeE)SeL*t8KL|1oe;#+uOK6w&PqSDhw^9-&Fa zuEzbi!!7|YhlWhqmiUm!muO(F8-F7|r#5lU8d0+=;<`{$mS=AnAo4Zb^{%p}*gZL! zeE!#-zg0FWsSnablw!9$<&K(#z!XOW z;*BVx2_+H#`1b@>RtY@=KqD)63brP+`Cm$L1@ArAddNS1oP8UE$p05R=bvZoYz+^6 z<)!v7pRvi!u_-V?!d}XWQR1~0q(H3{d^4JGa=W#^Z<@TvI6J*lk!A zZ*UIKj*hyO#5akL*Bx6iPKvR3_2-^2mw|Rh-3O_SGN3V9GRo52Q;JnW{iTGqb9W99 z7_+F(Op6>~3P-?Q8LTZ-lwB}xh*@J2Ni5HhUI3`ct|*W#pqb>8i*TXOLn~GlYECIj zhLaa_rBH|1jgi(S%~31Xm{NB!30*mcsF_wgOY2N0XjG_`kFB+uQuJbBm3bIM$qhUyE&$_u$gb zpK_r{99svp3N3p4yHHS=#csK@j9ql*>j0X=+cD2dj<^Wiu@i>c_v zK|ovi7}@4sVB#bzq$n3`EgI?~xDmkCW=2&^tD5RuaSNHf@Y!5C(Is$hd6cuyoK|;d zO}w2AqJPS`Zq+(mc*^%6qe>1d&(n&~()6-ZATASNPsJ|XnxelLkz8r1x@c2XS)R*H(_B=IN>JeQUR;T=i3<^~;$<+8W*eRKWGt7c#>N`@;#!`kZ!P!&{9J1>_g8Zj zXEXxmA=^{8A|3=Au+LfxIWra)4p<}1LYd_$1KI0r3o~s1N(x#QYgvL4#2{z8`=mXy zQD#iJ0itk1d@Iy*DtXw)Wz!H@G2St?QZFz zVPkM%H8Cd2EZS?teQN*Ecnu|PrC!a7F_XX}AzfZl3fXfhBtc2-)zaC2eKx*{XdM~QUo4IwcGgVdW69 z1UrSAqqMALf^2|(I}hgo38l|Ur=-SC*^Bo5ej`hb;C$@3%NFxx5{cxXUMnTyaX{>~ zjL~xm;*`d08bG_K3-E+TI>#oqIN2=An(C6aJ*MrKlxj?-;G zICL$hi>`F%{xd%V{$NhisHSL~R>f!F7AWR&7b~TgLu6!3s#~8|VKIX)KtqTH5aZ8j zY?wY)XH~1_a3&>#j7N}0az+HZ;is;Zw(Am{MX}YhDTe(t{ZZ;TG}2qWYO+hdX}vp9 z@uIRR8g#y~-^E`Qyem(31{H0&V?GLdq9LEOb2(ea#e-$_`5Q{T%E?W(6 z(XbX*Ck%TQM;9V2LL}*Tf`yzai{0@pYMwBu%(I@wTY!;kMrzcfq0w?X`+y@0ah510 zQX5SU(I!*Fag4U6a7Lw%LL;L*PQ}2v2WwYF(lHx_Uz2ceI$mnZ7*eZ?RFO8UvKI0H z9Pq-mB`mEqn6n_W9(s~Jt_D~j!Ln9HA)P;owD-l~9FYszs)oEKShF9Zzcmnb8kZ7% zQ`>}ki1kwUO3j~ zEmh140sOkA9v>j@#56ymn_RnSF`p@9cO1XkQy6_Kog?0ivZDb`QWOX@tjMd@^Qr(p z!sFN=A)QZm!sTh(#q%O{Ovl{IxkF!&+A)w2@50=?a-+VuZt6On1;d4YtUDW{YNDN_ zG@_jZi1IlW8cck{uHg^g=H58lPQ^HwnybWy@@8iw%G! zwB9qVGt_?~M*nFAKd|{cGg+8`+w{j_^;nD>IrPf-S%YjBslSEDxgKH{5p)3LNr!lD z4ii)^%d&cCXIU7UK?^ZQwmD(RCd=?OxmY(Ko#+#CsTLT;p#A%{;t5YpHFWgl+@)N1 zZ5VDyB;+TN+g@u~{UrWrv)&#u~k$S&GeW)G{M#&Di)LdYk?{($Cq zZGMKeYW)aMtjmKgvF0Tg>Mmkf9IB#2tYmH-s%D_9y3{tfFmX1BSMtbe<(yqAyWX60 zzkgSgKb3c{QPG2MalYp`7mIrYg|Y<4Jk?XvJK)?|Ecr+)oNf}XLPuTZK%W>;<|r+% zTNViRI|{sf1v7CsWHvFrkQ$F7+FbqPQ#Bj7XX=#M(a~9^80}~l-DueX#;b}Ajn3VE z{BWI}$q{XcQ3g{(p>IOzFcAMDG0xL)H%wA)<(gl3I-oVhK~u_m=hAr&oeo|4lZbf} z+pe)c34Am<=z@5!2;_lwya;l?xV5&kWe}*5uBvckm(d|7R>&(iJNa6Y05SvlZcWBlE{{%2- z`86)Y5?H!**?{QbzGG~|k2O%eA8q=gxx-3}&Csf6<9BsiXC)T;x4YmbBIkNf;0Nd5 z%whM^!K+9zH>on_<&>Ws?^v-EyNE)}4g$Fk?Z#748e+GFp)QrQQETx@u6(1fk2!(W zWiCF~MomG*y4@Zk;h#2H8S@&@xwBIs|82R*^K(i*0MTE%Rz4rgO&$R zo9Neb;}_ulaCcdn3i17MO3NxzyJ=l;LU*N9ztBJ30j=+?6>N4{9YXg$m=^9@Cl9VY zbo^{yS@gU=)EpQ#;UIQBpf&zfCA;00H-ee=1+TRw@(h%W=)7WYSb5a%$UqNS@oI@= zDrq|+Y9e&SmZrH^iA>Of8(9~Cf-G(P^5Xb%dDgMMIl8gk6zdyh`D3OGNVV4P9X|EvIhplXDld8d z^YWtYUz@tpg*38Xys2?zj$F8%ivA47cGSl;hjD23#*62w3+fwxNE7M7zVK?x_`dBSgPK zWY_~wF~OEZi9|~CSH8}Xi>#8G73!QLCAh58W+KMJJC81{60?&~BM_0t-u|VsPBxn* zW7viEKwBBTsn_A{g@1!wnJ8@&h&d>!qAe+j_$$Vk;OJq`hrjzEE8Wjtm)Z>h=*M25 zOgETOM9-8xuuZ&^@rLObtcz>%iWe%!uGV09nUZ*nxJAY%&KAYGY}U1WChFik7HIw% zZP$3Bx|TG_`~19XV7kfi2GaBEhKap&)Q<9`aPs#^!kMjtPb|+-fX66z3^E)iwyXK7 z8)_p<)O{|i&!qxtgBvWXx8*69WO$5zACl++1qa;)0zlXf`eKWl!0zV&I`8?sG)OD2Vy?reNN<{eK+_ za4M;Hh%&IszR%)&gpgRCP}yheQ+l#AS-GnY81M!kzhWxIR?PW`G3G?} z$d%J28uQIuK@QxzGMKU_;r8P0+oIjM+k)&lZ39i#(ntY)*B$fdJnQ3Hw3Lsi8z&V+ zZly2}(Uzpt2aOubRjttzqrvinBFH4jrN)f0hy)tj4__UTwN)#1fj3-&dC_Vh7}ri* zfJ=oqLMJ-_<#rwVyN}_a-rFBe2>U;;1(7UKH!$L??zTbbzP#bvyg7OQBGQklJ~DgP zd<1?RJ<}8lWwSL)`jM53iG+}y2`_yUvC!JkMpbZyb&50V3sR~u+lok zT0uFRS-yx@8q4fPRZ%KIpLp8R#;2%c&Ra4p(GWRT4)qLaPNxa&?8!LRVdOUZ)2vrh zBSx&kB%#Y4!+>~)<&c>D$O}!$o{<1AB$M7-^`h!eW;c(3J~ztoOgy6Ek8Pwu5Y`Xion zFl9fb!k2`3uHPAbd(D^IZmwR5d8D$495nN2`Ue&`W;M-nlb8T-OVKt|fHk zBpjX$a(IR6*-swdNk@#}G?k6F-~c{AE0EWoZ?H|ZpkBxqU<0NUtvubJtwJ1mHV%9v?GdDw; zAyXZiD}f0Zdt-cl9(P1la+vQ$Er0~v}gYJVwQazv zH#+Z%2CIfOf90fNMGos|{zf&N`c0@x0N`tkFv|_9af3~<0z@mnf*e;%r*Fbuwl-IW z{}B3=(mJ#iwLIPiUP`J3SoP~#)6v;aRXJ)A-pD2?_2_CZ#}SAZ<#v7&Vk6{*i(~|5 z9v^nC`T6o`CN*n%&9+bopj^r|E(|pul;|q6m7Tx+U|UMjWK8o-lBSgc3ZF=rP{|l9 zc&R$4+-UG6i}c==!;I#8aDIbAvgLuB66CQLRoTMu~jdw`fPlKy@AKYWS-xyZzPg&JRAa@m-H43*+ne!8B7)HkQY4 zIh}NL4Q79a-`x;I_^>s$Z4J4-Ngq=XNWQ>yAUCoe&SMAYowP>r_O}S=V+3=3&(O=h zNJDYNs*R3Y{WLmBHc?mFEeA4`0Y`_CN%?8qbDvG2m}kMAiqCv`_BK z_6a@n`$#w6Csr@e2YsMx8udNWtNt=kcqDZdWZ-lGA$?1PA*f4?X*)hjn{sSo8!bHz zb&lGdAgBx@iTNPK#T_wy`KvOIZvTWqSHb=gWUCKXAiB5ckQI`1KkPx{{%1R*F2)Oc z(9p@yG{fRSWE*M9cdbrO^)8vQ2U`H6M>V$gK*rz!&f%@3t*d-r3mSW>D;wYxOhUul zk~~&ip5B$mZ~-F1orsq<|1bc3Zpw6)Ws5;4)HilsN;1tx;N6)tuePw& z==OlmaN*ybM&-V`yt|;vDz(_+UZ0m&&9#{9O|?0I|4j1YCMW;fXm}YT$0%EZ5^YEI z4i9WV*JBmEU{qz5O{#bs`R1wU%W$qKx?bC|e-iS&d*Qm7S=l~bMT{~m3iZl+PIXq{ zn-c~|l)*|NWLM%ysfTV-oR0AJ3O>=uB-vpld{V|cWFhI~sx>ciV9sPkC*3i0Gg_9G!=4ar*-W?D9)?EFL1=;O+W8}WGdp8TT!Fgv z{HKD`W>t(`Cds_qliEzuE!r{ihwEv1l5o~iqlgjAyGBi)$%zNvl~fSlg@M=C{TE;V zQkH`zS8b&!ut(m)%4n2E6MB>p*4(oV>+PT51#I{OXs9j1vo>9I<4CL1kv1aurV*AFZ^w_qfVL*G2rG@D2 zrs87oV3#mf8^E5hd_b$IXfH6vHe&lm@7On~Nkcq~YtE!}ad~?5*?X*>y`o;6Q9lkk zmf%TYonZM`{vJg$`lt@MXsg%*&zZZ0uUSse8o=!=bfr&DV)9Y6$c!2$NHyYAQf*Rs zk{^?gl9E z5Im8wlAsvQ6C2?DyG@95gUXZ3?pPijug25g;#(esF_~3uCj3~94}b*L>N2GSk%Qst z=w|Z>UX$m!ZOd(xV*2xvWjN&c5BVEdVZ0wvmk)I+YxnyK%l~caR=7uNQ=+cnNTLZ@&M!I$Mj-r{!P=; z`C2)D=VmvK8@T5S9JZoRtN!S*D_oqOxyy!q6Zk|~4aT|*iRN)fL)c>-yycR>-is0X zKrko-iZw(f(!}dEa?hef5yl%p0-v-8#8CX8!W#n2KNyT--^3hq6r&`)5Y@>}e^4h- zlPiDT^zt}Ynk&x@F8R&=)k8j$=N{w9qUcIc&)Qo9u4Y(Ae@9tA`3oglxjj6c{^pN( zQH+Uds2=9WKjH#KBIwrQI%bbs`mP=7V>rs$KG4|}>dxl_k!}3ZSKeEen4Iswt96GGw`E6^5Ov)VyyY}@itlj&sao|>Sb5 zeY+#1EK(}iaYI~EaHQkh7Uh>DnzcfIKv8ygx1Dv`8N8a6m+AcTa-f;17RiEed>?RT zk=dAksmFYPMV1vIS(Qc6tUO+`1jRZ}tcDP? zt)=7B?yK2RcAd1+Y!$K5*ds=SD;EEqCMG6+OqPoj{&8Y5IqP(&@zq@=A7+X|JBRi4 zMv!czlMPz)gt-St2VZwDD=w_S>gRpc-g zUd*J3>bXeZ?Psjohe;z7k|d<*T21PA1i)AOi8iMRwTBSCd0ses{)Q`9o&p9rsKeLaiY zluBw{1r_IFKR76YCAfl&_S1*(yFW8HM^T()&p#6y%{(j7Qu56^ZJx1LnN`-RTwimdnuo*M8N1ISl+$C-%=HLG-s} zc99>IXRG#FEWqSV9@GFW$V8!{>=lSO%v@X*pz*7()xb>=yz{E$3VE;e)_Ok@A*~El zV$sYm=}uNlUxV~6e<6LtYli1!^X!Ii$L~j4e{sI$tq_A(OkGquC$+>Rw3NFObV2Z)3Rt~Jr{oYGnZaFZ^g5TDZlg;gaeIP} z!7;T{(9h7mv{s@piF{-35L=Ea%kOp;^j|b5ZC#xvD^^n#vPH=)lopYz1n?Kt;vZmJ z!FP>Gs7=W{sva+aO9S}jh0vBs+|(B6Jf7t4F^jO3su;M13I{2rd8PJjQe1JyBUJ5v zcT%>D?8^Kp-70bP8*rulxlm)SySQhG$Pz*bo@mb5bvpLAEp${?r^2!Wl*6d7+0Hs_ zGPaC~w0E!bf1qFLDM@}zso7i~(``)H)zRgcExT_2#!YOPtBVN5Hf5~Ll3f~rWZ(UsJtM?O*cA1_W0)&qz%{bDoA}{$S&-r;0iIkIjbY~ zaAqH45I&ALpP=9Vof4OapFB`+_PLDd-0hMqCQq08>6G+C;9R~}Ug_nm?hhdkK$xpI zgXl24{4jq(!gPr2bGtq+hyd3%Fg%nofK`psHMs}EFh@}sdWCd!5NMs)eZg`ZlS#O0 zru6b8#NClS(25tXqnl{|Ax@RvzEG!+esNW-VRxba(f`}hGoqci$U(g30i}2w9`&z= zb8XjQLGN!REzGx)mg~RSBaU{KCPvQx8)|TNf|Oi8KWgv{7^tu}pZq|BS&S<53fC2K4Fw6>M^s$R$}LD*sUxdy6Pf5YKDbVet;P!bw5Al-8I1Nr(`SAubX5^D9hk6$agWpF}T#Bdf{b9-F#2WVO*5N zp+5uGgADy7m!hAcFz{-sS0kM7O)qq*rC!>W@St~^OW@R1wr{ajyYZq5H!T?P0e+)a zaQ%IL@X_`hzp~vRH0yUblo`#g`LMC%9}P;TGt+I7qNcBSe&tLGL4zqZqB!Bfl%SUa z6-J_XLrnm*WA`34&mF+&e1sPCP9=deazrM=Pc4Bn(nV;X%HG^4%Afv4CI~&l!Sjzb z{rHZ3od0!Al{}oBO>F*mOFAJrz>gX-vs!7>+_G%BB(ljWh$252j1h;9p~xVA=9_`P z5KoFiz96_QsTK%B&>MSXEYh`|U5PjX1(+4b#1PufXRJ*uZ*KWdth1<0 zsAmgjT%bowLyNDv7bTUGy|g~N34I-?lqxOUtFpTLSV6?o?<7-UFy*`-BEUsrdANh} zBWkDt2SAcGHRiqz)x!iVoB~&t?$yn6b#T=SP6Ou8lW=B>=>@ik93LaBL56ub`>Uo!>0@O8?e)$t(sgy$I z6tk3nS@yFFBC#aFf?!d_3;%>wHR;A3f2SP?Na8~$r5C1N(>-ME@HOpv4B|Ty7%jAv zR}GJwsiJZ5@H+D$^Cwj#0XA_(m^COZl8y7Vv(k=iav1=%QgBOVzeAiw zaDzzdrxzj%sE^c9_uM5D;$A_7)Ln}BvBx^=)fO+${ou%B*u$(IzVr-gH3=zL6La;G zu0Kzy5CLyNGoKRtK=G0-w|tnwI)puPDOakRzG(}R9fl7#<|oQEX;E#yCWVg95 z;NzWbyF&wGg_k+_4x4=z1GUcn6JrdX4nOVGaAQ8#^Ga>aFvajQN{!+9rgO-dHP zIp@%&ebVg}IqnRWwZRTNxLds+gz2@~VU(HI=?Epw>?yiEdZ>MjajqlO>2KDxA>)cj z2|k%dhh%d8SijIo1~20*5YT1eZTDkN2rc^zWr!2`5}f<2f%M_$to*3?Ok>e9$X>AV z2jYmfAd)s|(h?|B(XYrIfl=Wa_lBvk9R1KaP{90-z{xKi+&8=dI$W0+qzX|ZovWGOotP+vvYR(o=jo?k1=oG?%;pSqxcU* zWVGVMw?z__XQ9mnP!hziHC`ChGD{k#SqEn*ph6l46PZVkm>JF^Q{p&0=MKy_6apts z`}%_y+Tl_dSP(;Ja&sih$>qBH;bG;4;75)jUoVqw^}ee=ciV;0#t09AOhB^Py7`NC z-m+ybq1>_OO+V*Z>dhk}QFKA8V?9Mc4WSpzj{6IWfFpF7l^au#r7&^BK2Ac7vCkCn{m0uuN93Ee&rXfl1NBY4NnO9lFUp zY++C1I;_{#OH#TeP2Dp?l4KOF8ub?m6zE@XOB5Aiu$E~QNBM@;r+A5mF2W1-c7>ex zHiB=WJ&|`6wDq*+xv8UNLVUy4uW1OT>ey~Xgj@MMpS@wQbHAh>ysYvdl-1YH@&+Q! z075(Qd4C!V`9Q9jI4 zSt{HJRvZec>vaL_brKhQQwbpQd4_Lmmr0@1GdUeU-QcC{{8o=@nwwf>+dIKFVzPriGNX4VjHCa zTbL9w{Y2V87c2ofX%`(48A+4~mYTiFFl!e{3K^C_k%{&QTsgOd0*95KmWN)P}m zTRr{`f7@=v#+z_&fKYkQT!mJn{*crj%ZJz#(+c?>cD&2Lo~FFAWy&UG*Op^pV`BR^I|g?T>4l5;b|5OQ@t*?_Slp`*~Y3`&RfKD^1uLezIW(cE-Dq2z%I zBi8bWsz0857`6e!ahet}1>`9cYyIa{pe53Kl?8|Qg2RGrx@AlvG3HAL-^9c^1GW;)vQt8IK+ zM>!IW*~682A~MDlyCukldMd;8P|JCZ&oNL(;HZgJ>ie1PlaInK7C@Jg{3kMKYui?e!b`(&?t6PTb5UPrW-6DVU%^@^E`*y-Fd(p|`+JH&MzfEq;kikdse ziFOiDWH(D< zyV7Rxt^D0_N{v?O53N$a2gu%1pxbeK;&ua`ZkgSic~$+zvt~|1Yb=UfKJW2F7wC^evlPf(*El+#}ZBy0d4kbVJsK- z05>;>?HZO(YBF&v5tNv_WcI@O@LKFl*VO?L(!BAd!KbkVzo;v@~3v`-816GG?P zY+H3ujC>5=Am3RIZDdT#0G5A6xe`vGCNq88ZC1aVXafJkUlcYmHE^+Z{*S->ol%-O znm9R0TYTr2w*N8Vs#s-5=^w*{Y}qp5GG)Yt1oLNsH7y~N@>Eghms|K*Sdt_u!&I}$ z+GSdFTpbz%KH+?B%Ncy;C`uW6oWI46(tk>r|5|-K6)?O0d_neghUUOa9BXHP*>vi; z={&jIGMn-92HvInCMJcyXwHTJ42FZp&Wxu+9Rx;1x(EcIQwPUQ@YEQQ`bbMy4q3hP zNFoq~Qd0=|xS-R}k1Im3;8s{BnS!iaHIMLx)aITl)+)?Yt#fov|Eh>}dv@o6R{tG>uHsy&jGmWN5+*wAik|78(b?jtysPHC#e+Bzz~V zS3eEXv7!Qn4uWi!FS3B?afdD*{fr9>B~&tc671fi--V}~E4un;Q|PzZRwk-azprM$4AesvUb5`S`(5x#5VJ~4%ET6&%GR$}muHV-5lTsCi_R|6KM(g2PCD@|yOpKluT zakH!1V7nKN)?6JmC-zJoA#ciFux8!)ajiY%K#RtEg$gm1#oKUKX_Ms^%hvKWi|B=~ zLbl-L)-=`bfhl`>m!^sRR{}cP`Oim-{7}oz4p@>Y(FF5FUEOfMwO!ft6YytF`iZRq zfFr{!&0Efqa{1k|bZ4KLox;&V@ZW$997;+Ld8Yle91he{BfjRhjFTFv&^YuBr^&Pe zswA|Bn$vtifycN8Lxr`D7!Kygd7CuQyWqf}Q_PM}cX~S1$-6xUD%-jrSi24sBTFNz(Fy{QL2AmNbaVggWOhP;UY4D>S zqKr!UggZ9Pl9Nh_H;qI`-WoH{ceXj?m8y==MGY`AOJ7l0Uu z)>M%?dtaz2rjn1SW3k+p`1vs&lwb%msw8R!5nLS;upDSxViY98IIbxnh{}mRfEp=9 zbrPl>HEJeN7J=KnB6?dwEA6YMs~chHNG?pJsEj#&iUubdf3JJwu=C(t?JpE6xMyhA3e}SRhunDC zn-~83*9=mADUsk^sCc%&&G1q5T^HR9$P#2DejaG`Ui*z1hI#h7dwpIXg)C{8s< z%^#@uQRAg-$z&fmnYc$Duw63_Zopx|n{Bv*9Xau{a)2%?H<6D>kYY7_)e>OFT<6TT z0A}MQLgXbC2uf`;67`mhlcUhtXd)Kbc$PMm=|V}h;*_%vCw4L6r>3Vi)lE5`8hkSg zNGmW-BAOO)(W((6*e_tW&I>Nt9B$xynx|sj^ux~?q?J@F$L4;rnm_xy8E*JYwO-02u9_@@W0_2@?B@1J{y~Q39N3NX^t7#`=34Wh)X~sU&uZWgS1Z09%_k|EjA4w_QqPdY`oIdv$dJZ;(!k)#U8L+|y~gCzn+6WmFt#d{OUuKHqh1-uX_p*Af8pFYkYvKPKBxyid4KHc}H` z*KcyY;=@wzXYR{`d{6RYPhapShXIV?0cg_?ahZ7do)Ot#mxgXYJYx}<%E1pX;zqHd zf!c(onm{~#!O$2`VIXezECAHVd|`vyP)Uyt^-075X@NZDBaQt<>trA3nY-Dayki4S zZ^j6CCmx1r46`4G9794j-WC0&R9(G7kskS>=y${j-2;(BuIZTLDmAyWTG~`0)Bxqk zd{NkDe9ug|ms@0A>JVmB-IDuse9h?z9nw!U6tr7t-Lri5H`?TjpV~8(gZWFq4Vru4 z!86bDB;3lpV%{rZ`3gtmcRH1hjj!loI9jN>6stN6A*ujt!~s!2Q+U1(EFQEQb(h4E z6VKuRouEH`G6+8Qv2C)K@^;ldIuMVXdDDu}-!7FS8~k^&+}e9EXgx~)4V4~o6P^52 z)a|`J-fOirL^oK}tqD@pqBZi_;7N43%{IQ{v&G9^Y^1?SesL`;Z(dt!nn9Oj5Odde%opv&t zxJ><~b#m+^KV&b?R#)fRi;eyqAJ_0(nL*61yPkJGt;gZxSHY#t>ATnEl-E%q$E16% zZdQfvhm5B((y4E3Hk6cBdwGdDy?i5CqBlCVHZr-rI$B#>Tbi4}Gcvyg_~2=6O9D-8 zY2|tKrNzbVR$h57R?Pe+gUU_il}ZaWu|Az#QO@};=|(L-RVf0AIW zq#pO+RfM7tdV`9lI6g;{qABNId`fG%U9Va^ravVT^)CklDcx)YJKeJdGpM{W1v8jg z@&N+mR?BPB=K1}kNwXk_pj44sd>&^;d!Z~P>O78emE@Qp@&8PyB^^4^2f7e)gekMv z2aZNvP@;%i{+_~>jK7*2wQc6nseT^n6St9KG#1~Y@$~zR_=AcO2hF5lCoH|M&c{vR zSp(GRVVl=T*m~dIA;HvYm8HOdCkW&&4M~UDd^H)`p__!4k+6b)yG0Zcek8OLw$C^K z3-BbLiG_%qX|ZYpXJ$(c@aa7b4-*IQkDF}=gZSV`*ljP|5mWuHSCcf$5qqhZTv&P?I$z^>}qP(q!Aku2yA5vu38d8x*q{6-1`%PrE_r0-9Qo?a#7Zbz#iGI7K<(@k^|i4QJ1H z4jx?{rZbgV!me2VT72@nBjucoT zUM9;Y%TCoDop?Q5fEQ35bCYk7!;gH*;t9t-QHLXGmUF;|vm365#X)6b2Njsyf1h9JW#x$;@x5Nx2$K$Z-O3txa%;OEbOn6xBzd4n4v)Va=sj5 z%rb#j7{_??Tjb8(Hac<^&s^V{yO-BL*uSUk2;X4xt%NC8SjO-3?;Lzld{gM5A=9AV z)DBu-Z8rRvXXwSVDH|dL-3FODWhfe1C_iF``F05e{dl(MmS|W%k-j)!7(ARkV?6r~ zF=o42y+VapxdZn;GnzZfGu<6oG-gQ7j7Zvgo7Am@jYxC2FpS@I;Jb%EyaJDBQC(q% zKlZ}TVu!>;i3t~OAgl@QYy1X|T~D{HOyaS*Bh}A}S#a9MYS{XV{R-|niEB*W%GPW! zP^NU(L<}>Uab<;)#H)rYbnqt|dOK(-DCnY==%d~y(1*{D{Eo1cqIV8*iMfx&J*%yh zx=+WHjt0q2m*pLx8=--UqfM6ZWjkev>W-*}_*$Y(bikH`#-Gn#!6_ zIA&kxn;XYI;eN9yvqztK-a113A%97in5CL5Z&#VsQ4=fyf&3MeKu70)(x^z_uw*RG zo2Pv&+81u*DjMO6>Mrr7vKE2CONqR6C0(*;@4FBM;jPIiuTuhQ-0&C)JIzo_k>TaS zN_hB;_G=JJJvGGpB?uGgSeKaix~AkNtYky4P7GDTW6{rW{}V9K)Cn^vBYKe*OmP!; zohJs=l-0sv5&phSCi&8JSrokrKP$LVa!LbtlN#T^cedgH@ijt5T-Acxd9{fQY z4qsg1O{|U5Rzh_j;9QD(g*j+*=xULyi-FY|-mUXl7-2O`TYQny<@jSQ%^ye*VW_N< z4mmvhrDYBJ;QSoPvwgi<`7g*Pwg5ANA8i%Kum;<=i|4lwEdN+`)U3f2%bcRZRK!P z70kd~`b0vX=j20UM5rBO#$V~+grM)WRhmzb15ya^Vba{SlSB4Kn}zf#EmEEhGruj| zBn0T2n9G2_GZXnyHcFkUlzdRZEZ0m&bP-MxNr zd;kl7=@l^9TVrg;Y6J(%!p#NV*Lo}xV^Nz0#B*~XRk0K2hgu5;7R9}O=t+R(r_U%j z$`CgPL|7CPH&1cK5vnBo<1$P{WFp8#YUP%W)rS*a_s8kKE@5zdiAh*cjmLiiKVoWD z!y$@Cc5=Wj^VDr$!04FI#%pu6(a9 zM_FAE+?2tp2<$Sqp5VtADB>yY*cRR+{OeZ5g2zW=`>(tA~*-T)X|ahF{xQmypWp%2X{385+=0S|Jyf`XA-c7wAx`#5n2b-s*R>m zP30qtS8aUXa1%8KT8p{=(yEvm2Gvux5z22;isLuY5kN{IIGwYE1Pj);?AS@ex~FEt zQ`Gc|)o-eOyCams!|F0_;YF$nxcMl^+z0sSs@ry01hpsy3p<|xOliR zr-dxK0`DlAydK!br?|Xi(>buASy4@C8)ccRCJ3w;v&tA1WOCaieifLl#(J% zODPi5fr~ASdz$Hln~PVE6xekE{Xb286t(UtYhDWo8JWN6sNyRVkIvC$unIl8QMe@^ z;1c<0RO5~Jv@@gtDGPDOdqnECOurq@l02NC#N98-suyq_)k(`G=O`dJU8I8LcP!4z z8fkgqViqFbR+3IkwLa)^>Z@O{qxTLU63~^lod{@${q;-l?S|4Tq0)As-Gz!D(*P)Vf6wm6B8GGWi7B)Q^~T?sseZeI+}LyBAG!LRZn_ktDlht1j2ok@ljteyuNUkG67 zipkCx-7k(FZQhYjZ%T9X7`tO99$Wj~K`9r0IkWhPul`Q_t1YnVK=YI1dMc_b!FEU4 zkv=PGf{5$P#w{|m92tfVnsnfd%%KW;1a*cLmga4bSYl^*49M4cs+Fe>P!n=$G6hL6 z>IM&0+c(Nvr0I!5CGx7WK*Z3V^w0+QcF=hU0B4=+;=tn*+XDxKa;NB-z4O~I zf}TSb^Z;L_Og>!D1`;w@zf@GCqCUNY%N?IPmEkTco^}bX~BWM_Hamu05>#B zBh%QfUeHPu`MsYVQQ3hOT;HmP_C|nOl zjluk7vaSICyQ01h`^c)DWp>cxPjGEc6D^~2L79hyK_J#<9H#8o`&XM4=aB`@< z<|1oR6Djf))P1l2C{qSwa4u-&LDG{FLz#ym_@I+vo}D}#%;vNN%& zW&9||THv_^B!1Fo+$3A6hEAed$I-{a^6FVvwMtT~e%*&RvY5mj<@(-{y^xn6ZCYqNK|#v^xbWpy15YL18z#Y&5YwOnd!A*@>k^7CaX0~4*6QB{Bgh$KJqesFc(lSQ{iQAKY%Ge}2CeuFJ{4YmgrP(gpcH zXJQjSH^cw`Z0tV^axT&RkOBP2A~#fvmMFrL&mwdDn<*l3;3A425_lzHL`+6sT9LeY zu@TH0u4tj199jQBzz*~Up5)7=4OP%Ok{rxQYNb!hphAoW-BFJn>O=%ov*$ir?dIx% z56Y`>?(1YQ8Fc(D7pq2`9swz@*RIoTAvMT%CPbt;$P%eG(P%*ZMjklLoXqTE*Jg^T zlEQbMi@_E|ll_>pTJ!(-x41R}4sY<5A2VVQ^#4eE{imHt#NEi+#p#EBC2C=9B4A|n zqe03T*czDqQ-VxZ+jPQG!}!M0SlFm^@wTW?otBZ+q~xkk29u1i7Q|kaJ(9{AiP1`p zbEe5&!>V;1wnQ1-Qpyn2B5!S(lh=38hl6IilCC6n4|yz~q94S9_5+Od*$c)%r|)f~ z;^-lf=6POs>Ur4i-F>-wm;3(v7Y_itzt)*M!b~&oK%;re(p^>zS#QZ+Rt$T#Y%q1{ zx+?@~+FjR1MkGr~N`OYBSsVr}lcBZ+ij!0SY{^w((2&U*M`AcfSV9apro+J{>F&tX zT~e zMvsv$Q)AQl_~);g8OOt4plYESr8}9?T!yO(Wb?b~1n0^xVG;gAP}d}#%^9wqN7~F5 z!jWIpqxZ28LyT|UFH!u?V>F6&Hd~H|<(3w*o{Ps>G|4=z`Ws9oX5~)V=uc?Wmg6y< zJKnB4Opz^9v>vAI)ZLf2$pJdm>ZwOzCX@Yw0;-fqB}Ow+u`wglzwznQAP(xbs`fA7 zylmol=ea)g}&;8;)q0h7>xCJA+01w+RY`x`RO% z9g1`ypy?w-lF8e5xJXS4(I^=k1zA46V)=lkCv?k-3hR9q?oZPzwJl$yOHWeMc9wFuE6;SObNsmC4L6;eWPuAcfHoxd59gD7^Xsb$lS_@xI|S-gb? z*;u@#_|4vo*IUEL2Fxci+@yQY6<&t=oNcWTVtfi1Ltveqijf``a!Do0s5e#BEhn5C zBXCHZJY-?lZAEx>nv3k1lE=AN10vz!hpeUY9gy4Xuy940j#Rq^yH`H0W2SgXtn=X1 zV6cY>fVbQhGwQIaEG!O#p)aE8&{gAS z^oVa-0M`bG`0DE;mV)ATVNrt;?j-o*?Tdl=M&+WrW12B{+5Um)qKHd_HIv@xPE+;& zPI|zXfrErYzDD2mOhtrZLAQ zP#f9e!vqBSyoKZ#{n6R1MAW$n8wH~)P3L~CSeBrk4T0dzIp&g9^(_5zY*7$@l%%nL zG$Z}u8pu^Mw}%{_KDBaDjp$NWes|DGAn~WKg{Msbp*uPiH9V|tJ_pLQROQY?T0Pmt zs4^NBZbn7B^L%o#q!-`*+cicZS9Ycu+m)rDb98CJ+m1u}e5ccKwbc0|q)ICBEnLN# zV)8P1s;r@hE3sG2wID0@`M9XIn~hm+W1(scCZr^Vs)w4PKIW_qasyjbOBC`ixG8K$ z9xu^v(xNy4HV{wu2z-B87XG#yWu~B6@|*X#BhR!_jeF*DG@n_RupAvc{DsC3VCHT# za6Z&9k#<*y?O0UoK3MLlSX6wRh`q&E>DOZTG=zRxj0pR0c3vskjPOqkh9;o>a1>!P zxD|LU0qw6S4~iN8EIM2^$k72(=a6-Tk?%1uSj@0;u$0f*LhC%|mC`m`w#%W)IK zN_UvJkmzdP84ZV7CP|@k>j^ zPa%;PDu1TLyNvLQdo!i1XA|49nN}DuTho6=z>Vfduv@}mpM({Jh289V%W@9opFELb z?R}D#CqVew1@W=XY-SoMNul(J)zX(BFP?#@9x<&R!D1X&d|-P;VS5Gmd?Nvu$eRNM zG;u~o*~9&A2k&w}IX}@x>LMHv`ith+t6`uQGZP8JyVimg>d}n$0dDw$Av{?qU=vRq zU@e2worL8vTFtK@%pdbaGdUK*BEe$XE=pYxE_q{(hUR_Gzkn=c#==}ZS^C6fKBIfG z@hc);p+atn`3yrTY^x+<y`F0>p02jUL8cgLa|&yknDj;g73m&Sm&@ju91?uG*w?^d%Yap&d2Bp3v7KlQmh z(N<38o-iRk9*UV?wFirV>|46JqxOZ_o8xv_eJ1dv} zw&zDHZOU%`U{9ckU8DS$lB6J!B`JuThCnwKphODv`3bd?_=~tjNHstM>xoA53-p#F zLCVB^E`@r_D>yHLr10Sm4NRX8FQ+&zw)wt)VsPmLK|vLwB-}}jwEIE!5fLE;(~|DA ztMr8D0w^FPKp{trPYHXI7-;UJf;2+DOpHt%*qRgdWawy1qdsj%#7|aRSfRmaT=a1> zJ8U>fcn-W$l-~R3oikH+W$kRR&a$L!*HdKD_g}2eu*3p)twz`D+NbtVCD|-IQdJlFnZ0%@=!g`nRA(f!)EnC0 zm+420FOSRm?OJ;~8D2w5HD2m8iH|diz%%gCWR|EjYI^n7vRN@vcBrsyQ;zha15{uh zJ^HJ`lo+k&C~bcjhccoiB77-5=SS%s7UC*H!clrU$4QY@aPf<9 z0JGDeI(6S%|K-f@U#%SP`{>6NKP~I#&rSHBTUUvHn#ul4*A@BcRR`#yL%yfZj*$_% zAa$P%`!8xJp+N-Zy|yRT$gj#4->h+eV)-R6l}+)9_3lq*A6)zZ)bnogF9`5o!)ub3 zxCx|7GPCqJlnRVPb&!227Ok@-5N2Y6^j#uF6ihXjTRfbf&ZOP zVc$!`$ns;pPW_=n|8Kw4*2&qx+WMb9!DQ7lC1f@DZyr|zeQcC|B6ma*0}X%BSmFJ6 zeDNWGf=Pmmw5b{1)OZ6^CMK$kw2z*fqN+oup2J8E^)mHj?>nWhBIN|hm#Km4eMyL= zXRqzro9k7(ulJi5J^<`KHJAh-(@W=5x>9+YMFcx$6A5dP-5i6u!k*o-zD z37IkyZqjlNh*%-)rAQrCjJo)u9Hf9Yb1f3-#a=nY&M%a{t0g7w6>{AybZ9IY46i4+%^u zwq}TCN@~S>i7_2T>GdvrCkf&=-OvQV9V3$RR_Gk7$t}63L}Y6d_4l{3b#f9vup-7s z3yKz5)54OVLzH~Ty=HwVC=c$Tl=cvi1L?R>*#ki4t6pgqdB$sx6O(IIvYO8Q>&kq;c3Y-T?b z*6XAc?orv>?V7#vxmD7geKjf%v~%yjbp%^`%e>dw96!JAm4ybAJLo0+4=TB% zShgMl)@@lgdotD?C1Ok^o&hFRYfMbmlbfk677k%%Qy-BG3V9txEjZmK+QY5nlL2D$Wq~04&rwN`-ujpp)wUm5YQc}&tK#zUR zW?HbbHFfSDsT{Xh&RoKiGp)7WPX4 zD^3(}^!TS|hm?YC16YV59v9ir>ypihBLmr?LAY87PIHgRv*SS>FqZwNJKgf6hy8?9 zaGTxa*_r`ZhE|U9S*pn5Mngb7&%!as3%^ifE@zDvX`GP+=oz@p)rAl2KL}ZO1!-us zY`+7ln`|c!2=?tVsO{C}=``aibcdc1N#;c^$BfJr84=5DCy+OT4AB1BUWkDw1R$=FneVh*ajD&(j2IcWH8stMShVcMe zAi6d7p)>hgPJbcb(=NMw$Bo;gQ}3=hCQsi{6{2s~=ZEOizY(j{zYY-W8RiNjycv00 z8(JpE{}=CHx0ib3(nZgo776X=wBUbfk$y2r*}aNG@A0_zOa4k3?1EeH7Z43{@IP>{^M+M`M)0w*@Go z>kg~UfgP1{vH+IU(0p(VRVlLNMHN1C&3cFnp*}4d1a*kwHJL)rjf`Fi5z)#RGTr7E zOhWfTtQyCo&8_N(zIYEugQI}_k|2X(=dMA43Nt*e93&otv`ha-i;ACB$tIK% zRDOtU^1CD5>7?&Vbh<+cz)(CBM}@a)qZ^ld?uYfp3OjiZOCP7u6~H# zMU;=U=1&DQ9Qp|7j4qpN5Dr7sH(p^&Sqy|{uH)lIv3wk?xoVuN`ILg}HUCLs1Bp2^ za8&M?ZQVWFX>Rg4_i$C$U`89i6O(RmWQ4&O=?B6@6`a8fI)Q6q0t{&o%)|n7jN)7V z{S;u+{UzXnUJN}bCE&4u5wBxaFv7De0huAjhy#o~6NH&1X{OA4Y>v0$F-G*gZqFym zhTZ7~nfaMdN8I&2ri;fk*`LhES$vkyq-dBuRF!BC)q%;lt0`Z(*=Sl>uvU`LAvbyt zL1|M@Jas<@1hK!prK}$@&fbf70o7>3&CovCKi815v$6T7R&1GOG~R4pEu2B z%bxG{n`u$7ps(}Tt(P608J@{+>X(?=-j8CkF!T79c`1@E%?vOL%TYrMe1ozi<##IsIC1YRojP!gD%|+7|z^-Vj$a85gbmtB#unyoy%gw9m1yB z|L^-wylT%}=pNpq!QYz9zoV7>zM2g2d9lm{Q zP|dx3=De3NSNGuMWRdO_ctQJUud?_96HbrHiSKmp;{MHZhX#*L+^I11#r;grJ8_21 zt6b*wmCaAw(>A`ftjlL@vi06Z7xF<&xNOrTHrDeMHk*$$+pGK0p+|}H=Kgl{=naBy zclyQsRTraO4!uo})OTSp_x`^0jj7>|H=FOGnAbKT_LuSUiSd3QuCMq>sEhB=V63Nm zZxrtB0)U@x2A#VHqo2ab=pn~tu>kJ;TVASb_&ePAgVcic@>^YM?^LYRLr^O12>~45 z-EE?-Z$xjxsN92EaBi)~D~1OzRVH`o!)kYv7IIx??(B)>R|xa&(wmlU2gdV0+N+3% z7r$w5(L<|?@46ITJZS5koAELgVV_&KHj(9KG??A);@gL`s1th*c#t5>U(*+nb0+H% zOhJG5tth59%*>S~JIi%<0VAi;k>}&(Ojg!fyH0(fza!1kA~a}Vt{|3z{`Pt@VuYyB zFUt(kR$<`X_J&UQ%;ui2zob1!H{PL8X>>wbpGn~@&h__AfBit)4`D^#->1+Qn^MH9 zYD?%)Pa)D-xQzVGm!g)N$^_z`9)(>)gyQ+(7N@k4GO?~43wcE-|77;CPwPXHQcfcJ^I&IOOah zzL|dhoR*#m5sw{b&L=@<-30s9F|{@V05;4Wf6Z_1gpZnJ*SVN}3O7)-=yYuj2)O0d zX=I9TzzTK%QG&ujvS!F*aJ8eqt4|#VE;``yKqCx7#8QC7AmVn+zW9km3L5TN=R>{5 zLcW`6NKkTz`c{`-w!X9zMG;JZP|skLGs7qBHaWj7Ew!VR=`>n30NX)7j~-RbDmQ6b zHr)zVcn^~e2xqFCBG4P$ZCcRDml-&1^5fqN=CHgBVu1yTg32_N>tZ;N%h*TwOf^1lE#w1$yF$kXaP|V$2XuZ+3wH4Ws6%U;^iP|c6`#etHogQ+E@+~PZ1zdGAty6qTmBM z>!)Wfgq~%lD)m>avXMm)ReN}s9!T_>ic6xA|m7$(&n(Z&j} zHC=}~I(^-*PS2pc7%>)6w}F1il&p*0jX1z)jSvG%S{I3d9w$A|5;TS)4w81yzq5f8 zZVfF~`74m1KXQg|`OS>;FCgZw!AL;2PV{&8%~rG!;`eD=g!luE0k40GjIgjD!JSDNf$eW zZtPMF)&EH_#?IwVLEx&Tosh9K8Ln4Pb$`j2=><6MAezsQvhP#YNnw&cL>12xf)dPz z1tk;{SH6HDcbV0x(+5=2n;A->&iYDa5Zr9$&j?2iAz-(l1;#Vc3-ULyqRV9d0*psG7QHE! z*J=*^sKK?iTO$g*+j~C?QzzIu`6Z{2N-ANrd5*?o%x& z&WMin)$Wq%G!?{EH(2}A?Wx@ zn8|q7xPad4Gu>l^&SBl|mhUxp;S+Cb125`h5aBz9pM34$7n-GHGx*=yqAphZKkds7 z$=5Jnt*6&8@y80jNXm|>2IR<$D5frk;c2f5zLS5xe*^W>kkZa5R1+Am34;mo{Gr=Z zD=z8fgTHwx%)7hzjOo9*Cogbru8GgDzrE;3y%TR+u`|zz%c0Tyd8;#EQXdr4Rgx(2LPRzVI2FwsbXwnF;DP^fg zdYOd|zU&AqgCJ;R+?oSgEgZM`ZX>7&$A-j2m|Tcz4ictXoQkz6Tr<2zhOudU16k<7 zLdk&FCL>=a^>0gV@m#9SnMd)R$5&1mh8p2McnUbk;1|C;`7pPkYjf|o>|a6`x`z1O zt>8~Q%zHX%C=D2!;_1eo3qfbB4QQK^{ON_f*7XhLk{6sr2(KIVmax}fUtF-zHZiUd zHPb9jidV`dE;lsw?1uQH!b%MvPE|lh9-8R_z4^PC8{XAf?S73(n*FvYPoMES+LfOx zcjm4ZZOmKY>M2e${QBVT+XnBQ(oC0fAYcXi7+=}_!hS9m>Y%G@zxn3z#Pb;bJ~-kI zAHNmWgQJp$e8L-uKQ|c4B;#0BTsfRB+}pl7xe=2_1U7pahx5S$TVbRnU0oi1?Wh|A zR7ebg9TK1GgKa4@ic#q_*<;c8?CkjX zMMyq`J()_&(j-FZY7q%z6CN^a0%V{UL)jmrvEg{doZd?qIjgJ^UPr(QUs`68;qkdI zzj_XBQ|#K2U!5?fmIEtXX6^rFY;h4=Vx<-C(d;W6Bi_Xsg{ZJPL*K;I?5U$=V-BNP zn9pKiMc=hZNe**GZBw1kVs#-8c2ZRjol}}^V@^}BqY7c0=!mA;v0`d|(d;R-iT|GK z>zt>Tt3oV09%Y;^RM6=p9C-ys_a``HB_D-pnyX(CeA(GiJqx7xxFE52Y`j~iMv;sP z%jPmx#8p%5`flAU(b!c9XBvV+fygn`BP-C#lyRa;9%>YyW6~A_g?@2J+oY0HAg{qO znT4%ViCgw&eE=W8yt-0{cw`tMieWOG3wyNX#3a^qPhE8TH1?QhwhR~}Ic zZ^q$TF8$p0b0=L8aw&qaTjuAYPmr-6x;U*k*vRnOaBwb_( z5+ls5b(E!(71*l)M&(7ZEgBCtB{6Kh#ArV4u0iNnK!ml!nK5=3;9e76yD9oU4xTAK zPGsGkjtFMMY3pRP5u07;#af?b0C7u) zD^=9X@DRasHaf#c>4rF5GAT!Ggj0!7!z?Q-1_X6ZP2g|+?nVutp|rp}eFlKc8}Q&_ z17$NpDQvQolMWZfj0W0|WKm`nd_KXYH_#wRRzs1aRBYqo#feM}a?joONn30Z4Z9PG zg1c!_<52-9D53Wq4z8pUzGkEFm1@Ws(kp4}CO7csZ-7+b)^)M)(xo}_IpTLl7}5BmbBCI{4>rw>4c_gBQHtRd5Z=SW&6Qp2qMOjr3W+ZRmP;S(U+h=^BHKohhRp6Zgf zwt&$zQXhMm@kh1@SB%dIE*kFDZym3Mky$NRljX?}&JGK`PIV1C;Pf!JV{hb4y;Ju- zlpfEPUd+mV5XQH<#BRFhZ}>b#IdF?a?x;rBg-v)@fZpA?+J{3WZjbl3E zv(a&1=pGYPxP@K!6Qg5Vx=-jwc=BA{xL3+QWb&9~DGS1EFkIC+>55{dvY4LV@s5$C zKJmCjigp7?m27*GN_GROz}y+y5%iIj=*JTYccaFjvD&VN%ewfSp=0P zspdFfDqj?gs!N64cEy5uR~wD>af!1PE*xo{^a^8BPIL2=U>B!m2AM0Jf<8qWLoHxi zxQfkbbwkRXgJgLW_j{ZkCxHLBU{@D6T5u90UNs5P769Zei|C$@nA5$L$4ZvxQl1i? z8vLHg17}e{zM$=&h%8Swbfz7yw~X^N|7Chp1bC(oV72l#R8&%Ne5>F=7wR(dB; zkDX!%&fxS19JBjP<6H7+!dO`nPLvB~xn{aDh#^iHKP|A5UQlCG%v%x9@q1w2fa#&% za^UwHu!~(qrv99G%9_e4OBbJ-CkB*1M_?t6UXZ#}4JFDzB|x(1Z}ckuiY}${zj`eVo})!rN8Je z%h2CVJG1$K$2deXx^h8trLs~Han^e>_-M6@0o4C7d548|#mKtm@DvdVAX5ZzA8=*! zKq5C+cM9u)qJ%YBJ1UAcG}6Ji4=$piaZ(K@>1BiD;$R9bR*QP`dH2T=)dgW#f7U)S zZ~i#VYLOnUZt^~Iu3x8QPJaHVUxtRyipQ+tbmWKl14iW1!f6JSDvT$xt8>~7-1ZlJ zU|)Ab*lhvz-JO!$a}RBH9u8$=R)*qeD@iS@(px~OVvML-qqO5&Ujnhw1>G~**Ld{W zE+7h|!{rDZ#;ipZx4^Tcr9vnO)0>WFPzpFu*MYST(`GFzCq*@Gqse6VwDH#x?-{rs z+=dqd$W0*AuAEhzM@GC&!oZa1*lRsx>>mP>DNYigdm^A~xzo}=uV$w#iadO+!&q_~ zT>AsHXOEGsNyfcJt2V$rhGxaIcTEvZr7CMVEu=>l30N~52^71U^<_uw6h@v@`BA2! z)ViU+wF#^$=5o44TpOj?#eyq*+A&c0ghrt8%}SiK)FgLk-;-^+ zXt|1}1vcKAAuR|?L*a8;04p%!M~U2~UC-OJK)DMtBQ#+ZttJgDFNA4zchA*T)cN(E zmpIMLU*c*NrCSV^qdLXD751DsO`#V#K1BVX4qI-B3Rg(zcvlg^mgY^V3Q*5RRQ4-8 z_kAlUisma2SNEx47euK5Y#eu_-gwRW0}M90hEI}eIJ9aU?t11^jSCn4>e~XLSF7Y3 z7JF)1ZbS_P<$<#y(*u@w!jF4FW_f~bxzi%cgP~B1K5N6GFYSAf=D_s5XomU0G9I%Y zPWc{&MItPR#^Le)?zsRkQMmHx^Cnn&;TrPzRVG`wyNH*U;|r3^2NY(z0lwikP}cWF z`p%R@?dy*7H~0&3ST>L9)b7#kwg+|n0#E&-FNf+Z_t7tpa711FogBPV`S3MW_FMGQ zJ@8Z}qXR4-l%p76mvcH`{Fu(^O;8H2@#LZUH#9p6!EX$AEYV$c`s zkPimL3kv>y=WQ+?KIAuim``%cAeBhA6g8}p_*FBH(#{vKi)CIz_D)DFXPql*ccC}O zRW;+Y6V@=&*d6QJUbRxPX+-_24tc-hYHEFaP-IAj*|-P5%xbWujQvu#TF>xigr_r! znuu7b(!PyYX=O#>;+0cGRx>Sy39(3y=TCf_BZ$<%m#inup$>o(3dA1Byfsip8S975-iVe7UklFm|$4&kaJ!n66_k-7-k}Z_?){LQe&wTeJ^CR{u6p+U#4_iSZZ1wjB-1gVGNQqnkk*-wFLj(eK8Ut{waU zb1jwb2I?Wg&98jSQWom8c?2>BWt*!3WQ?>fB$KguB9_sStno%x=JXPEFrT|hh~Po2 zSPzu3IL10O?9U(3{X8OLN-!l6DJVtgr$yYXeAPh~%(FECDe;$mIY7R4Miv1GEFk9x zpw`}E5M)qTr60D^;a#OCd0xP*w8y+my1^l8Qd*V`wLoj)GFFj;;esW2PMO=sbas{yX6asXIJ$|LW< zts$A+JaxoM({kv+2d@#bhl?#V#FZn_=8tTTvup?Vq!p!46W{be)EP=VlYE|UzAU}) zz})UzJVWi;9br0k&5>}sqwa_`TP*c}^$9+q)Dks#qEVg>p)71sqKF-YLP@UF{(>lp7;CHAWK;K0TZ_+?>EtZKprfU@;52a1IU8HNx-mnoZrb8| zP8FPb#T$0VE+G-l508;d{DSfC6#dbp(j|^i^I3z9?Qmkr+(dw^w??h}WTN{_ls-GuE~lF;1Urgbtq|Ud_r>wecb@?{{z? zX>X$&Ud+(I(5}5d^>&Z2m+qy=h#vR*lS084ATwUWZLg6PX1Ft+YI`0iI)ynij}{4X zrQE!Mr1m^-?kw<|VT0mG+5J{!;j;zJT`?_=P*09n+=e``CN|7rC$u~Ksg7LSMS(Q~ z51!n1htcK0q7*K-*u0?c8ZlvPXcNwXmFe0Or2}}R@?j@{ECCNZ6va1tZ>|ZOgGZ1j z9?mRkeSK%{X4O>J$@hyFsD)7s67Uldb>O93wQQiV%-FfbEY_@q>1VUstIJs|QgB`o1z**F#s z^joAYN~5{EQ_wZ~R6-nEV#HsQbNU59dT;G zovb$}pb=LdR^{W2Nh~8yWfq*vC_DvJxM=)2N`5x+N6Sl`3{Wl@$*BYol#0^idTuM` zJ=prt$REkxn6%dimg%99{(Dt6D67sTUR6l1F@9&Z9<)XgWK#x zVohUH6>_xRuw1^V**+BCZ@dZj97T*67OBO>6UUivH`<@ray~ym^E?bO=vKqFfK3Kv z`RKxs4raHacB<(XAeH`@0G*K2@ill_U@m=icT@F{k1PU3j4VBde`ThtW8%Z~A>)45ARjQCDXbH}_rS^IxHGp#utBEj3W3KSAU+$6I4s~9OWueETo!J-f~+DV8< z+VMtdcQ?M+?S}kl&uImYiIUJ-K0-te7W4sdWpS6Fqs-I!Tj{8Qp6lMn$Zm8uU)s{X z8|O}HN%8sEl4em&qv{VBq{}$@cCG{B z5~3DY$WRYSkO~z=sxRct5^G5bPZW;LF)(zY)HREgpRrkYV@H3^BTD6u+bJE~$cqr< zw@Gb3^|n*kHZ%Vnu6~B7pB4iM0C4kDuk8Q1R^<(x%>|sCOl%CTe^N)K?Tiepg?|#m z94!og0*38u|67h%*!)SJhUdvFimsktaqp#im9IpH-$fQc79gi259qPkEZ)XU?2uWW zRg?$8`vl;V%-Tk+rwpTGaxy)h%3AmF^78<#i+Q6~M4#>J4`NNEEzy~xZ&O*9q%}@7 zs9XBO#vSKSM<-OjPIDzO9JiAYFWrK14Am{uZT=S3zaCu~K%kZo&u*=k9L#xi6vyaG zQFD76MOE&=c1G;7Zivp<%%fRq+@3wgZg>k@AYQf|*Qyzy$tqc20m?F5nGbG@V#gW` z8RMb2oBxgiqa?)_G6&-;L#(HCoaJrs_ED{IUZ^$~)+e#0iZT!AJDb2V{Sen*70TO& zyI`*~#ZdLFhYP_#DTuoqQ0OS6j0o15r{}O&YoT5wCp|x_dD{#Y;Y}0P1ta?2VEh4* ztrRN5tL6UvoH@M9L z=%FKpf@iSp2P>C(*o<-Ng4qF#A?i!AxjXLG8%Gm`$rZxw;ZqSvv5@@sZ|N*~do5fb zKWR)T_>`kxaS|MHFh`-`fc`C%=i@EFk$O&)*_OVrgP4MWsZkE2RJB(WC>w}him zb3KV>1I&nHP9};o8Kw-K$wF8`(R?UMzNB22kSIn#dEe|V-CuMw8I7|#`qSB6dpYg$ zoaDHj%zV6*;`u`VVdsTBKv&g75Q`68rdQU6O>_wkMT9d!z@)q2E)R3(j$*C4jp$Fo z2pE>*ih{4Xzh}W+5!Qw)#M*^E(0X-6-!%wj@4*^)8F=N*0Y5Or+>d= zhMNs@R~>R9;KmyP@I@bpU3&w?)jj0rGrb@q)P>wLVbz1!TZY$#+H-mK6B^0{vdvt0 zaJ0~7p%I#1PpPm1DvBzh7*UsCl^I5^`@XzPzbg+v3T_WyKN?TJ9J=57v^IUO`aQN} z@>Y>WIj+gT@-sobU-tW%L5GP(qY?Eep&I;@osY}O*3i1Ar?Sv|EI6S-pK_!~*A$K| zs-hHESqd`vv;zIzgv2ho5-hsIL5Ke~siJ(v0`Qm7W_Rms2rB67=p&HGRhA-)$p-BS zvXSmgGIGgeJMBcsgp=L8U3Ep$VPBFhvJ!3M5{pocGBS~iZj0({9Jt9nbC{Z$LVb%= zGqzRBjlqkAU{#sOX56})^QjX;jQ26M`poAFIZ#H31td9sQlgBBrfIYgDC9+kO~}s{ zb1i*{#{5tPWhv4pecAZygXG>?5xKx7iPXd?nR;QaIfhlhqNBaLDy>9Yd1Sf3P!s4~ zhfHaFGsIFy&ZM=6^qc>>V>o!zk%5Lk5BtS7oU=YfjWUN;c zrh$6Cyr%KC@QNTzTZvb)QXQkV)01MEY+EzC%CJx)Q&6MM={paB}Dp=qCn^eJ}5LeXG9Gqynt0ir>DvSIZ=i?*_xR3=% zppf1w51ypF2KL6ug zCm}eCi>&>xT;Idzh^PmtDWrU(&eC2hAt(nmd#?;W)*&4lb2Z2Ykv*XLNDEm`_1n3C z`l!wZwiF9b?mN@z?s~>v%hT01C{E3md6M5_Xi3fKD6s26Tt~Z>8|~Ao9ds!cF_Y1| zRG>!=TD0k0`|T*)oX!SlSt8g4Uh@nc(QosCoen@i*ZCSyh|IliliuhEw$8?4ZL9N2 zMQ%%S=3Tj_QilhHW@cSr1UYTtDem{A-ZxyCa$K9A%(!`X_?ieJzXbfERST|JxqmbL zHe!hSqYk|!=!$8CJ5>q}Pj63@Q#PO{gpVb+0-qHFM`j5x_s#~dxvy5u62vywq8upP z_)N)3n9cn7YEf2D8L}x0#_B_~>HT8;;8JC5q+}1gEyd%XqYvY?deQzwD1Lx{ghI3; zv?f;&6CY$H&dDL$k#)hb)5lIqUZ~oU!z)hMI!B9THhw?9!}ykqpFJ|hB?JjV9uwqb z3_70pMV^C7I<3Cg&yMi8JJ3V2gYTOMV=IopfZ#1o>&+j-mB-V${Ok(f?I3{+vR~zE_RR$?9xI~^% z53~ z&bCl+6UeKkUWJ-%mnK{9K>?(3BM3C`@xi}v8)q#;YJhMr5dWvMtAL7X``!bHv~(%m zH8d#Q4N6G~lEW}aGn9ZZNT?v9bV$emf)dg#ASDV?(nu+wpu!_X;(vL<<1zBo-~X&N z>keyizVGaP&c65DbIyEwFn2%(L`P424ZI3nFBA%w{yJ?E} zlwSKF;jIhs(!TFOdMUW|(=qHjr#U-k>`>1u1_yL5Gyy;7@WTOt_)nfIp{D9kwR8f0 z;^Fq=iF(&yd|z30&+I`FBM-P6ouHQ@96TkIe@9=pDDL#_zgXos)-ri5lX-&2D~DsI z4R>xVM$c&aFLgFjwq{1I;jpODOx|n*#@e2+Wgdkm(E(Fad_)peD`1^CJ2TpglmgoC)F(Z)F7y2rzzDU^4wvO{bzw{mzSs4tF;*qabKkC?D!j!tbF z4D_6zbqFVI>n@2-Qmg1BiDdD}>E(72)aMv1Y9duOxwlG|E!L(QmQ#j5vmN@a7v{zIt3qQSP?96^$ITE=h~sLn|N|v8YqmA~-0HWgcPHZ@!3Dzm2X{Bozc{qm>J`Ehp}`FQ%Ecbw%+|H8f`pykvo-%&0a z?&ZtJF*{#AYs8Z|z(IFI8sBiZs)L!C9#1W@;hEInZZZdPz2ZnmhoSP9VHQt7mzZUZ zhM!!5IJbe4Z@zEoMjKaxH&Px8p}1<0YmtWwcG@ZPY@*oQSteU zRy+W=Rs>sJ##v^8EJJt0=5---o<@^?fOEp=N<~xXvcf?$gXD0zVHziRMMmC#Mp3o ze(eT!dvjmXp9_C%pV_>{H=nsqYO)n1J?Ihi zjy7f00`|S<;)I!ZyUO{~#+wXX)z(BWsN|$7n9s}H%ZzE8YQv#vRTHjq@D%tYyfe=3)|7jYxRT#E16nFk&1jFC6CH5d4kiJCVq+%r_$Rec7=G!GuZ-0*$5N2GqXB(dqWPS1Um4{xgi2k=;eO_LDy&GR=Q!)bjKY{f!0yoc0Rol&!E`2BkI$5y4U^*k0=GyL-m8XJL%8prM%;fwyX9M^ zs48n3Oh#a>FVWI7dsm~*l0$^J)lxnfTTw~1ceZ73yNvNurwd`;+^1XuucaFN85M8? z$fNl!D9g*O>6IE^POaoDq`86Sw0t4%jIi`&*EEZI?wwOiEvH8(qpfyDvAe`4pWf7k z3-pFgeT{qtj)B!1ZamZ5g3z6Nd40P(%^Kf@#!uzbIk~8w`9wbhWc~1E|sw6-FsOqrhb2DLDwlaq@)Y zAi$KoA=Vyn=Yxqxtf7wu*$47Ht>WZi{AdeN79#9ws~CtE;~gC$q7T>*5yKK3VT)Q=sllRR}lBIGd17+bOu| zeUeUrMgF=Gjk-{epAyUd_KNgwZK_Pz=H$+{4~E_ZRa3IJpU~IZ5U4Z3l%u3{Ls~`H z(iysmm+!HBJTC-$EpHM9yrXUM^_FZ(3sdmsyZ6=lU8bb3V(WK>P0$l~#QA&NMj@OA z*OQ>^-s_D-bda022~!G!bTh7@FR>t!1r`Js1;4$(^_*hH-_pUPf5C}K-v$%i#KBB! zU{~a7)R>ix z#LA|<6v#rwKkB1JBLWkWu#M0#8i1J0e4dFDP3jrlFfxhkDs%Q~)e6e7fR$U?e$<{x zfZb0?UMsB|E}Fk)@|^{)_^L7O%rp1GRNig@bUX(^6}6HoGi8IXoSKpI1A(GV)uA=7 zOXG&KjZYVjYn6}2YV0yfnKsnpDlF)h$Gv--|6$BsWFg|IWnp|#sk}zOAb6Bb?vb@t zs^7=4IdiKE_rUT@rG!D4Zy zcnas#XT77V&%igMXY(lQS|)lgO{pN9!P-94KeZH_+PK5jESYCSPMN)=D(JIAVeB%D zI_>_lvD;pylkZ#Ral0IzC6ei$J$4NnGw(pnVd`&aaNT5mfq-4)aPjj(v;`VvJ6Xxjm@3DX+Kju z@9-h++s7x>idTEL zd)ptYy?P2$S*_DI;eMR0ZdAuS)~fGEZEguO&+3AwW@Sw$&KvgJr6aGK*Ar;0wx`lr z7V&!+9C7`VcV^t+Wj~AweOGQL!)0)serr$8Fez7kC(VSVRdjqpQuq964RW^2euIre zh10&Tv)|dj*CoRozrW<4y_+5}3EGRok+G7ODl3-CF1r?JYDdw&NbcVT=7ljq_K+8bMeG3uRw@3=cof?j+v+WaKI`WqwByf#7aFK3 z0+R34xQ-6nxQ&9xJKl}`C9FlUe1-h^i?5fr5kjot#MA-$%k106t>*gM+yF3m2X#=1tt07`cK)37dA^A4d8%6R>@0U-UZ~wSvzMlK$tlm~aK`%e8|quXyH`aLM0#Dcu%sqEsKV%i zVn_*W-Qbnl)h?RP>)$rZ5JL!*H;Z{ zk7(FB`lo~h&zB|S6j-Na;y$QM*rn^tkO{>#DWZN@IwJps3*Nm&ox0{{;=J~hvPb-* zvAOEPImrdq()yl~`j`Q;R1Y%CdLKKw*;gtNaM~WDO95YXsTjKCOdRD2Is@aVRTYFD zpS=_EB!@Ub&c*JmNMF=F+)Bq)52|=83IEG;M5(Ol*97!W(S-5X-5w&7->`1Pw-0Ml zpA>jaofnyPQTCzoIG}OK9j^nn>F>jC#$iSnJY8y6ue4nxs@3HtfNx01XVK7NcX#Cu z34g-z=0!7ip&@wI>>6ynJYyFTEgH6DA?b>~V%2s_@NPDza5&6cno!S(|85*74}6_M z%s1c4`B{lqMu``(4~Jk#_`^=tu36TgXPv_}{lhhyi(rrSM_uoVVNuZOuxCXom9|wg zNf&BtzX=hVi*4dG&1J!^QW;O%fQ$jVH=W74B8WR)*tM1{(@cHRqiS_W6R^h8uxd@zV>KNI zR(-LNNkLqh>e=CmL|q9sRHm#15%q$o7_GQMp8FLX-HGnJ<+(;k{Q%+Sk+!^mM+2#1y9+gG2IDZGt%;Cfk{+ zT5}^x=!i2$tnH_se6eC zkn;kK>%ICpo=X&=cSsbxQ|AjJ;5Ff;AyIj>$YA8cw*?W^Nn}S|1jrbf@Bd zr82I8KlOh4#5C0sw3oVvuC0NFPKH4S0$~F$U4JM1Im$B%%oGm_5$Lnr{#Pv}eL1k& zMP(pG$MI^8&!nYffq#$zJ^3GF|cC%2d4V@qKV#fu6u2O

k)oKu82Fu=RODzQrHPEC+Mz{hW(G7VuCl8g1ou-Ot!41bp_>OC1&@A_6e*hc)1X zMuDvzEZyB*fW1^+7dL0%ofr;-xT6B@0~|VazatI{60!X=po^uOr6UB$1POKmuI_&b zOL&O+w*!>`k+y%?Z|wm4$@_1|WC|pKM(F{k8TR$-4hs?i|GBc9)qa{vYq)~5qa(2N zsR?s}0Pp^ufVGEB8oE9VCFa0K$x0HSpem!tIyR69y0rnjg8cqjmWyz7*Kx3~X> z|BZX}Y;oVB1HX@l9_-y7dI*WgruY@?rC&64`}3W`ECA>O@Y#Q@JS<4WBF(QbwJqHM zt)fE#6jTSyZ^E8y0INaIf!omWjvS=@15`O%V2CKg+}z=M9##kLKRN0uJuK250bXVU zwzT&n@30^dzKnlL^us;wClg?CKWEtiEb#zhPVx{PxFQiwEPp^C53zN21EdZAz?3D& zC6fK|_!S5Mq&0z;xWGLEv}!zjfpRg_orp7|fXMx=uP!@X`yT@5(N_Hza}p5fBk&|)J7fZ`NQ9Nz@5xT? zi?iV$q+bG!2LZUpF)>Yl!u;DEHV3!i{ipcJm_8Gj@Dac%N3|SQVGqRhrJ;WOR|CtrwzPTW^&$A6!A$E)h7xohm>hA8p{PUZ~ z_&zeg@OL3PxPtzkfsNZAqXCZ8Is7yQ+plm~8;}|~DEkv&f@?q5hB*OGQYXuwVQOp0 z?QQ`6qyp|-$47wjuV74IE_x2I17$+grwMBE^25d<5!lYhnszuh|5Yk;RB+Uk*hk=m zu73=E^7ul{40{A^?Rg^fq0ZfZO@C1HupR*_d;J>lkFv6&x&}4N;t}1T@2}~AC^<3b zA}RxFPPZe5R{_6dIN9N-GT29Oa}RzA2ekKuEVZbuMOB?Xf**`N5&m}?)TjigdY(rF z?~+a=`0);TlDa1j)1G`AfW? zRl883QPq=w zbB|bHEx%_u*$t@Yl#Vc;y*?2W^|^NJ)DmioQFr~1&>MSBL_b(YIpGWdDm3bT=Mgm1 e+h0K+-~H6qzyuy}`;+tYAZFmzUSVSYum1yJqxCBQ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 2617362..a441313 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -2,5 +2,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip networkTimeout=10000 +validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew index a69d9cb..1aa94a4 100755 --- a/gradlew +++ b/gradlew @@ -55,7 +55,7 @@ # Darwin, MinGW, and NonStop. # # (3) This script is generated from the Groovy template -# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt # within the Gradle project. # # You can find Gradle at https://github.com/gradle/gradle/. @@ -80,13 +80,11 @@ do esac done -APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit - -APP_NAME="Gradle" +# This is normally unused +# shellcheck disable=SC2034 APP_BASE_NAME=${0##*/} - -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD=maximum @@ -133,22 +131,29 @@ location of your Java installation." fi else JAVACMD=java - which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. Please set the JAVA_HOME variable in your environment to match the location of your Java installation." + fi fi # Increase the maximum file descriptors if we can. if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then case $MAX_FD in #( max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 MAX_FD=$( ulimit -H -n ) || warn "Could not query maximum file descriptor limit" esac case $MAX_FD in #( '' | soft) :;; #( *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 ulimit -n "$MAX_FD" || warn "Could not set maximum file descriptor limit to $MAX_FD" esac @@ -193,11 +198,15 @@ if "$cygwin" || "$msys" ; then done fi -# Collect all arguments for the java command; -# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of -# shell script including quotes and variable substitutions, so put them in -# double quotes to make sure that they get re-expanded; and -# * put everything else in single quotes, so that it's not re-expanded. + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. set -- \ "-Dorg.gradle.appname=$APP_BASE_NAME" \ diff --git a/gradlew.bat b/gradlew.bat index 53a6b23..7101f8e 100644 --- a/gradlew.bat +++ b/gradlew.bat @@ -26,6 +26,7 @@ if "%OS%"=="Windows_NT" setlocal set DIRNAME=%~dp0 if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME% @@ -42,11 +43,11 @@ set JAVA_EXE=java.exe %JAVA_EXE% -version >NUL 2>&1 if %ERRORLEVEL% equ 0 goto execute -echo. -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. +echo. 1>&2 +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 goto fail @@ -56,11 +57,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe if exist "%JAVA_EXE%" goto execute -echo. -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. +echo. 1>&2 +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 goto fail diff --git a/settings.gradle b/settings.gradle index 25c32b0..e1079b1 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,14 +1,10 @@ -pluginManagement { - repositories { - gradlePluginPortal() - maven { - name = 'MinecraftForge' - url = 'https://maven.minecraftforge.net/' - } - maven { url = 'https://maven.parchmentmc.org' } // Add this line - } -} - -plugins { - id 'org.gradle.toolchains.foojay-resolver-convention' version '0.7.0' -} +pluginManagement { + repositories { + maven { url "https://maven.fabricmc.net/" } + maven { url "https://maven.architectury.dev/" } + maven { url "https://files.minecraftforge.net/maven/" } + gradlePluginPortal() + } +} + +rootProject.name = 'ariasessentials' diff --git a/src/main/java/com/zontreck/AriasEssentials.java b/src/main/java/com/zontreck/AriasEssentials.java new file mode 100644 index 0000000..b0b1cf3 --- /dev/null +++ b/src/main/java/com/zontreck/AriasEssentials.java @@ -0,0 +1,71 @@ +package com.zontreck; + +import com.zontreck.block.DeprecatedModBlocks; +import com.zontreck.block.ModBlocks; +import com.zontreck.client.TimeBoostEntityRenderer; +import com.zontreck.commands.CommandRegistry; +import com.zontreck.configs.client.AEClientConfig; +import com.zontreck.configs.server.AEServerConfig; +import com.zontreck.effects.ModEffects; +import com.zontreck.effects.ModPotions; +import com.zontreck.enchantments.ModEnchantments; +import com.zontreck.entities.ModEntities; +import com.zontreck.items.DeprecatedModItems; +import com.zontreck.items.ModItems; +import com.zontreck.libzontreck.config.ServerConfig; +import net.minecraft.client.renderer.entity.EntityRenderers; +import net.minecraftforge.api.distmarker.Dist; +import net.minecraftforge.common.MinecraftForge; +import net.minecraftforge.eventbus.api.IEventBus; +import net.minecraftforge.eventbus.api.SubscribeEvent; +import net.minecraftforge.fml.ModLoadingContext; +import net.minecraftforge.fml.common.Mod; +import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent; +import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext; +import org.slf4j.ILoggerFactory; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import java.time.Instant; +import java.util.Random; +import java.util.logging.LogManager; + +@Mod(AriasEssentials.MOD_ID) +public final class AriasEssentials { + public static Logger LOGGER = LoggerFactory.getLogger("ariaessentials"); + public static final String MOD_ID = "ariasessentials"; + public static final Random random = new Random(Instant.now().getEpochSecond()); + + public AriasEssentials() { + // This code runs as soon as Minecraft is in a mod-load-ready state. + // However, some things (like registries and resources) may still be uninitialized. + // Proceed with mild caution. + + IEventBus bus = FMLJavaModLoadingContext.get().getModEventBus(); + LOGGER.info("/!\\ Loading Aria's Essentials Configuration Files /!\\"); + AEServerConfig.loadFromFile(); + AEClientConfig.loadFromFile(); + ServerConfig.init(); + LOGGER.info("/!\\ DONE LOADING AECONFIG /!\\"); + + ModItems.ITEMS.register(bus); + ModEntities.register(bus); + ModEffects.register(bus); + ModPotions.register(bus); + DeprecatedModItems.register(bus); + ModEnchantments.register(bus); + DeprecatedModBlocks.register(bus); + ModBlocks.register(bus); + + + + } + + @Mod.EventBusSubscriber(bus = Mod.EventBusSubscriber.Bus.MOD, value = Dist.CLIENT) + public static class ClientModEvents { + @SubscribeEvent + public static void onClientSetup(FMLClientSetupEvent ev) { + EntityRenderers.register(ModEntities.TIAB_ENTITY.get(), TimeBoostEntityRenderer::new); + } + } +} diff --git a/src/main/java/dev/zontreck/essentials/Messages.java b/src/main/java/com/zontreck/Messages.java similarity index 83% rename from src/main/java/dev/zontreck/essentials/Messages.java rename to src/main/java/com/zontreck/Messages.java index 4ef905b..f4b8bc5 100644 --- a/src/main/java/dev/zontreck/essentials/Messages.java +++ b/src/main/java/com/zontreck/Messages.java @@ -1,6 +1,5 @@ -package dev.zontreck.essentials; +package com.zontreck; -import dev.zontreck.libzontreck.chat.ChatColor; import net.minecraft.sounds.SoundEvent; import net.minecraft.sounds.SoundEvents; @@ -80,6 +79,21 @@ public class Messages { public static final String TP_EFFECTS_TOGGLED; + + public static final String PREFIX_UPDATED; + public static final String PREFIX_COLOR_UPDATED; + public static final String NICK_UPDATED; + public static final String NAME_COLOR_UPDATED; + public static final String CHAT_COLOR_UPDATED; + public static final String CONSOLE_ERROR; + public static final String STARTER_FAILURE_PERMISSIONS; + public static final String STARTER_KIT_GIVEN; + + public static final String FLIGHT_GIVEN; + public static final String FLIGHT_REMOVED; + public static final String BUILDER_DIMENSION_DISALLOWED; + + static{ ESSENTIALS_PREFIX = "!Gray![!Dark_Green!AE!Gray!] "; @@ -172,5 +186,19 @@ public class Messages { COOLDOWN_IN_PROGRESS = ESSENTIALS_PREFIX + "!Dark_Red!The command [0] is still on cooldown for another [1]"; TP_EFFECTS_TOGGLED = ESSENTIALS_PREFIX + "!Dark_Purple!The teleport effects preferences have been toggled to: [0]"; + + + + PREFIX_UPDATED = ESSENTIALS_PREFIX + " !Dark_Purple!Your prefix has been updated"; + PREFIX_COLOR_UPDATED = ESSENTIALS_PREFIX + "!Dark_Purple!Your prefix color has been updated"; + NICK_UPDATED = ESSENTIALS_PREFIX + "!Dark_Purple! Your nickname has been updated"; + NAME_COLOR_UPDATED = ESSENTIALS_PREFIX + "!Dark_Purple!Your name color has been updated"; + CHAT_COLOR_UPDATED = ESSENTIALS_PREFIX + "!Dark_Purple!Your chat color has been updated"; + CONSOLE_ERROR = ESSENTIALS_PREFIX + "!Dark_Red!This command can only be executed from within the game, and by a player"; + STARTER_FAILURE_PERMISSIONS = ESSENTIALS_PREFIX + "!Dark_Red!This command can only be executed by server operators"; + STARTER_KIT_GIVEN = ESSENTIALS_PREFIX + "!Dark_Purple!You have been given a starter kit. Welcome to the server."; + FLIGHT_GIVEN = ESSENTIALS_PREFIX + "!Dark_Green!You start to feel lighter than a feather"; + FLIGHT_REMOVED = ESSENTIALS_PREFIX + "!Dark_Red!You have a sinking feeling you are no longer lighter than a feather."; + BUILDER_DIMENSION_DISALLOWED = ESSENTIALS_PREFIX+"!Dark_Red!The builder dimension is disallowed for regular users. You must be a server operator."; } } diff --git a/src/main/java/com/zontreck/ariaslib/http/HTTPMethod.java b/src/main/java/com/zontreck/ariaslib/http/HTTPMethod.java new file mode 100644 index 0000000..162477a --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/http/HTTPMethod.java @@ -0,0 +1,9 @@ +package dev.zontreck.ariaslib.http; + +public enum HTTPMethod +{ + GET, + POST, + PUT, + DELETE +} diff --git a/src/main/java/com/zontreck/ariaslib/http/HTTPRequest.java b/src/main/java/com/zontreck/ariaslib/http/HTTPRequest.java new file mode 100644 index 0000000..158d92a --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/http/HTTPRequest.java @@ -0,0 +1,15 @@ +package dev.zontreck.ariaslib.http; + +public class HTTPRequest +{ + + public String url; + + public String method; + public String body; + public String contentType; + + protected HTTPRequest(){ + + } +} diff --git a/src/main/java/com/zontreck/ariaslib/http/HTTPRequestBuilder.java b/src/main/java/com/zontreck/ariaslib/http/HTTPRequestBuilder.java new file mode 100644 index 0000000..4e062d5 --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/http/HTTPRequestBuilder.java @@ -0,0 +1,134 @@ +package dev.zontreck.ariaslib.http; + + +import java.io.*; +import java.net.HttpURLConnection; +import java.net.MalformedURLException; +import java.net.URL; + +public class HTTPRequestBuilder +{ + + private HttpURLConnection connection; + private URL url; + private HTTPRequest request = new HTTPRequest(); + + public static HTTPRequestBuilder builder() + { + return new HTTPRequestBuilder(); + } + + protected HTTPRequestBuilder() + { + + } + + /** + * Sets the url in this request to the one supplied + * @param url The url to connect to + * @return Builder instance + * @throws MalformedURLException If the URL supplied was invalid + */ + public HTTPRequestBuilder withURL( String url) throws MalformedURLException { + request.url = url; + this.url = new URL(url); + + return this; + } + + /** + * Sets the HTTP Request method + * @param method The method you want to use + * @see HTTPMethod + * @return Builder instance + */ + public HTTPRequestBuilder withMethod(HTTPMethod method) + { + switch(method) + { + case GET: + { + request.method = "GET"; + break; + } + case POST: { + request.method = "POST"; + if(request.contentType.isEmpty()) request.contentType = "application/x-www-form-urlencoded"; + break; + } + case DELETE:{ + request.method = "DELETE"; + break; + } + case PUT:{ + request.method = "PUT"; + if(request.contentType.isEmpty()) request.contentType = "application/x-www-form-urlencoded"; + break; + } + } + + return this; + } + + /** + * Sets the request body. This may only be processed by the server when using POST or PUT, depending on the server's setup + * @param body The body to upload + * @return Builder Instance + */ + public HTTPRequestBuilder withBody(String body) + { + request.body = body; + return this; + } + + /** + * Sets the content type header + * Default: application/x-www-form-urlencoded for POST/PUT, and null/not present for GET + * @param type + * @return + */ + public HTTPRequestBuilder withContentType(String type) + { + request.contentType = type; + return this; + } + + public HTTPResponse build() + { + try { + connection = (HttpURLConnection) url.openConnection(); + connection.setRequestMethod(request.method); + byte[] array = request.body.getBytes("UTF-8"); + connection.setRequestProperty("Content-Length" , "" + array.length); + connection.setRequestProperty("Content-Type", request.contentType); + connection.setDoInput(true); + connection.setUseCaches(false); + connection.setDoOutput(true); + DataOutputStream dos = new DataOutputStream(connection.getOutputStream()); + dos.write(array); + dos.flush(); + dos.close(); + + + // Get the response body + InputStream inputStream = connection.getInputStream(); + BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream)); + StringBuilder response = new StringBuilder(); + String line; + + while ((line = reader.readLine()) != null) { + response.append(line); + } + reader.close(); + inputStream.close(); + + String responseBody = response.toString(); + + return new HTTPResponse(connection.getContentType(), connection.getResponseCode(), responseBody, request); + } catch (IOException e) { + throw new RuntimeException(e); + }finally { + connection.disconnect(); + } + } +} diff --git a/src/main/java/com/zontreck/ariaslib/http/HTTPResponse.java b/src/main/java/com/zontreck/ariaslib/http/HTTPResponse.java new file mode 100644 index 0000000..bd9bdfb --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/http/HTTPResponse.java @@ -0,0 +1,33 @@ +package dev.zontreck.ariaslib.http; + +public class HTTPResponse +{ + private String ContentType; + private int ResponseCode; + private String ResponseBody; + private HTTPRequest OriginalRequest; + + protected HTTPResponse(String contentType, int code, String body, HTTPRequest request){ + this.ContentType = contentType; + this.ResponseCode = code; + this.ResponseBody = body; + this.OriginalRequest = request; + + } + + public String getContentType() { + return ContentType; + } + + public int getResponseCode() { + return ResponseCode; + } + + public String getResponseBody() { + return ResponseBody; + } + + public HTTPRequest getOriginalRequest() { + return OriginalRequest; + } +} diff --git a/src/main/java/com/zontreck/ariaslib/terminal/Banners.java b/src/main/java/com/zontreck/ariaslib/terminal/Banners.java new file mode 100644 index 0000000..5545acd --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/terminal/Banners.java @@ -0,0 +1,47 @@ +package com.zontreck.ariaslib.terminal; + +import java.util.ArrayList; +import java.util.List; + +public class Banners +{ + + public static String generateBanner(String text) { + int maxLength = calculateMaxLength(text); + List bannerLines = new ArrayList<>(); + StringBuilder border = new StringBuilder(); + for (int i = 0; i < maxLength + 4; i++) { + border.append("*"); + } + bannerLines.add(border.toString()); + bannerLines.add("* " + centerText(text, maxLength) + " *"); + bannerLines.add(border.toString()); + return String.join("\n", bannerLines); + } + + private static String centerText(String text, int maxLength) { + StringBuilder centeredText = new StringBuilder(); + int spacesToAdd = (maxLength - text.length()) / 2; + for (int i = 0; i < spacesToAdd; i++) { + centeredText.append(" "); + } + centeredText.append(text); + for (int i = 0; i < spacesToAdd; i++) { + centeredText.append(" "); + } + if (centeredText.length() < maxLength) { + centeredText.append(" "); + } + return centeredText.toString(); + } + + private static int calculateMaxLength(String text) { + int maxLength = 0; + for (String line : text.split("\n")) { + if (line.length() > maxLength) { + maxLength = line.length(); + } + } + return maxLength; + } +} diff --git a/src/main/java/com/zontreck/ariaslib/terminal/Task.java b/src/main/java/com/zontreck/ariaslib/terminal/Task.java new file mode 100644 index 0000000..fb57e09 --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/terminal/Task.java @@ -0,0 +1,86 @@ +package com.zontreck.ariaslib.terminal; + +import com.zontreck.ariaslib.util.Progress; + +import java.util.TimerTask; + +public abstract class Task extends TimerTask implements Runnable { + public final String TASK_NAME; + private TaskCompletionToken token = new TaskCompletionToken ( ); + + public static final String CHECK = "P"; + public static final String FAIL = "F"; + // Else use the progress spinner from the Progress class + private boolean isSilent = false; + + public Task ( String name ) { + TASK_NAME = name; + } + + /** + * This constructor is meant to be used to create silent tasks that do not output to the console. (Example usage: DelayedExecutionService) + * + * @param name Task name + * @param silent Whether to print to the terminal + */ + public Task ( String name , boolean silent ) { + this ( name ); + isSilent = silent; + } + + + public boolean isComplete ( ) { + return token.get ( ); + } + + public void startTask ( ) { + Thread tx = new Thread(this); + tx.start(); + + if(! isSilent) + { + Thread tx2 = new Thread(new SpinnerTask(token, this)); + tx2.start(); + } + } + + public void stopTask ( ) { + if ( token.get ( ) && ! isSilent ) { + System.out.printf ( "\r" + TASK_NAME + "\t\t[" + token.status + "]\n" ); + } + } + + public void setSuccess ( ) { + token.completed ( CHECK ); + } + + public void setFail ( ) { + token.completed ( FAIL ); + } + + public class SpinnerTask extends Task { + public final Task task; + public final TaskCompletionToken token; + private final Progress spinner = new Progress ( 100 ); + + public SpinnerTask ( TaskCompletionToken token , Task parent ) { + super ( "spinner" , true ); + this.token = token; + this.task = parent; + } + + @Override + public void run ( ) { + while ( ! task.isComplete ( ) ) { + try { + Thread.sleep ( 50L ); + + if ( ! task.isSilent && ! task.isComplete ( ) ) + System.out.printf ( "\r" + task.TASK_NAME + "\t\t" + spinner.getSpinnerTick ( ) + "\r" ); + } catch ( Exception e ) { + e.printStackTrace ( ); + } + } + } + } +} \ No newline at end of file diff --git a/src/main/java/com/zontreck/ariaslib/terminal/TaskCompletionToken.java b/src/main/java/com/zontreck/ariaslib/terminal/TaskCompletionToken.java new file mode 100644 index 0000000..6094019 --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/terminal/TaskCompletionToken.java @@ -0,0 +1,20 @@ +package com.zontreck.ariaslib.terminal; + +import java.util.concurrent.atomic.AtomicBoolean; + +/** + * Should not be re-used for multiple tasks!!! + */ +public class TaskCompletionToken +{ + private AtomicBoolean complete = new AtomicBoolean(false); + public String status = ""; + public void completed(String reason){ + status=reason; + complete.set(true); + } + + public boolean get(){ + return complete.get(); + } +} diff --git a/src/main/java/com/zontreck/ariaslib/util/FileIO.java b/src/main/java/com/zontreck/ariaslib/util/FileIO.java new file mode 100644 index 0000000..f517adf --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/util/FileIO.java @@ -0,0 +1,51 @@ +package com.zontreck.ariaslib.util; + +import java.io.File; +import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.Paths; + +public class FileIO +{ + + public static String readFile(String filePath) { + try { + byte[] fileBytes = Files.readAllBytes(Paths.get(filePath)); + return new String(fileBytes); + } catch (IOException e) { + return "An error occurred: " + e.getMessage(); + } + } + public static void writeFile(String filePath, String newContent) { + try { + Files.write(Paths.get(filePath), newContent.getBytes()); + } catch (IOException e) { + } + } + + + /** + * Recursively delete a directory + * @param directory The folder to delete + */ + public static void deleteDirectory(File directory) { + if (directory.exists()) { + File[] files = directory.listFiles(); + if (files != null) { + for (File file : files) { + if (file.isDirectory()) { + deleteDirectory(file); + } else { + file.delete(); + } + } + } + // Now directory is empty, so delete it + directory.delete(); + System.out.println("Directory deleted: " + directory.getAbsolutePath()); + } else { + System.out.println("Directory does not exist: " + directory.getAbsolutePath()); + } + } +} + diff --git a/src/main/java/com/zontreck/ariaslib/util/Hashing.java b/src/main/java/com/zontreck/ariaslib/util/Hashing.java new file mode 100644 index 0000000..08c77c2 --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/util/Hashing.java @@ -0,0 +1,120 @@ +package com.zontreck.ariaslib.util; + +import java.security.MessageDigest; +import java.security.NoSuchAlgorithmException; + +public class Hashing +{ + + + /** + * A md5 hashing function that is compatible with literally every other hashing function out there + * @param input The string to hash + * @return The hash + */ + public static String md5(String input) { + try { + MessageDigest md = MessageDigest.getInstance("MD5"); + md.update(input.getBytes()); + + byte[] byteData = md.digest(); + + // Convert the byte array to a hexadecimal string + StringBuilder hexString = new StringBuilder(); + for (byte aByteData : byteData) { + String hex = Integer.toHexString(0xff & aByteData); + if (hex.length() == 1) { + hexString.append('0'); + } + hexString.append(hex); + } + return hexString.toString(); + } catch (NoSuchAlgorithmException e) { + e.printStackTrace(); + return null; + } + } + /** + * A md5 hashing function that is compatible with literally every other hashing function out there + * @param input The bytes to hash + * @return The hash + */ + public static String md5(byte[] input) { + try { + MessageDigest md = MessageDigest.getInstance("MD5"); + md.update(input); + + byte[] byteData = md.digest(); + + // Convert the byte array to a hexadecimal string + StringBuilder hexString = new StringBuilder(); + for (byte aByteData : byteData) { + String hex = Integer.toHexString(0xff & aByteData); + if (hex.length() == 1) { + hexString.append('0'); + } + hexString.append(hex); + } + return hexString.toString(); + } catch (NoSuchAlgorithmException e) { + e.printStackTrace(); + return null; + } + } + + + /** + * A sha256 hashing function that is compatible with literally every other hashing function out there + * @param input The string to hash + * @return The hash + */ + public static String sha256(String input) { + try { + MessageDigest md = MessageDigest.getInstance("SHA256"); + md.update(input.getBytes()); + + byte[] byteData = md.digest(); + + // Convert the byte array to a hexadecimal string + StringBuilder hexString = new StringBuilder(); + for (byte aByteData : byteData) { + String hex = Integer.toHexString(0xff & aByteData); + if (hex.length() == 1) { + hexString.append('0'); + } + hexString.append(hex); + } + return hexString.toString(); + } catch (NoSuchAlgorithmException e) { + e.printStackTrace(); + return null; + } + } + /** + * A sha256 hashing function that is compatible with literally every other hashing function out there + * @param input The bytes to hash + * @return The hash + */ + public static String sha256(byte[] input) { + try { + MessageDigest md = MessageDigest.getInstance("SHA256"); + md.update(input); + + byte[] byteData = md.digest(); + + // Convert the byte array to a hexadecimal string + StringBuilder hexString = new StringBuilder(); + for (byte aByteData : byteData) { + String hex = Integer.toHexString(0xff & aByteData); + if (hex.length() == 1) { + hexString.append('0'); + } + hexString.append(hex); + } + return hexString.toString(); + } catch (NoSuchAlgorithmException e) { + e.printStackTrace(); + return null; + } + } +} diff --git a/src/main/java/com/zontreck/ariaslib/util/Lists.java b/src/main/java/com/zontreck/ariaslib/util/Lists.java new file mode 100644 index 0000000..f0fe39b --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/util/Lists.java @@ -0,0 +1,94 @@ +package com.zontreck.ariaslib.util; + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; + +public class Lists +{ + /** + * Programatically constructs a list + * @param values The list of values + * @return The new list + * @param An arbitrary type parameter + */ + public static List of(T... values) + { + List arr = new ArrayList<>(); + for(T value : values) + { + arr.add(value); + } + + return arr; + } + + + /** + * Splits a string into a list + * @param input The string to split + * @param delimiters The list of delimiters + * @return A non-strided list + */ + public static List split(String input, String... delimiters) { + List result = new ArrayList<>(); + StringBuilder regex = new StringBuilder("("); + + // Constructing the regular expression pattern with provided delimiters + for (String delimiter : delimiters) { + regex.append(delimiter).append("|"); + } + regex.deleteCharAt(regex.length() - 1); // Remove the extra '|' character + regex.append(")"); + + String[] tokens = input.split(regex.toString()); + + // Add non-empty tokens to the result list + for (String token : tokens) { + if (!token.isEmpty()) { + result.add(token); + } + } + + return result; + } + + /** + * Split a string, and keep the delimiters + * @param input The string to be parsed and split + * @param delimiters A list of delimiters + * @return A strided list containing the parsed options, and the delimiters + */ + public static List splitWithDelim(String input, String... delimiters) { + List result = new ArrayList<>(); + StringBuilder regex = new StringBuilder("("); + + // Constructing the regular expression pattern with provided delimiters + for (String delimiter : delimiters) { + regex.append(delimiter).append("|"); + } + regex.deleteCharAt(regex.length() - 1); // Remove the extra '|' character + regex.append(")"); + + // Splitting the input string using the regex pattern + String[] tokens = input.split(regex.toString()); + + // Adding tokens and delimiters to the result list in a strided manner + for (int i = 0; i < tokens.length; i++) { + if (!tokens[i].isEmpty()) { + result.add(tokens[i]); + } + // Adding delimiter if it exists and it's not the last token + if (i < tokens.length - 1) { + result.add(input.substring(input.indexOf(tokens[i]) + tokens[i].length(), input.indexOf(tokens[i + 1]))); + } + } + + return result; + } + + + private Lists(){ + + } +} diff --git a/src/main/java/com/zontreck/ariaslib/util/Maps.java b/src/main/java/com/zontreck/ariaslib/util/Maps.java new file mode 100644 index 0000000..d8de013 --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/util/Maps.java @@ -0,0 +1,49 @@ +package com.zontreck.ariaslib.util; + +import java.util.HashMap; +import java.util.Map; + +/** + * Utility class to assist in creating a dictionary programmatically in one line of code. + */ +public class Maps +{ + /** + * This takes a list of entries and returns a HashMap + * @param entries The entries you want in your hashmap + * @return The map itself + * @param Any typed parameter + * @param Any typed parameter + */ + public static Map of(Entry... entries) { + Map map = new HashMap<>(); + for(Entry E : entries) + { + map.put(E.key, E.value); + } + + return map; + } + + /** + * A virtual entry used only by the Maps#of function. + * @see Maps#of(Entry[]) + * @param Any typed parameter + * @param Any typed parameter + */ + public static class Entry { + public final A key; + public final B value; + + /** + * Initializes the readonly entry + * @param a The dictionary key + * @param b The value + */ + public Entry(A a, B b) + { + this.key=a; + this.value=b; + } + } +} diff --git a/src/main/java/com/zontreck/ariaslib/util/MathUtil.java b/src/main/java/com/zontreck/ariaslib/util/MathUtil.java new file mode 100644 index 0000000..4dc7924 --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/util/MathUtil.java @@ -0,0 +1,18 @@ +package com.zontreck.ariaslib.util; + +/** + * This class will be used to house math helper functions + */ +public class MathUtil +{ + /** + * A newer helper function to get the percentage with large number support + * @param current Min value + * @param max Maximum value for progress + * @return Percentage + */ + public static int getPercent(long current, long max) + { + return Math.round(current*100/max); + } +} diff --git a/src/main/java/com/zontreck/ariaslib/util/Percent.java b/src/main/java/com/zontreck/ariaslib/util/Percent.java new file mode 100644 index 0000000..a8e75d7 --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/util/Percent.java @@ -0,0 +1,23 @@ +package com.zontreck.ariaslib.util; + +import java.io.PrintStream; + +public class Percent +{ + int current; + int maximum; + + public Percent(int cur, int max) + { + current=cur; + maximum=max; + } + + + public int get() + { + return ((current * 100) / maximum); + } + + +} diff --git a/src/main/java/com/zontreck/ariaslib/util/Progress.java b/src/main/java/com/zontreck/ariaslib/util/Progress.java new file mode 100644 index 0000000..af51310 --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/util/Progress.java @@ -0,0 +1,56 @@ +package com.zontreck.ariaslib.util; + +import java.util.concurrent.atomic.AtomicInteger; + +public class Progress +{ + private int maximum; + private int current; + private AtomicInteger tickNum = new AtomicInteger(0); + private static final String TICKS="-\\|/"; + + public String getSpinnerTick() + { + if(tickNum.get()>=TICKS.length()) tickNum.set(0); + + return "[" + TICKS.substring(tickNum.getAndIncrement(), tickNum.get()) + "]"; + } + + public Progress(int maximum) + { + current=0; + this.maximum=maximum; + } + + public int getPercent(){ + return (current*100/maximum); + } + + public String getPercentStr() + { + return (getPercent()+"%"); + } + + public static int getPercentOf(int current, int max) + { + return (current*100/max); + } + + public void increment(){ + current++; + sanity(); + } + private void sanity(){ + if(current > maximum) current = maximum; + if(current < 0)current = 0; + } + public void decrement(){ + current--; + sanity(); + } + + public void setCurrent(int cur) + { + current=cur; + } +} diff --git a/src/main/java/com/zontreck/ariaslib/util/ProgressBar.java b/src/main/java/com/zontreck/ariaslib/util/ProgressBar.java new file mode 100644 index 0000000..5fbcb84 --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/util/ProgressBar.java @@ -0,0 +1,66 @@ +package com.zontreck.ariaslib.util; + +import java.io.PrintStream; + +/** + * Utility to create an ascii progress bar + */ +public class ProgressBar +{ + + private static final int DEFAULT_BAR_WIDTH = 50; + + /** + * Reserved spaces for the brackets, and the carrot, and the percent value. + */ + private static final int PROGRESS_BAR_RESERVED=5; + + /** + * Always will return 80 + * @return 80 + */ + private static int getConsoleWidth() { + return 80; // Default console width, can be adjusted for different consoles + } + + /** + * Build a progress bar + *

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

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

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

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

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

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

+ * This is used to contain common player data, as well as be capable of serializing the player's data and sending to/from the client. + */ +public class Profile { + public String username; + public String user_id; + public String prefix; + public String nickname; + public String name_color; // ChatColor.X + public String prefix_color; + public String chat_color; + public Boolean flying; + public int available_vaults; + public int deaths; + public Homes homes; + + + public ServerPlayer player; + private File accessor; + private CompoundTag miscData; + public CompoundTag NBT; + + public static final Path BASE; + public static final Profile SYSTEM; + static{ + BASE = EssentialsDatastore.of("profiles", true); + + + SYSTEM = new Profile("SYSTEM", "", "SYSTEM", ChatColor.DARK_RED, LibZontreck.NULL_ID.toString(), "", "", false, 0, null, 0, null, null, new CompoundTag(), new Homes(LibZontreck.NULL_ID.toString())); + } + + public Profile(String username, String prefix, String nickname, String name_color, String ID, String prefix_color, String chat_color, Boolean isFlying, int vaults, File vaultFile, int deathCount, ServerPlayer player, CompoundTag misc, CompoundTag NBT, Homes homes) { + this.username = username; + this.prefix = prefix; + this.nickname = nickname; + this.name_color = name_color; + this.user_id = ID; + this.prefix_color = prefix_color; + this.chat_color = chat_color; + this.flying=isFlying; + this.available_vaults=vaults; + this.deaths=deathCount; + this.player=player; + miscData = misc; + this.NBT = NBT; + this.homes = homes; + + + this.accessor = vaultFile; + } + + public boolean runSanityChecks() + { + if(player == null) return false; + return true; + } + + + /** + * Gets, or loads from persistent data, the user's LibZ profile + * @param UUID Player ID + * @return Profile + * @throws UserProfileNotYetExistsException When the profile has not yet been created + */ + public static Profile get_profile_of(String UUID) throws UserProfileNotYetExistsException + { + if(LibZontreck.PROFILES.containsKey(UUID)){ + Profile prof = LibZontreck.PROFILES.get(UUID); + if(!prof.runSanityChecks()) + { + prof.player = ServerUtilities.getPlayerByID(UUID); + } + return prof; + }else { + // Create or load profile + Path userProfile = BASE.resolve(UUID); + if(userProfile.toFile().exists()) + { + // Load profile data + File ace = userProfile.resolve("profile.nbt").toFile(); + try { + Profile actual = load(NbtIo.read(ace), ace, ServerUtilities.getPlayerByID(UUID)); + LibZontreck.PROFILES.put(UUID, actual); + return actual; + } catch (IOException e) { + throw new UserProfileNotYetExistsException(UUID); + } catch (NullPointerException e) + { + throw new UserProfileNotYetExistsException(UUID); + } + + }else { + // Create directory, then throw a exception so a new profile gets created + try { + Files.createDirectories(userProfile); + } catch (IOException e) { + e.printStackTrace(); + } + throw new UserProfileNotYetExistsException(UUID); + } + } + } + + private static Profile load(CompoundTag tag, File accessor, ServerPlayer player) + { + return new Profile(tag.getString("user"), tag.getString("prefix"), tag.getString("nick"), tag.getString("nickc"), tag.getString("id"), tag.getString("prefixc"), tag.getString("chatc"), tag.getBoolean("flying"), tag.getInt("vaults"), accessor, tag.getInt("deaths"), player, tag.getCompound("misc"), tag.getCompound("data"), Homes.deserialize(tag.getCompound("homes"))); + } + + /** + * Generate a new user profile. + * + * @param player The player to generate the profile for + */ + private static void generateNewProfile(ServerPlayer player) + { + + Path userProfile = BASE.resolve(player.getStringUUID()); + if(userProfile.toFile().exists()) + { + // Load profile data + File ace = userProfile.resolve("profile.nbt").toFile(); + Profile template = new Profile(player.getName().getString(), "Member", player.getDisplayName().getString(), ChatColor.GREEN, player.getStringUUID(), ChatColor.AQUA, ChatColor.WHITE, false, 0, ace, 0, player, new CompoundTag(), new CompoundTag(), new Homes(player.getStringUUID())); + template.commit(); + + LibZontreck.PROFILES.put(player.getStringUUID(), template); + + + MinecraftForge.EVENT_BUS.post(new ProfileCreatedEvent(template)); + return; + }else { + try { + Files.createDirectories(userProfile); + } catch (IOException e) { + e.printStackTrace(); + } + + generateNewProfile(player); + } + } + + public static void unload(Profile prof) + { + LibZontreck.PROFILES.remove(prof.user_id); + + + if(MinecraftForge.EVENT_BUS.post(new ProfileUnloadingEvent(prof, prof.player))) + { + prof.commit(); + } + LibZontreck.LOGGER.info("Profile is unloaded for "+prof.username); + MinecraftForge.EVENT_BUS.post(new ProfileUnloadedEvent(prof.user_id)); + prof=null; + } + + /** + * Creates a profile if it does not yet exist + * @param play Player + * @return The existing, or new, profile instance. + */ + public static Profile factory(ServerPlayer play) + { + try { + return get_profile_of(play.getStringUUID()); + } catch (UserProfileNotYetExistsException e) { + generateNewProfile(play); + return factory(play); + } + } + + /** + * Save the profile to disk + */ + public void commit() + { + // Save data to FileTree + CompoundTag serial = new CompoundTag(); + serial.putString("user", username); + serial.putString("prefix", prefix); + serial.putString("nick", nickname); + serial.putString("id", user_id); + serial.putString("nickc", name_color); + serial.putString("prefixc", prefix_color); + serial.putString("chatc", chat_color); + serial.putBoolean("flying", flying); + serial.putInt("vaults", available_vaults); + serial.putInt("deaths", deaths); + ProfileSavingEvent event = new ProfileSavingEvent(this, miscData); + MinecraftForge.EVENT_BUS.post(event); + serial.put("misc", event.tag); + serial.put("data", NBT); + serial.put("homes", homes.serialize()); + + + + try { + NbtIo.write(serial, accessor); + } catch (IOException e) { + e.printStackTrace(); + } + } +} diff --git a/src/main/java/com/zontreck/libzontreck/profiles/UserProfileNotYetExistsException.java b/src/main/java/com/zontreck/libzontreck/profiles/UserProfileNotYetExistsException.java new file mode 100644 index 0000000..fae5a15 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/profiles/UserProfileNotYetExistsException.java @@ -0,0 +1,9 @@ +package com.zontreck.libzontreck.profiles; + +public class UserProfileNotYetExistsException extends Exception{ + String playerID; + public UserProfileNotYetExistsException(String id){ + super("A user profile does not yet exist"); + playerID=id; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/types/ModMenuTypes.java b/src/main/java/com/zontreck/libzontreck/types/ModMenuTypes.java new file mode 100644 index 0000000..7c095d7 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/types/ModMenuTypes.java @@ -0,0 +1,29 @@ +package com.zontreck.libzontreck.types; + +import com.zontreck.libzontreck.LibZontreck; +import com.zontreck.libzontreck.menus.ChestGUIMenu; +import net.minecraft.world.inventory.AbstractContainerMenu; +import net.minecraft.world.inventory.MenuType; +import net.minecraftforge.common.extensions.IForgeMenuType; +import net.minecraftforge.eventbus.api.IEventBus; +import net.minecraftforge.network.IContainerFactory; +import net.minecraftforge.registries.DeferredRegister; +import net.minecraftforge.registries.ForgeRegistries; +import net.minecraftforge.registries.RegistryObject; + +public class ModMenuTypes +{ + public static DeferredRegister> REGISTRY = DeferredRegister.create(ForgeRegistries.MENU_TYPES, LibZontreck.MOD_ID); + + public static RegistryObject> CHEST_GUI_MENU = registerMenuType(ChestGUIMenu::new, "chestgui"); + + private static RegistryObject> registerMenuType(IContainerFactory factory, String name) + { + return REGISTRY.register(name, ()-> IForgeMenuType.create(factory)); + } + + public static void register(IEventBus bus) + { + REGISTRY.register(bus); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/util/BinUtil.java b/src/main/java/com/zontreck/libzontreck/util/BinUtil.java new file mode 100644 index 0000000..d17c985 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/BinUtil.java @@ -0,0 +1,59 @@ +package com.zontreck.libzontreck.util; + +import java.time.Instant; +import java.util.ArrayList; +import java.util.List; +import java.util.Random; + +public class BinUtil { + private static final char[] HEX_ARRAY = "0123456789ABCDEF".toCharArray(); + + /** + * Converts a byte array to hexadecimal + * @param bytes + * @return + */ + public static String bytesToHex(byte[] bytes) { + char[] hexChars = new char[bytes.length * 2]; + for (int j = 0; j < bytes.length; j++) { + int v = bytes[j] & 0xFF; + hexChars[j * 2] = HEX_ARRAY[v >>> 4]; + hexChars[j * 2 + 1] = HEX_ARRAY[v & 0x0F]; + } + return new String(hexChars); + } + + public static byte[] hexToBytes(String hexStr) + { + List bList = new ArrayList<>(); + for(int i=0;i b) + { + byte[] ret = new byte[b.size()]; + int i=0; + for(byte bx : b) + { + ret[i] = bx; + i++; + } + return ret; + } + + /** + * @return A random instance backed by the time including milliseconds as the seed. + */ + public static Random getARandomInstance() + { + return new Random(Instant.now().toEpochMilli()); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/util/BlocksUtil.java b/src/main/java/com/zontreck/libzontreck/util/BlocksUtil.java new file mode 100644 index 0000000..dea2e2c --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/BlocksUtil.java @@ -0,0 +1,29 @@ +package com.zontreck.libzontreck.util; + +import com.zontreck.libzontreck.vectors.Vector3d; +import net.minecraft.server.level.ServerLevel; + +import java.util.ArrayList; +import java.util.List; + +/** + * Contains helper functions for block position calculations + */ +public class BlocksUtil +{ + /** + * Gathers a list of positions for like-blocks in a vein. This can accept a limit of -1, but has a hard cap at 512 blocks + * @param level The level to find the vein in + * @param start Starting position for vein + * @param limit The applicable limit for vein detection + * @return List of positions for the vein + */ + public static List VeinOf(ServerLevel level, Vector3d start, int limit) + { + List ret = new ArrayList<>(); + + + + return ret; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/util/ChatHelpers.java b/src/main/java/com/zontreck/libzontreck/util/ChatHelpers.java new file mode 100644 index 0000000..cdea9b5 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/ChatHelpers.java @@ -0,0 +1,155 @@ +package com.zontreck.libzontreck.util; + +import java.security.MessageDigest; +import java.security.NoSuchAlgorithmException; +import java.util.UUID; + +import com.zontreck.libzontreck.LibZontreck; +import com.zontreck.libzontreck.chat.ChatColor; +import net.minecraft.network.chat.*; +import net.minecraft.server.MinecraftServer; +import net.minecraft.server.level.ServerPlayer; +import net.minecraft.world.entity.player.Player; + +public class ChatHelpers { + public static void broadcastActionBar(Component message, MinecraftServer server) + { + server.execute(new Runnable(){ + @Override + public void run() + { + for (ServerPlayer player : server.getPlayerList().getPlayers()) { + player.displayClientMessage(message, true); + } + LibZontreck.LOGGER.info("[ALL] "+message.getContents()); + } + }); + } + + public static void broadcast(Component message, MinecraftServer server) + { + server.execute(new Runnable(){ + @Override + public void run() + { + for (ServerPlayer player : server.getPlayerList().getPlayers()) { + player.displayClientMessage(message, false); + } + LibZontreck.LOGGER.info("[ALL] "+message.getContents()); + } + }); + } + + public static void broadcastTo(UUID ID, Component message, MinecraftServer server, boolean actionBar) + { + server.execute(new Runnable(){ + @Override + public void run() + { + ServerPlayer play = server.getPlayerList().getPlayer(ID); + if(play==null)return; + + + play.displayClientMessage(message, actionBar); + + LibZontreck.LOGGER.info("[SERVER] -> ["+play.getName().getContents()+"] "+message.getContents()); + } + }); + } + + public static void broadcastTo(UUID ID, Component message, MinecraftServer server) + { + broadcastTo(ID, message, server, false); + } + + public static void broadcastToAbove(UUID ID, Component message, MinecraftServer server) + { + broadcastTo(ID, message, server, true); + } + public static void broadcastTo(Player ID, Component message, MinecraftServer server) + { + broadcastTo(ID.getUUID(), message, server, false); + } + + public static void broadcastToAbove(Player ID, Component message, MinecraftServer server) + { + broadcastTo(ID.getUUID(), message, server, true); + } + + public static String hashOfMd5(String input) throws NoSuchAlgorithmException { + MessageDigest md5 = MessageDigest.getInstance("md5"); + md5.update(input.getBytes()); + return asHex(md5.digest()); + } + public static String hashOfSha256(String input) throws NoSuchAlgorithmException { + MessageDigest md5 = MessageDigest.getInstance("sha-256"); + md5.update(input.getBytes()); + return asHex(md5.digest()); + } + + public static String hashOfMd5(byte[] input) throws NoSuchAlgorithmException { + MessageDigest md5 = MessageDigest.getInstance("md5"); + md5.update(input); + return asHex(md5.digest()); + } + public static String hashOfSha256(byte[] input) throws NoSuchAlgorithmException { + MessageDigest md5 = MessageDigest.getInstance("sha-256"); + md5.update(input); + return asHex(md5.digest()); + } + + public static String asHex(byte[] input) + { + return BinUtil.bytesToHex(input); + } + + /** + * Returns the output with colors applied, and chat entries replaced using [number] as the format + * @param input + * @param inputs Entries to replace with in input + * @return + */ + public static MutableComponent macro(String input, String... inputs) + { + return Component.literal(macroize(input,inputs)); + } + /** + * Returns the output with colors applied, and chat entries replaced using [number] as the format + * @param input + * @param inputs Entries to replace with in input + * @return + */ + public static String macroize(String input, String... inputs) + { + String output = input; + for (int i = 0; i < inputs.length; i++) { + String inp = inputs[i]; + + output = output.replaceAll("\\["+String.valueOf(i)+"]", inp); + } + + return ChatColor.doColors(output); + } + + /** + * Merges the styles + * @param comp The original component + * @param ce Click event to add to the component + * @return Component + Merged Event + */ + public static MutableComponent applyClickEvent(MutableComponent comp, ClickEvent ce) + { + return comp.setStyle(comp.getStyle().withClickEvent(ce)); + } + + /** + * Merges the styles + * @param comp The original component + * @param ce Hover event to add to the component + * @return Component + Merged Event + */ + public static MutableComponent applyHoverEvent(MutableComponent comp, HoverEvent ce) + { + return comp.setStyle(comp.getStyle().withHoverEvent(ce)); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/util/FileTreeDatastore.java b/src/main/java/com/zontreck/libzontreck/util/FileTreeDatastore.java new file mode 100644 index 0000000..c6c41b4 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/FileTreeDatastore.java @@ -0,0 +1,49 @@ +package com.zontreck.libzontreck.util; + +import java.io.File; +import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.Path; +import java.util.ArrayList; +import java.util.List; + +import net.minecraftforge.fml.loading.FMLPaths; + +public class FileTreeDatastore { + private static final Path BASE; + + static{ + Path X = FMLPaths.CONFIGDIR.get().resolve("arias_mods"); + BASE=X; + if(!BASE.toFile().exists()) + { + try { + Files.createDirectory(BASE); + } catch (IOException e) { + e.printStackTrace(); + } + } + } + + public static String get() + { + return BASE.toString(); + } + + public static Path of(String nick) + { + return BASE.resolve(nick); + } + + public static List getListOfFiles(Path files) + { + List fileList = new ArrayList<>(); + + File[] entries = files.toFile().listFiles(); + + for (File file : entries) { + fileList.add(file); + } + return fileList; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/util/HttpHelper.java b/src/main/java/com/zontreck/libzontreck/util/HttpHelper.java new file mode 100644 index 0000000..88411a0 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/HttpHelper.java @@ -0,0 +1,22 @@ +package com.zontreck.libzontreck.util; + +import java.net.URL; +import java.util.Scanner; + +public class HttpHelper { + public static String getFrom(URL url) + { + String data = ""; + try (Scanner s = new Scanner(url.openStream())) + { + s.useDelimiter("\\A"); + data = s.hasNext() ? s.next() : ""; + }catch(Exception e) + { + + } + + + return data; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/util/ItemUtils.java b/src/main/java/com/zontreck/libzontreck/util/ItemUtils.java new file mode 100644 index 0000000..124de48 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/ItemUtils.java @@ -0,0 +1,65 @@ +package com.zontreck.libzontreck.util; + +import java.util.*; + +import net.minecraft.core.Registry; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.ListTag; +import net.minecraft.nbt.Tag; +import net.minecraft.server.level.ServerPlayer; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.enchantment.Enchantment; +import net.minecraft.world.item.enchantment.EnchantmentHelper; +import net.minecraftforge.registries.ForgeRegistries; + +public class ItemUtils { + public static Map getEnchantments(ItemStack stack) + { + + //ListTag enchants = stack.getEnchantmentTags(); + Map enchantments = EnchantmentHelper.getEnchantments(stack); + return enchantments; + + /*Map enchantments = new HashMap<>(); + Iterator enchantsIterator = enchants.iterator(); + while(enchantsIterator.hasNext()) + { + CompoundTag theTag = (CompoundTag)enchantsIterator.next(); + Enchantment enchant = EnchantmentHelper. + Enchantment ench = .getOptional(EnchantmentHelper.getEnchantmentId(theTag)).get(); + + Integer level = EnchantmentHelper.getEnchantmentLevel(theTag); + enchantments.put(ench, level); + + } + + return enchantments;*/ + } + + public static Integer getEnchantmentLevel(Enchantment ench, ItemStack stack) + { + Integer ret = 0; + + try{ + + Map enchants = getEnchantments(stack); + ret=enchants.get(ench); + }catch(Exception e) + { + ret =0; + }finally{ + if(ret == null)ret =0; + } + + return ret; + } + + public static List getPlayerInventory(ServerPlayer player) { + List ret = new ArrayList<>(); + for(int i =0;i } + diff --git a/src/main/java/com/zontreck/libzontreck/util/PositionUtil.java b/src/main/java/com/zontreck/libzontreck/util/PositionUtil.java new file mode 100644 index 0000000..3f808f4 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/PositionUtil.java @@ -0,0 +1,156 @@ +package com.zontreck.libzontreck.util; + +import com.zontreck.libzontreck.api.Vector3; +import com.zontreck.libzontreck.vectors.Vector3d; +import com.zontreck.libzontreck.vectors.Vector3i; + +import java.util.ArrayList; +import java.util.Iterator; +import java.util.List; + +/** + * Provides helper functions for position related things + */ +public class PositionUtil +{ + + public static List makeCube(Vector3 p1, Vector3 p2) + { + List vecs = new ArrayList<>(); + Vector3 work = new Vector3d(); + Vector3d v1 = p1.asVector3d(); + Vector3d v2 = p2.asVector3d(); + + double xx = v1.x; + double yy = v1.y; + double zz = v1.z; + + int yState = 0; + int zState = 0; + int xState = 0; + + for(xx = Math.round(v1.x); (xx != Math.round(v2.x) && xState != 2);) + { + for(zz = Math.round(v1.z); (zz != Math.round(v2.z) && zState != 2);) + { + for(yy = Math.round(v1.y); (yy != Math.round(v2.y) && yState != 2);) + { + work = new Vector3d(xx, yy, zz); + + if(!vecs.contains(work)) vecs.add(work); + + if(yy > v2.y) + { + yy -= 1.0; + if(yy == Math.round(v2.y) && yState == 0) + { + yState++; + }else{ + if(yState == 1) + { + yState ++; + } + } + } else if(yy < v2.y) + { + yy += 1.0; + if(yy == Math.round(v2.y) && yState == 0){ + yState ++; + }else { + if(yState == 1)yState++; + } + } + } + + yState=0; + work = new Vector3d(xx,yy,zz); + + if(!vecs.contains(work)) vecs.add(work); + + if(zz > v2.z) + { + zz -= 1.0; + + if(zz == Math.round(v2.z) && zState == 0)zState++; + else{ + if(zState == 1)zState++; + } + }else if(zz < v2.z) + { + zz += 1.0; + + if(zz == Math.round(v2.z) && zState == 0)zState++; + else { + if(zState==1)zState++; + } + } + } + + zState=0; + work = new Vector3d(xx,yy,zz); + + if(!vecs.contains(work)) vecs.add(work); + + if(xx > v2.x) + { + xx -= 1.0; + + if(xx == Math.round(v2.x) && xState == 0) xState++; + else{ + if(xState == 1)xState++; + } + }else if(xx < v2.x) + { + xx += 1.0; + + if(xx == Math.round(v2.x) && xState==0)xState++; + else{ + if(xState==1)xState++; + } + } + } + + return vecs; + } + + + public static List sortAscending(List vecs) + { + + List copy = new ArrayList<>(vecs); + List sorted = new ArrayList<>(); + + + while(copy.size()>0) + { + Vector3 lowest = findFirstLowestPosition(copy); + copy.remove(lowest); + sorted.add(lowest); + } + + return sorted; + } + + public static Vector3 findFirstLowestPosition(List vecs) + { + + Vector3i lowest = new Vector3i(0, 500, 0); + List copy = new ArrayList<>(vecs); + + Iterator it = copy.iterator(); + while(it.hasNext()) + { + Vector3i entry = it.next().asVector3i(); + if(entry.y < lowest.y) + { + lowest = entry; + it.remove(); + }else it.remove(); + } + + return lowest; + + } + + +} diff --git a/src/main/java/com/zontreck/libzontreck/util/SNbtIo.java b/src/main/java/com/zontreck/libzontreck/util/SNbtIo.java new file mode 100644 index 0000000..64d5942 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/SNbtIo.java @@ -0,0 +1,45 @@ +package com.zontreck.libzontreck.util; + +import com.mojang.brigadier.exceptions.CommandSyntaxException; +import com.zontreck.ariaslib.util.FileIO; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.NbtUtils; + +import java.io.File; +import java.nio.file.Path; + +/** + * Provides helpers for reading and writing snbt to file + */ +public class SNbtIo +{ + /** + * Read the file at the path, and deserialize from snbt + * @param path The file to load + * @return The deserialized compound tag, or a blank tag + */ + public static CompoundTag loadSnbt(Path path) + { + if(!path.toFile().exists()) + return new CompoundTag(); + else { + File fi = path.toFile(); + try { + return NbtUtils.snbtToStructure(FileIO.readFile(fi.getAbsolutePath())); + } catch (CommandSyntaxException e) { + return new CompoundTag(); + } + } + } + + /** + * Writes the tag to the file specified + * @param path The file to write + * @param tag The tag to serialize + */ + public static void writeSnbt(Path path, CompoundTag tag) + { + String snbt = NbtUtils.structureToSnbt(tag); + FileIO.writeFile(path.toFile().getAbsolutePath(), snbt); + } +} \ No newline at end of file diff --git a/src/main/java/com/zontreck/libzontreck/util/ServerUtilities.java b/src/main/java/com/zontreck/libzontreck/util/ServerUtilities.java new file mode 100644 index 0000000..7de8ada --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/ServerUtilities.java @@ -0,0 +1,100 @@ +package com.zontreck.libzontreck.util; + +import java.util.UUID; +import java.util.function.Function; +import java.util.function.Supplier; + +import com.zontreck.libzontreck.LibZontreck; +import com.zontreck.libzontreck.exceptions.InvalidSideException; +import com.zontreck.libzontreck.networking.ModMessages; +import com.zontreck.libzontreck.networking.packets.IPacket; +import net.minecraft.network.FriendlyByteBuf; +import net.minecraft.server.level.ServerPlayer; +import net.minecraftforge.fml.LogicalSide; +import net.minecraftforge.network.NetworkEvent; +import net.minecraftforge.network.simple.SimpleChannel; +import net.minecraftforge.server.ServerLifecycleHooks; + +public class ServerUtilities +{ + /** + * This function only exists on the server + * @param id Player ID + * @return The server player associated with the ID + */ + public static ServerPlayer getPlayerByID(String id) + { + return ServerLifecycleHooks.getCurrentServer().getPlayerList().getPlayer(UUID.fromString(id)); + } + + /** + * Handles the registration of packets + * @param + * @param channel + * @param type + * @param inst + * @param decoder + */ + public static void registerPacket(SimpleChannel channel, Class type, X inst, Function decoder) + { + IPacket packet = (IPacket) inst; + channel.messageBuilder(type, ModMessages.id(), packet.getDirection()) + .decoder(decoder) + .encoder(X::toBytes) + .consumerMainThread(X::handle) + .add(); + } + + /** + * Handles the tedious and repetitive actions in the handle packet segment of code + * @param context + * @param run + * @return + */ + public static boolean handlePacket(Supplier context, Runnable run) + { + NetworkEvent.Context ctx = context.get(); + ctx.enqueueWork(run); + + return true; + } + + /** + * Checks if the mod is running on the server + * @return True if the mod is on the server + */ + public static boolean isServer() + { + return (LibZontreck.CURRENT_SIDE == LogicalSide.SERVER); + } + + /** + * Checks if the mod is running on the client + * @return True if the mod is on the client + */ + public static boolean isClient() + { + return !isServer(); + } + + public static boolean playerIsOffline(UUID ID) throws InvalidSideException { + if(isClient())throw new InvalidSideException("This can only be called on the server"); + + if(ServerLifecycleHooks.getCurrentServer().getPlayerList().getPlayer(ID) == null) return true; + else return false; + } + + /** + * Checks if the user has operator permissions on the server + * @param ID The player ID + * @return True if the player is op + */ + public static boolean playerIsOp(UUID ID) + { + ServerPlayer player = getPlayerByID(ID.toString()); + if(player.hasPermissions(player.getServer().getOperatorUserPermissionLevel())) + { + return true; + }else return false; + } +} \ No newline at end of file diff --git a/src/main/java/com/zontreck/libzontreck/util/TagUtils.java b/src/main/java/com/zontreck/libzontreck/util/TagUtils.java new file mode 100644 index 0000000..62b8b14 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/TagUtils.java @@ -0,0 +1,45 @@ +package com.zontreck.libzontreck.util; + +import net.minecraft.nbt.CompoundTag; + +public class TagUtils +{ + /** + * Get either the entry, or supply a default value + * @param tag + * @param entry + * @param other + * @return + */ + public static int intOr(CompoundTag tag, String entry, int other) + { + if(tag.contains(entry)) return tag.getInt(entry); + else return other; + } + + /** + * Get either the entry, or supply a default value + * @param tag + * @param entry + * @param other + * @return + */ + public static String strOr(CompoundTag tag, String entry, String other) + { + if(tag.contains(entry)) return tag.getString(entry); + else return other; + } + + /** + * Get either the entry, or supply a default value + * @param tag + * @param entry + * @param other + * @return + */ + public static boolean boolOr(CompoundTag tag, String entry, boolean other) + { + if(tag.contains(entry)) return tag.getBoolean(entry); + else return other; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/util/heads/CreditsEntry.java b/src/main/java/com/zontreck/libzontreck/util/heads/CreditsEntry.java new file mode 100644 index 0000000..ea2b919 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/heads/CreditsEntry.java @@ -0,0 +1,57 @@ +package com.zontreck.libzontreck.util.heads; + +import com.zontreck.libzontreck.chat.ChatColor; +import com.zontreck.libzontreck.lore.LoreContainer; +import com.zontreck.libzontreck.lore.LoreEntry; +import com.zontreck.libzontreck.util.ChatHelpers; +import com.zontreck.libzontreck.util.heads.HeadCache.HeadCacheItem; +import net.minecraft.world.item.ItemStack; + +public class CreditsEntry { + public HeadCacheItem player; + public String name; + public String role; + public String description; + + public CreditsEntry(HeadCacheItem item, String name, String role, String descript){ + player=item; + this.name=name; + this.role=role; + this.description=descript; + } + + /** + * Compiles all the information into the head item, then applies the Lore Entry with the role the person has played, and a description + * @return + */ + public ItemStack compile() + { + ItemStack stack = player.getAsItem(""); + stack.setHoverName(ChatHelpers.macro(name)); + LoreContainer contain = new LoreContainer(stack); + contain.clear(); + LoreEntry.Builder builder = new LoreEntry.Builder(); + builder = builder.text(ChatColor.doColors("!Dark_Purple!Role: "+role + "\n")) + .bold(true) + .italic(true); + contain.miscData.loreData.add(builder.build()); + + builder = new LoreEntry.Builder().italic(true) + .text(ChatColor.doColors("!White!About: !Dark_Green!"+description + "\n")); + + contain.miscData.loreData.add(builder.build()); + + contain.commitLore(); + + return stack; + } + /** + * Generates a written book that can serve as an about-page about the person being creditted. + * @return + */ + public ItemStack compileInfosBook() + { + // Will return a patchouli book + return null; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/util/heads/HeadCache.java b/src/main/java/com/zontreck/libzontreck/util/heads/HeadCache.java new file mode 100644 index 0000000..9558a30 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/heads/HeadCache.java @@ -0,0 +1,213 @@ +package com.zontreck.libzontreck.util.heads; + +import java.io.IOException; +import java.nio.file.Path; +import java.util.ArrayList; +import java.util.List; +import java.util.UUID; + +import com.zontreck.libzontreck.LibZontreck; +import com.zontreck.libzontreck.util.ChatHelpers; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.ListTag; +import net.minecraft.nbt.NbtIo; +import net.minecraft.nbt.Tag; +import net.minecraft.network.chat.Component; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.Items; +import net.minecraft.world.item.PlayerHeadItem; + +public class HeadCache +{ + public static final Path CACHE_FILE; + public static final HeadCache CACHE = new HeadCache(); + public List items = new ArrayList<>(); + + public class HeadCacheItem + { + public UUID owner; + public String texture; + public String name; + + public CompoundTag serialize() + { + CompoundTag tag = new CompoundTag(); + tag.putUUID("id", owner); + tag.putString("texture", texture); + tag.putString("name", name); + + return tag; + } + + public HeadCacheItem(CompoundTag tag) + { + owner = tag.getUUID("id"); + texture = tag.getString("texture"); + name = tag.getString("name"); + } + + private HeadCacheItem() + {} + + public ItemStack getAsItem(String itemName) + { + ItemStack head = new ItemStack(Items.PLAYER_HEAD, 1); + + CompoundTag skullOwner = new CompoundTag(); + skullOwner.putUUID("Id", owner); + + CompoundTag properties = new CompoundTag(); + ListTag textures = new ListTag(); + CompoundTag item = new CompoundTag(); + item.putString("Value", texture); + textures.add(item); + properties.put("textures", textures); + + skullOwner.put("Properties", properties); + head.addTagElement(PlayerHeadItem.TAG_SKULL_OWNER, skullOwner); + + if(itemName == "") + { + + Component headname = ChatHelpers.macro("[0]'s Head", name); + head.setHoverName(headname); + }else { + head.setHoverName(ChatHelpers.macro(itemName)); + } + + return head; + + } + + public static UUID toNewID(final String input) { + return UUID.fromString(input.replaceFirst("(\\w{8})(\\w{4})(\\w{4})(\\w{4})(\\w{12})", "$1-$2-$3-$4-$5")); + } + public String getOldID() + { + return owner.toString().replaceAll("-", ""); + } + } + + static{ + CACHE_FILE = LibZontreck.BASE_CONFIG.resolve("head_cache.nbt"); + + if(CACHE_FILE.toFile().exists()) + { + // Deserialize heads + try { + CompoundTag tag = NbtIo.read(CACHE_FILE.toFile()); + CACHE.initFromCache(tag); + } catch (IOException e) { + e.printStackTrace(); + } + }else { + CACHE.resetCache(); + } + + + List creds = new ArrayList<>(); + + creds.add( + new CreditsEntry(HeadUtilities.cachedLookup("zontreck"), "Aria (zontreck)", "Developer, Designer, Artist", "Aria is the primary developer and project maintainer")); + creds.add(new CreditsEntry(HeadUtilities.cachedLookup("firesyde424"), "firesyde424", "Tester", "Firesyde has helped to test my mods and given feedback.")); + creds.add(new CreditsEntry(HeadUtilities.cachedLookup("EmberCat42"), "EmberCat42", "Tester", "EmberCat42 has helped to test and reported on a major bug in Night Vision")); + + CREDITS = creds; + + + CACHE.compile(); + } + + private void initFromCache(CompoundTag tag) + { + ListTag heads = tag.getList("heads", Tag.TAG_COMPOUND); + + for (Tag tag2 : heads) { + CompoundTag tag3 = (CompoundTag)tag2; + items.add(new HeadCacheItem(tag3)); + } + } + + public void saveCache() + { + try { + NbtIo.write(serialize(), CACHE_FILE.toFile()); + } catch (IOException e) { + e.printStackTrace(); + } + } + + public CompoundTag serialize() + { + ListTag heads = new ListTag(); + for (HeadCacheItem item : items) { + heads.add(item.serialize()); + } + + CompoundTag tag = new CompoundTag(); + tag.put("heads", heads); + + return tag; + } + + /** + * Adds a new head to the cache + * @param owner + * @param texture + * @param name + * @return The item added to the cache + * @return Null if not added! + */ + public HeadCacheItem addToCache(UUID owner, String texture, String name) + { + HeadCacheItem item = new HeadCacheItem(); + item.name=name; + item.texture=texture; + item.owner=owner; + if(!hasHead(name)) + { + items.add(item); + saveCache(); + return item; + } + return null; + } + + /** + * Initializes the cache fresh using the default heads for the developer(s), contributors/testers, and patreon supporters + */ + public void resetCache() + { + HeadUtilities.get("zontreck", ""); + HeadUtilities.get("PossumTheWarrior", ""); + HeadUtilities.get("GemMD", ""); + } + + public List compiled = new ArrayList<>(); + public static final List CREDITS; + public void compile() + { + compiled.clear(); + + for (CreditsEntry entry : CREDITS) { + compiled.add(entry.compile()); + } + } + + public boolean hasHead(String playerName) + { + for (HeadCacheItem item : items) { + if(item.name.equals(playerName)) return true; + } + return false; + } + + + public HeadCacheItem getHead(String playerName) + { + for (HeadCacheItem item : items) { + if(item.name.equals(playerName)) return item; + } + return null; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/util/heads/HeadUtilities.java b/src/main/java/com/zontreck/libzontreck/util/heads/HeadUtilities.java new file mode 100644 index 0000000..59e77c9 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/heads/HeadUtilities.java @@ -0,0 +1,67 @@ +package com.zontreck.libzontreck.util.heads; + +import java.net.MalformedURLException; +import java.net.URL; +import java.util.UUID; + +import com.google.gson.Gson; + +import com.zontreck.libzontreck.LibZontreck; +import com.zontreck.libzontreck.util.HttpHelper; +import com.zontreck.libzontreck.util.heads.HeadCache.HeadCacheItem; +import net.minecraft.world.item.ItemStack; + +/** + * Added to showcase Patreon supporters and those who have helped test or provide feedback and suggestions! + */ +public class HeadUtilities { + protected static HeadCacheItem cachedLookup(String playerName) + { + if(HeadCache.CACHE.hasHead(playerName)) + { + HeadCacheItem item = HeadCache.CACHE.getHead(playerName); + return item; + }else { + // Look up head then add to cache + return externalHeadRequest(playerName); + } + } + + public static ItemStack get(String playerName, String itemName) + { + return cachedLookup(playerName).getAsItem(itemName); + } + + private static HeadCacheItem externalHeadRequest(String playerName) + { + String data=""; + try { + data = HttpHelper.getFrom(new URL(LibZontreck.PLAYER_INFO_URL + playerName)); + } catch (MalformedURLException e) { + e.printStackTrace(); + } + + if(data.equals("")){ + return null; + } + + UUID PlayerID = null; + String playerTexture=""; + try{ + Gson gson = new Gson(); + PlayerInfo info = gson.fromJson(data, PlayerInfo.class); + + String data2 = HttpHelper.getFrom(new URL(LibZontreck.PLAYER_SKIN_URL + info.id)); + + PlayerProfileInfo info2 = gson.fromJson(data2, PlayerProfileInfo.class); + playerTexture = info2.properties.get(0).value; + PlayerID = HeadCache.HeadCacheItem.toNewID(info.id); + + + return HeadCache.CACHE.addToCache(PlayerID, playerTexture, playerName); + }catch(Exception e) + { + return null; + } + } +} diff --git a/src/main/java/com/zontreck/libzontreck/util/heads/PlayerInfo.java b/src/main/java/com/zontreck/libzontreck/util/heads/PlayerInfo.java new file mode 100644 index 0000000..5f92f33 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/heads/PlayerInfo.java @@ -0,0 +1,6 @@ +package com.zontreck.libzontreck.util.heads; + +public class PlayerInfo { + public String name; + public String id; +} diff --git a/src/main/java/com/zontreck/libzontreck/util/heads/PlayerProfileInfo.java b/src/main/java/com/zontreck/libzontreck/util/heads/PlayerProfileInfo.java new file mode 100644 index 0000000..f1c3a33 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/heads/PlayerProfileInfo.java @@ -0,0 +1,9 @@ +package com.zontreck.libzontreck.util.heads; + +import java.util.List; + +public class PlayerProfileInfo { + public String id; + public String name; + public List properties; +} diff --git a/src/main/java/com/zontreck/libzontreck/util/heads/PlayerTextureContainer.java b/src/main/java/com/zontreck/libzontreck/util/heads/PlayerTextureContainer.java new file mode 100644 index 0000000..aeaa7e6 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/heads/PlayerTextureContainer.java @@ -0,0 +1,6 @@ +package com.zontreck.libzontreck.util.heads; + +public class PlayerTextureContainer { + public String name; + public String value; +} diff --git a/src/main/java/com/zontreck/libzontreck/vectors/ChunkPos.java b/src/main/java/com/zontreck/libzontreck/vectors/ChunkPos.java new file mode 100644 index 0000000..ad4173d --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/vectors/ChunkPos.java @@ -0,0 +1,42 @@ +package com.zontreck.libzontreck.vectors; + +import net.minecraft.nbt.CompoundTag; +import net.minecraft.server.level.ServerLevel; + +public class ChunkPos { + public Points points; + public Vector2f centerPoints; + public String dim; + + public ChunkPos(Vector3d point1, Vector3d point2, ServerLevel lvl) + { + points = new Points(point1, point2, lvl); + dim = WorldPosition.getDim(lvl); + } + + public ChunkPos(CompoundTag tag) + { + points = new Points(tag.getCompound("points")); + centerPoints = Vector2f.deserialize(tag.getCompound("center")); + } + + public boolean isWithin(Vector3d point) + { + return point.Inside(points.Min, points.Max); + } + + public static ChunkPos getChunkPos(WorldPosition pos) + { + return pos.getChunkPos(); + } + + public CompoundTag serialize() + { + CompoundTag tag = new CompoundTag(); + tag.put("points", points.serialize()); + tag.put("center", centerPoints.serialize()); + tag.putString("dim", dim); + + return tag; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/vectors/NonAbsVector3.java b/src/main/java/com/zontreck/libzontreck/vectors/NonAbsVector3.java new file mode 100644 index 0000000..0bb7598 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/vectors/NonAbsVector3.java @@ -0,0 +1,63 @@ +package com.zontreck.libzontreck.vectors; + +import net.minecraft.nbt.CompoundTag; + +/* +* This is a non-serializable instanced Vector that is meant to slam positions down as a integer +*/ +public class NonAbsVector3 +{ + public long x; + public long y; + public long z; + + public NonAbsVector3(Vector3d origin) + { + x = Math.round(origin.x); + y = Math.round(origin.y); + z = Math.round(origin.z); + } + + + public CompoundTag serialize() + { + CompoundTag tag = new CompoundTag(); + tag.putLong("x", x); + tag.putLong("y", y); + tag.putLong("z", z); + + return tag; + } + + public NonAbsVector3(CompoundTag tag) { + this.deserialize(tag); + } + public void deserialize(CompoundTag tag) + { + x=tag.getLong("x"); + y=tag.getLong("y"); + z=tag.getLong("z"); + } + + + public boolean same(NonAbsVector3 other) + { + if(x == other.x && y==other.y && z==other.z)return true; + else return false; + } + + public boolean inside(NonAbsVector3 point1, NonAbsVector3 point2) + { + if(point1.x <= x && point2.x >= x){ + if(point1.y <= y && point2.y >= y) + { + if(point1.z <= z && point2.z >= z) + { + return true; + } + } + } + + return false; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/vectors/Points.java b/src/main/java/com/zontreck/libzontreck/vectors/Points.java new file mode 100644 index 0000000..1e979bd --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/vectors/Points.java @@ -0,0 +1,55 @@ +package com.zontreck.libzontreck.vectors; + +import net.minecraft.nbt.CompoundTag; +import net.minecraft.server.level.ServerLevel; + +/** + * Two points within the same dimension + */ +public class Points { + public Vector3d Min = Vector3d.ZERO; + public Vector3d Max = Vector3d.ZERO; + public String dimension = ""; + + /** + * Creates a new set of points + * @param min + * @param max + * @param lvl + */ + public Points(Vector3d min, Vector3d max, ServerLevel lvl) + { + dimension = WorldPosition.getDimSafe(lvl); + if(min.less(max)) + { + Min=min; + Max=max; + }else{ + Min=max; + Max=min; + } + } + + /** + * Deserializes a points compound tag + * @param tag + */ + public Points(CompoundTag tag){ + deserialize(tag); + } + + public CompoundTag serialize(){ + CompoundTag tag = new CompoundTag(); + tag.put("min", Min.serialize()); + tag.put("max", Max.serialize()); + tag.putString("dim", dimension); + return tag; + } + + public void deserialize(CompoundTag tag) + { + Min = Vector3d.deserialize(tag.getCompound("min")); + Max = Vector3d.deserialize(tag.getCompound("max")); + dimension = tag.getString("dim"); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/vectors/Vector2f.java b/src/main/java/com/zontreck/libzontreck/vectors/Vector2f.java new file mode 100644 index 0000000..d668d2c --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/vectors/Vector2f.java @@ -0,0 +1,200 @@ +package com.zontreck.libzontreck.vectors; + +import com.zontreck.libzontreck.api.Vector2; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.world.phys.Vec2; +import org.jetbrains.annotations.NotNull; + +public class Vector2f implements Vector2 +{ + public static final Vector2f ZERO = new Vector2f(0, 0); + + public float x; + public float y; + + @Override + public Vec2 asMinecraftVector(){ + return new Vec2(x, y); + } + + public Vector2f() + { + + } + + public Vector2f(float x, float y) + { + this.x=x; + this.y=y; + } + + public Vector2f(Vec2 pos) + { + x=pos.x; + y=pos.y; + } + + public static Vector2f parseString(String vector2) + { + Vector2f vec = new Vector2f(); + // This will be serialized most likely from the ToString method + // Parse + if(vector2.startsWith("<")) + { + vector2=vector2.substring(1, vector2.length()-1); // Rip off the ending bracket too + String[] positions = vector2.split(", "); + if(positions.length!=2) + { + positions = vector2.split(","); + } + + if(positions.length!=2) + { + return ZERO; + } + + vec.x = Float.parseFloat(positions[0]); + vec.y = Float.parseFloat(positions[1]); + // We are done now + } + + return vec; + } + + @Override + public Vector2f Clone() + { + Vector2f n = new Vector2f(x, y); + return n; + } + + @Override + public String toString() + { + return "<"+String.valueOf(x)+", "+String.valueOf(y) + ">"; + } + + @Override + public CompoundTag serialize() + { + CompoundTag tag = new CompoundTag(); + tag.putFloat("x", x); + tag.putFloat("y", y); + + return tag; + } + + public static Vector2f deserialize(CompoundTag tag) + { + Vector2f vec = new Vector2f(); + vec.x=tag.getFloat("x"); + vec.y=tag.getFloat("y"); + + return vec; + } + + @Override + public boolean Same(Vector2 other) + { + Vector2f ov = other.asVector2f(); + if(x == ov.x && y == ov.y) return true; + return false; + } + + @Override + public boolean Inside(Vector2 point1, Vector2 point2) + { + Vector2f p1 = point1.asVector2f(); + Vector2f p2 = point2.asVector2f(); + + if(p1.x <= x && p2.x >= x){ + if(p1.y <= y && p2.y >= y) + { + return true; + } + } + + return false; + } + + @Override + public Vector2f asVector2f() + { + return this; + } + + @Override + public Vector2i asVector2i() { + return new Vector2i(Math.round(x), Math.round(y)); + } + + @Override + public boolean greater(Vector2 other) + { + Vector2f vec = other.asVector2f(); + return ((x > vec.x) && (y > vec.y)); + } + + @Override + public boolean less(Vector2 other) + { + Vector2f vec = other.asVector2f(); + return ((x > vec.x) && (y > vec.y)); + } + public boolean equal(Vector2 other) + { + return Same(other); + } + + @Override + public Vector2f add(Vector2 other) { + Vector2f vec = other.asVector2f(); + return new Vector2f(x + vec.x, y + vec.y); + } + + @Override + public Vector2f subtract(Vector2 other) { + Vector2f vec = other.asVector2f(); + return new Vector2f(x - vec.x, y - vec.y); + } + + @Override + public double distance(Vector2 other) { + Vector2f vec = subtract(other); + return Math.sqrt((vec.x * vec.x + vec.y * vec.y)); + } + + @Override + public Vector2f moveUp() { + return add(new Vector2f(0,1)); + } + + @Override + public Vector2f moveDown() { + return subtract(new Vector2f(0,1)); + } + + @Override + public Float getX() { + return x; + } + + @Override + public Float getY() { + return y; + } + + @Override + public int compareTo(@NotNull Vector2 other) { + if(other instanceof Vector2f v2f){ + + // Compare x coordinates first + int cmp = Float.compare(this.x, v2f.x); + if (cmp != 0) { + return cmp; + } + // If x coordinates are equal, compare y coordinates + return Float.compare(this.y, v2f.y); + } else return -1; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/vectors/Vector2i.java b/src/main/java/com/zontreck/libzontreck/vectors/Vector2i.java new file mode 100644 index 0000000..1bed20f --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/vectors/Vector2i.java @@ -0,0 +1,213 @@ +package com.zontreck.libzontreck.vectors; + +import com.zontreck.libzontreck.api.Vector2; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.world.phys.Vec2; +import org.jetbrains.annotations.NotNull; + +public class Vector2i implements Vector2 +{ + public static final Vector2i ZERO = new Vector2i(0, 0); + + public int x; + public int y; + + @Override + public Vec2 asMinecraftVector(){ + return new Vec2(x, y); + } + + public Vector2i() + { + + } + + public Vector2i(int x, int y) + { + this.x=x; + this.y=y; + } + + public Vector2i(Vec2 pos) + { + x= (int) Math.floor(pos.x); + y=(int)Math.floor(pos.y); + } + + public static Vector2i parseString(String vector2) + { + Vector2i vec = new Vector2i(); + // This will be serialized most likely from the ToString method + // Parse + if(vector2.startsWith("<")) + { + vector2=vector2.substring(1, vector2.length()-1); // Rip off the ending bracket too + String[] positions = vector2.split(", "); + if(positions.length!=2) + { + positions = vector2.split(","); + } + + if(positions.length!=2) + { + return ZERO; + } + + vec.x = Integer.parseInt(positions[0]); + vec.y = Integer.parseInt(positions[1]); + // We are done now + } + + return vec; + } + + @Override + public Vector2i Clone() + { + Vector2i n = new Vector2i(x, y); + return n; + } + + @Override + public String toString() + { + return "<"+String.valueOf(x)+", "+String.valueOf(y) + ">"; + } + + + @Override + public CompoundTag serialize() + { + CompoundTag tag = new CompoundTag(); + tag.putFloat("x", x); + tag.putFloat("y", y); + + return tag; + } + + public static Vector2i deserialize(CompoundTag tag) + { + Vector2i vec = new Vector2i(); + + vec.x=tag.getInt("x"); + vec.y=tag.getInt("y"); + + return vec; + } + + @Override + public boolean Same(Vector2 other) + { + Vector2i v2i = other.asVector2i(); + + if(x == v2i.x && y==v2i.y)return true; + else return false; + } + + @Override + public boolean Inside(Vector2 point1, Vector2 point2) + { + Vector2i v1i = point1.asVector2i(); + Vector2i v2i = point2.asVector2i(); + + if(v1i.x <= x && v2i.x >= x){ + if(v1i.y <= y && v2i.y >= y) + { + return true; + } + } + + return false; + } + + @Override + public Vector2f asVector2f() { + return new Vector2f(x,y); + } + + @Override + public Vector2i asVector2i() { + return this; + } + + @Override + public boolean greater(Vector2 other) + { + Vector2i vec = other.asVector2i(); + return ((x > vec.x) && (y > vec.y)); + } + + @Override + public boolean less(Vector2 other) + { + Vector2i vec = other.asVector2i(); + return ((x > vec.x) && (y > vec.y)); + } + + @Override + public boolean equal(Vector2 other) + { + return Same(other); + } + + @Override + public Vector2i add(Vector2 other) { + Vector2i vec = other.asVector2i(); + x += vec.x; + y += vec.y; + + return this; + } + + @Override + public Vector2i subtract(Vector2 other) { + Vector2i vec = other.asVector2i(); + + x -= vec.x; + y -= vec.y; + + return this; + } + + @Override + public double distance(Vector2 other) { + Vector2i vec = subtract(other); + return Math.sqrt((vec.x * vec.x + vec.y * vec.y)); + } + + + @Override + public Vector2i moveUp() { + return add(new Vector2i(0,1)); + } + + @Override + public Vector2i moveDown() { + return subtract(new Vector2i(0,1)); + } + + + @Override + public Integer getX() { + return x; + } + + @Override + public Integer getY() { + return y; + } + + @Override + public int compareTo(@NotNull Vector2 other) { + if(other instanceof Vector2i v2i){ + + // Compare x coordinates first + int cmp = Integer.compare(this.x, v2i.x); + if (cmp != 0) { + return cmp; + } + // If x coordinates are equal, compare y coordinates + return Integer.compare(this.y, v2i.y); + } else return -1; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/vectors/Vector3d.java b/src/main/java/com/zontreck/libzontreck/vectors/Vector3d.java new file mode 100644 index 0000000..a7bc82f --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/vectors/Vector3d.java @@ -0,0 +1,249 @@ +package com.zontreck.libzontreck.vectors; + +import com.zontreck.libzontreck.api.Vector3; +import net.minecraft.core.BlockPos; +import net.minecraft.core.Vec3i; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.world.phys.Vec3; +import org.jetbrains.annotations.NotNull; + +public class Vector3d implements Vector3 +{ + public static final Vector3d ZERO = new Vector3d(0, 0, 0); + + + public double x; + public double y; + public double z; + + @Override + public Vec3 asMinecraftVector(){ + return new Vec3(x, y, z); + } + + @Override + public Vec3i asVec3i() + { + return new Vec3i((int) Math.round(x), (int) Math.round(y), (int) Math.round(z)); + } + + @Override + public BlockPos asBlockPos() + { + return new BlockPos(asVec3i()); + } + + public Vector3d() + { + + } + + public Vector3d(double x, double y, double z) + { + this.x=x; + this.y=y; + this.z=z; + } + + public Vector3d(Vec3 pos) + { + x=pos.x; + y=pos.y; + z=pos.z; + } + + public Vector3d(BlockPos pos) + { + x=pos.getX(); + y=pos.getY(); + z=pos.getZ(); + } + + public static Vector3d parseString(String vector3) + { + Vector3d vec = new Vector3d(); + // This will be serialized most likely from the ToString method + // Parse + if(vector3.startsWith("<")) + { + vector3=vector3.substring(1, vector3.length()-1); // Rip off the ending bracket too + String[] positions = vector3.split(", "); + if(positions.length!=3) + { + positions = vector3.split(","); + } + + if(positions.length!=3) + { + return ZERO; + } + + vec.x = Double.parseDouble(positions[0]); + vec.y = Double.parseDouble(positions[1]); + vec.z = Double.parseDouble(positions[2]); + // We are done now + } + + return vec; + } + + @Override + public Vector3d subtract(Vector3 other) + { + Vector3d vec = other.asVector3d(); + return new Vector3d(x-vec.x, y-vec.y, z-vec.z); + } + + @Override + public Vector3d add(Vector3 other) + { + Vector3d vec = other.asVector3d(); + return new Vector3d(x+vec.x, y+vec.y, z +vec.z); + } + + @Override + public double distance(Vector3 other) + { + Vector3d sub = subtract(other); + return Math.sqrt((sub.x * sub.x + sub.y * sub.y + sub.z * sub.z)); + } + + @Override + public Vector3d moveUp() + { + return add(new Vector3d(0,1,0)); + } + public Vector3d moveDown() + { + return subtract(new Vector3d(0,1,0)); + } + + + @Override + public Vector3d Clone() + { + return new Vector3d(x, y, z); + } + + @Override + public String toString() + { + return "<"+String.valueOf(x)+", "+String.valueOf(y)+", "+String.valueOf(z)+">"; + } + + public NonAbsVector3 rounded() + { + NonAbsVector3 cl = new NonAbsVector3(this); + return cl; + } + + @Override + public CompoundTag serialize() + { + CompoundTag tag = new CompoundTag(); + tag.putDouble("x", x); + tag.putDouble("y", y); + tag.putDouble("z", z); + + return tag; + } + + public static Vector3d deserialize(CompoundTag tag) + { + Vector3d vec = new Vector3d(); + + vec.x=tag.getDouble("x"); + vec.y=tag.getDouble("y"); + vec.z=tag.getDouble("z"); + + return vec; + } + + @Override + public boolean Same(Vector3 other) + { + Vector3d vec = other.asVector3d(); + if(x == vec.x && y==vec.y && z==vec.z)return true; + else return false; + } + + + @Override + public boolean Inside(Vector3 point1, Vector3 point2) + { + Vector3d v1 = point1.asVector3d(); + Vector3d v2 = point2.asVector3d(); + + if(v1.x <= x && v2.x >= x){ + if(v1.y <= y && v2.y >= y) + { + if(v1.z <= z && v2.z >= z) + { + return true; + } + } + } + + return false; + } + + @Override + public Vector3d asVector3d() { + return this; + } + + @Override + public Vector3i asVector3i() { + return new Vector3i((int) Math.round(x), (int) Math.round(y), (int) Math.round(z)); + } + + @Override + public boolean greater(Vector3 other) + { + Vector3d vec = other.asVector3d(); + return ((x>vec.x) && (y>vec.y) && (z>vec.z)); + } + + @Override + public boolean less(Vector3 other) + { + Vector3d vec = other.asVector3d(); + return ((x doubleVector3) { + if(doubleVector3 instanceof Vector3d v3d) + { + int Ycomp = Double.compare(y, v3d.y); + if(Ycomp!=0)return Ycomp; + int Zcomp = Double.compare(z, v3d.z); + if(Zcomp!=0)return Zcomp; + int Xcomp = Double.compare(x, v3d.x); + if(Xcomp!=0)return Xcomp; + + return 0; + } else return -1; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/vectors/Vector3i.java b/src/main/java/com/zontreck/libzontreck/vectors/Vector3i.java new file mode 100644 index 0000000..f91044f --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/vectors/Vector3i.java @@ -0,0 +1,243 @@ +package com.zontreck.libzontreck.vectors; + +import com.zontreck.libzontreck.api.Vector3; +import com.zontreck.libzontreck.exceptions.InvalidDeserialization; +import net.minecraft.core.BlockPos; +import net.minecraft.core.Vec3i; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.world.phys.Vec3; +import org.jetbrains.annotations.NotNull; + +public class Vector3i implements Vector3 +{ + public static final Vector3i ZERO = new Vector3i(0, 0, 0); + + + public int x; + public int y; + public int z; + + @Override + public Vec3 asMinecraftVector(){ + return new Vec3(x, y, z); + } + + @Override + public Vec3i asVec3i() + { + return new Vec3i((int) Math.round(x), (int) Math.round(y), (int) Math.round(z)); + } + + @Override + public BlockPos asBlockPos() + { + return new BlockPos(asVec3i()); + } + + public Vector3i() + { + + } + + public Vector3i(int x, int y, int z) + { + this.x=x; + this.y=y; + this.z=z; + } + + public Vector3i(Vec3i pos) + { + x=pos.getX(); + y=pos.getY(); + z=pos.getZ(); + } + + public Vector3i(BlockPos pos) + { + x=pos.getX(); + y=pos.getY(); + z=pos.getZ(); + } + + public static Vector3i parseString(String vector3) throws InvalidDeserialization + { + Vector3i vec = new Vector3i(); + // This will be serialized most likely from the ToString method + // Parse + if(vector3.startsWith("<")) + { + vector3=vector3.substring(1, vector3.length()-1); // Rip off the ending bracket too + String[] positions = vector3.split(", "); + if(positions.length!=3) + { + positions = vector3.split(","); + } + + if(positions.length!=3) + { + throw new InvalidDeserialization("Positions must be in the same format provided by ToString() (ex. <1,1,1> or <1, 1, 1>"); + } + + vec.x = Integer.parseInt(positions[0]); + vec.y = Integer.parseInt(positions[1]); + vec.z = Integer.parseInt(positions[2]); + // We are done now + } + + return vec; + } + + @Override + public Vector3i subtract(Vector3 other) + { + Vector3i vec = other.asVector3i(); + return new Vector3i(x-vec.x, y-vec.y, z-vec.z); + } + + @Override + public Vector3i add(Vector3 other) + { + Vector3i vec = other.asVector3i(); + return new Vector3i(x+vec.x, y+vec.y, z +vec.z); + } + + @Override + public Vector3i asVector3i() { + return this; + } + + @Override + public Vector3d asVector3d() { + return new Vector3d(x, y, z); + } + + @Override + public double distance(Vector3 other) + { + Vector3i sub = subtract(other); + return Math.sqrt((sub.x * sub.x + sub.y * sub.y + sub.z * sub.z)); + } + + @Override + public Vector3i moveUp() + { + return add(new Vector3i(0,1,0)); + } + public Vector3i moveDown() + { + return subtract(new Vector3i(0,1,0)); + } + + @Override + public Vector3i Clone() + { + Vector3i n = new Vector3i(x, y, z); + return n; + } + + @Override + public String toString() + { + return "<"+String.valueOf(x)+", "+String.valueOf(y)+", "+String.valueOf(z)+">"; + } + + @Override + public CompoundTag serialize() + { + CompoundTag tag = new CompoundTag(); + tag.putInt("x", x); + tag.putInt("y", y); + tag.putInt("z", z); + + return tag; + } + + public static Vector3i deserialize(CompoundTag tag) + { + Vector3i vec = new Vector3i(); + + vec.x=tag.getInt("x"); + vec.y=tag.getInt("y"); + vec.z=tag.getInt("z"); + + return vec; + } + + @Override + public boolean Same(Vector3 other) + { + Vector3i vec = other.asVector3i(); + if(x == vec.x && y==vec.y && z==vec.z)return true; + else return false; + } + + @Override + public boolean Inside(Vector3 point1, Vector3 point2) + { + Vector3i v1 = point1.asVector3i(); + Vector3i v2 = point2.asVector3i(); + + if(v1.x <= x && v2.x >= x){ + if(v1.y <= y && v2.y >= y) + { + if(v1.z <= z && v2.z >= z) + { + return true; + } + } + } + + return false; + } + + @Override + public boolean greater(Vector3 other) + { + Vector3i v3 = other.asVector3i(); + return ((x>v3.x) && (y>v3.y) && (z>v3.z)); + } + + @Override + public boolean less(Vector3 other) + { + Vector3i vec = other.asVector3i(); + return ((x integerVector3) { + if(integerVector3 instanceof Vector3i v3i) + { + int Ycomp = Integer.compare(y, v3i.y); + if(Ycomp!=0)return Ycomp; + int Zcomp = Integer.compare(z, v3i.z); + if(Zcomp!=0)return Zcomp; + int Xcomp = Integer.compare(x, v3i.x); + if(Xcomp!=0)return Xcomp; + + return 0; + } else return -1; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/vectors/WorldPosition.java b/src/main/java/com/zontreck/libzontreck/vectors/WorldPosition.java new file mode 100644 index 0000000..eda5fbb --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/vectors/WorldPosition.java @@ -0,0 +1,141 @@ +package com.zontreck.libzontreck.vectors; + +import com.zontreck.libzontreck.LibZontreck; +import com.zontreck.libzontreck.exceptions.InvalidDeserialization; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.NbtUtils; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.server.level.ServerLevel; +import net.minecraft.server.level.ServerPlayer; +import net.minecraftforge.server.ServerLifecycleHooks; + +public class WorldPosition implements Cloneable +{ + + public Vector3d Position; + public String Dimension; + public String DimSafe; + + public WorldPosition(CompoundTag tag, boolean pretty) throws InvalidDeserialization { + if (pretty) { + + Position = Vector3d.parseString(tag.getString("Position")); + Dimension = tag.getString("Dimension"); + } else { + Position = Vector3d.deserialize(tag.getCompound("pos")); + Dimension = tag.getString("Dimension"); + } + + calcDimSafe(); + + } + + public WorldPosition(Vector3d pos, String dim) { + Position = pos; + Dimension = dim; + calcDimSafe(); + } + + public WorldPosition(ServerPlayer player) { + this(new Vector3d(player.position()), player.getLevel()); + } + + public WorldPosition(Vector3d pos, ServerLevel lvl) { + Position = pos; + Dimension = lvl.dimension().location().getNamespace() + ":" + lvl.dimension().location().getPath(); + calcDimSafe(); + } + + public void calcDimSafe() { + ServerLevel lvl = getActualDimension(); + DimSafe = lvl.dimension().location().getNamespace() + "-" + lvl.dimension().location().getPath(); + } + + public static String getDimSafe(ServerLevel lvl) { + return lvl.dimension().location().getNamespace() + "-" + lvl.dimension().location().getPath(); + } + + /** + * Gives you the dimension string modid:dimension + * + * @param lvl + * @return dimension string + */ + public static String getDim(ServerLevel lvl) { + return lvl.dimension().location().getNamespace() + ":" + lvl.dimension().location().getPath(); + } + + + @Override + public String toString() { + return NbtUtils.structureToSnbt(serialize()); + } + + public CompoundTag serializePretty() { + CompoundTag tag = new CompoundTag(); + + tag.putString("Position", Position.toString()); + tag.putString("Dimension", Dimension); + + return tag; + } + + public CompoundTag serialize() { + CompoundTag tag = new CompoundTag(); + tag.put("pos", Position.serialize()); + tag.putString("Dimension", Dimension); + + return tag; + } + + + public ServerLevel getActualDimension() { + + String dim = Dimension; + String[] dims = dim.split(":"); + + ResourceLocation rl = new ResourceLocation(dims[0], dims[1]); + ServerLevel dimL = null; + for (ServerLevel lServerLevel : ServerLifecycleHooks.getCurrentServer().getAllLevels()) { + ResourceLocation XL = lServerLevel.dimension().location(); + + if (XL.getNamespace().equals(rl.getNamespace())) { + if (XL.getPath().equals(rl.getPath())) { + dimL = lServerLevel; + } + } + } + + if (dimL == null) { + LibZontreck.LOGGER.error("DIMENSION COULD NOT BE FOUND : " + Dimension); + return null; + } + + return dimL; + } + + + public boolean same(WorldPosition other) { + return Position.Same(other.Position) && Dimension == other.Dimension; + } + + public ChunkPos getChunkPos() { + net.minecraft.world.level.ChunkPos mcChunk = getActualDimension().getChunkAt(Position.asBlockPos()).getPos(); + ChunkPos pos = new ChunkPos(new Vector3d(mcChunk.getMinBlockX(), -70, mcChunk.getMinBlockZ()), new Vector3d(mcChunk.getMaxBlockX(), 400, mcChunk.getMaxBlockZ()), getActualDimension()); + pos.centerPoints = new Vector2f(mcChunk.getMiddleBlockX(), mcChunk.getMiddleBlockZ()); + + return pos; + } + + @Override + public WorldPosition clone() { + try { + WorldPosition clone = (WorldPosition) super.clone(); + if(Position != null) + clone.Position = Position.Clone(); + return clone; + } catch (CloneNotSupportedException e) { + throw new AssertionError(); + } + } +} diff --git a/src/main/java/com/zontreck/mixin/ColorsMixin.java b/src/main/java/com/zontreck/mixin/ColorsMixin.java new file mode 100644 index 0000000..c2f5898 --- /dev/null +++ b/src/main/java/com/zontreck/mixin/ColorsMixin.java @@ -0,0 +1,8 @@ +package com.zontreck.mixin; + +import net.minecraft.world.item.DyeColor; +import org.spongepowered.asm.mixin.Mixin; + +@Mixin(DyeColor.class) +public class ColorsMixin { +} diff --git a/src/main/java/com/zontreck/mixin/MaterialColorMixin.java b/src/main/java/com/zontreck/mixin/MaterialColorMixin.java new file mode 100644 index 0000000..52fd812 --- /dev/null +++ b/src/main/java/com/zontreck/mixin/MaterialColorMixin.java @@ -0,0 +1,8 @@ +package com.zontreck.mixin; + +import net.minecraft.world.level.material.MaterialColor; +import org.spongepowered.asm.mixin.Mixin; + +@Mixin(MaterialColor.class) +public class MaterialColorMixin { +} diff --git a/src/main/java/dev/zontreck/essentials/util/EssentialsDatastore.java b/src/main/java/com/zontreck/util/EssentialsDatastore.java similarity index 87% rename from src/main/java/dev/zontreck/essentials/util/EssentialsDatastore.java rename to src/main/java/com/zontreck/util/EssentialsDatastore.java index 3decbdc..5b1e77e 100644 --- a/src/main/java/dev/zontreck/essentials/util/EssentialsDatastore.java +++ b/src/main/java/com/zontreck/util/EssentialsDatastore.java @@ -1,13 +1,13 @@ -package dev.zontreck.essentials.util; +package com.zontreck.util; + +import com.zontreck.libzontreck.util.FileTreeDatastore; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; -import dev.zontreck.libzontreck.util.FileTreeDatastore; +public class EssentialsDatastore { -public class EssentialsDatastore extends FileTreeDatastore -{ public static final Path AEBASE; static{ diff --git a/src/main/java/com/zontreck/util/ExperienceUtils.java b/src/main/java/com/zontreck/util/ExperienceUtils.java new file mode 100644 index 0000000..67329af --- /dev/null +++ b/src/main/java/com/zontreck/util/ExperienceUtils.java @@ -0,0 +1,16 @@ +package com.zontreck.util; + + + +public class ExperienceUtils +{ + + public static int getXpNeededForNextLevel(int xpLvl) { + if (xpLvl >= 30) { + return 112 + (xpLvl - 30) * 9; + } else { + return xpLvl >= 15 ? 37 + (xpLvl - 15) * 5 : 7 + xpLvl * 2; + } + } +} + diff --git a/src/main/java/com/zontreck/util/ModDimensions.java b/src/main/java/com/zontreck/util/ModDimensions.java new file mode 100644 index 0000000..81c3999 --- /dev/null +++ b/src/main/java/com/zontreck/util/ModDimensions.java @@ -0,0 +1,16 @@ +package com.zontreck.util; + + +import com.zontreck.AriasEssentials; +import net.minecraft.resources.ResourceLocation; + +public class ModDimensions +{ + public static final ResourceLocation BUILDER = new ResourceLocation(AriasEssentials.MOD_ID, "builder"); + //public static final ResourceLocation THRESHOLD = new ResourceLocation(AriasEssentials.MOD_ID, "threshold"); + public static String BUILDER_DIM() + { + return BUILDER.getNamespace() + ":" + BUILDER.getPath(); + } +} + diff --git a/src/main/java/com/zontreck/util/PerPlayerDataRegistry.java b/src/main/java/com/zontreck/util/PerPlayerDataRegistry.java new file mode 100644 index 0000000..8060f5c --- /dev/null +++ b/src/main/java/com/zontreck/util/PerPlayerDataRegistry.java @@ -0,0 +1,53 @@ +package com.zontreck.util; + + +import com.zontreck.libzontreck.events.ProfileUnloadedEvent; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.Tag; +import net.minecraftforge.eventbus.api.SubscribeEvent; + +import java.util.HashMap; +import java.util.Map; +import java.util.UUID; + +public class PerPlayerDataRegistry { + // The idea here is to make a registry unique to a player for mod data + // This will allow separating handling of functions, like cooldowns + private static Map cache = new HashMap<>(); + + public static void put(UUID ID, String nick, Tag tag) + { + if(cache.containsKey(ID)) + { + CompoundTag xTag = cache.get(ID); + xTag.put(nick, tag); + }else { + CompoundTag xTag = new CompoundTag(); + xTag.put(nick,tag); + + cache.put(ID, xTag); + } + } + + public static Tag get(UUID ID, String nick) + { + if(cache.containsKey(ID)) + { + CompoundTag tag = cache.get(ID); + if(tag.contains(nick)) return tag.get(nick); + } + + return null; + } + + + @SubscribeEvent + public static void onProfileUnload(ProfileUnloadedEvent ev) + { + if(cache.containsKey(UUID.fromString(ev.user_id))) + { + cache.remove(UUID.fromString(ev.user_id)); + } + } +} + diff --git a/src/main/java/dev/zontreck/essentials/util/SoundUtilities.java b/src/main/java/com/zontreck/util/SoundUtilities.java similarity index 95% rename from src/main/java/dev/zontreck/essentials/util/SoundUtilities.java rename to src/main/java/com/zontreck/util/SoundUtilities.java index dc59728..a8d3673 100644 --- a/src/main/java/dev/zontreck/essentials/util/SoundUtilities.java +++ b/src/main/java/com/zontreck/util/SoundUtilities.java @@ -1,15 +1,12 @@ -package dev.zontreck.essentials.util; - +package com.zontreck.util; import net.minecraft.core.BlockPos; import net.minecraft.sounds.SoundEvents; import net.minecraft.sounds.SoundSource; import net.minecraft.world.level.Level; -/** - * {@link SoundUtilities#playNoteBlockHarpSound(Level, BlockPos, String)} was taken/derrived from Time-in-a-bottle github. - */ public class SoundUtilities { + public static void playNoteBlockHarpSound(Level level, BlockPos pos, String note) { // https://minecraft.gamepedia.com/Note_Block switch (note) { diff --git a/src/main/java/dev/zontreck/essentials/util/StylesUtil.java b/src/main/java/com/zontreck/util/StylesUtil.java similarity index 87% rename from src/main/java/dev/zontreck/essentials/util/StylesUtil.java rename to src/main/java/com/zontreck/util/StylesUtil.java index df7c51b..b4e1880 100644 --- a/src/main/java/dev/zontreck/essentials/util/StylesUtil.java +++ b/src/main/java/com/zontreck/util/StylesUtil.java @@ -1,4 +1,5 @@ -package dev.zontreck.essentials.util; +package com.zontreck.util; + import net.minecraft.ChatFormatting; import net.minecraft.network.chat.Style; @@ -8,3 +9,4 @@ public class StylesUtil { public static final Style GREEN = Style.EMPTY.applyFormat(ChatFormatting.GREEN); public static final Style GRAY = Style.EMPTY.applyFormat(ChatFormatting.GRAY); } + diff --git a/src/main/java/dev/zontreck/essentials/commands/teleport/TeleportActioner.java b/src/main/java/com/zontreck/util/TeleportActioner.java similarity index 82% rename from src/main/java/dev/zontreck/essentials/commands/teleport/TeleportActioner.java rename to src/main/java/com/zontreck/util/TeleportActioner.java index 612bb36..25ab56a 100644 --- a/src/main/java/dev/zontreck/essentials/commands/teleport/TeleportActioner.java +++ b/src/main/java/com/zontreck/util/TeleportActioner.java @@ -1,61 +1,59 @@ -package dev.zontreck.essentials.commands.teleport; - -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.configs.server.AEServerConfig; -import dev.zontreck.libzontreck.vectors.Vector3d; -import dev.zontreck.libzontreck.vectors.WorldPosition; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.server.commands.EffectCommands; -import net.minecraft.server.level.ServerLevel; -import net.minecraft.server.level.ServerPlayer; -import net.minecraft.world.effect.MobEffect; -import net.minecraft.world.effect.MobEffectInstance; -import net.minecraft.world.effect.MobEffects; -import net.minecraftforge.registries.ForgeRegistries; -import net.minecraftforge.registries.RegistryObject; - -public class TeleportActioner -{ - public static void PerformTeleport(TeleportContainer contain, boolean eventless){ - //sub_runnable run = new sub_runnable(contain); - Thread tx = new Thread(new TeleportRunnable(contain, eventless)); - tx.start(); - } - - public static boolean isBlacklistedDimension(ServerLevel level) - { - WorldPosition pos = new WorldPosition(Vector3d.ZERO, level); - return AEServerConfig.getInstance().teleport.Blacklist.contains(pos.Dimension); - } - - public static void ApplyTeleportEffect(ServerPlayer player){ - if(isBlacklistedDimension(player.getLevel())){ - return; - } - // 10/05/2022 - Thinking ahead here to future proof it so i can do things in threads safely - // By adding this task onto the main server thread, any thread can call the TeleportActioner and it will be actioned on the main thread without needing to repeat the process of sending this to the server thread. - player.server.execute(new Runnable(){ - public void run(){ - - // 12/18/2023 - Updated to store effects in the config, and make duration and amplifier random! - var effects = AEServerConfig.getInstance().teleport.Effects; - for(int i = 0; i < effects.size(); i++) { - RegistryObject effect = RegistryObject.create(new ResourceLocation(effects.get(i)), ForgeRegistries.MOB_EFFECTS); - - int duration = AriasEssentials.random.nextInt(5, 10) * 20; - int amplifier = AriasEssentials.random.nextInt(1, 3); - - if (effects.get(i).equals("minecraft:slow_falling")) - { - duration = duration*2; - } - - MobEffectInstance inst = new MobEffectInstance(effect.get(), duration, amplifier, true, true); - - player.addEffect(inst); - } - - } - }); - } -} +package com.zontreck.util; + +import com.zontreck.AriasEssentials; +import com.zontreck.configs.server.AEServerConfig; +import com.zontreck.libzontreck.vectors.Vector3d; +import com.zontreck.libzontreck.vectors.WorldPosition; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.server.level.ServerLevel; +import net.minecraft.server.level.ServerPlayer; +import net.minecraft.world.effect.MobEffect; +import net.minecraft.world.effect.MobEffectInstance; +import net.minecraftforge.registries.ForgeRegistries; +import net.minecraftforge.registries.RegistryObject; + +public class TeleportActioner { + public static void PerformTeleport(TeleportContainer contain, boolean eventless){ + //sub_runnable run = new sub_runnable(contain); + Thread tx = new Thread(new TeleportRunnable(contain, eventless)); + tx.start(); + } + + public static boolean isBlacklistedDimension(ServerLevel level) + { + WorldPosition pos = new WorldPosition(Vector3d.ZERO, level); + return AEServerConfig.getInstance().teleport.Blacklist.contains(pos.Dimension); + } + + public static void ApplyTeleportEffect(ServerPlayer player){ + if(isBlacklistedDimension(player.getLevel())){ + return; + } + // 10/05/2022 - Thinking ahead here to future proof it so i can do things in threads safely + // By adding this task onto the main server thread, any thread can call the TeleportActioner and it will be actioned on the main thread without needing to repeat the process of sending this to the server thread. + + player.server.execute(new Runnable(){ + public void run(){ + + // 12/18/2023 - Updated to store effects in the config, and make duration and amplifier random! + var effects = AEServerConfig.getInstance().teleport.Effects; + for(int i = 0; i < effects.size(); i++) { + RegistryObject effect = RegistryObject.create(new ResourceLocation(effects.get(i)), ForgeRegistries.MOB_EFFECTS); + + int duration = AriasEssentials.random.nextInt(5, 10) * 20; + int amplifier = AriasEssentials.random.nextInt(1, 3); + + if (effects.get(i).equals("minecraft:slow_falling")) + { + duration = duration*2; + } + + MobEffectInstance inst = new MobEffectInstance(effect.get(), duration, amplifier, true, true); + + player.addEffect(inst); + } + + } + }); + } +} diff --git a/src/main/java/dev/zontreck/essentials/commands/teleport/TeleportContainer.java b/src/main/java/com/zontreck/util/TeleportContainer.java similarity index 89% rename from src/main/java/dev/zontreck/essentials/commands/teleport/TeleportContainer.java rename to src/main/java/com/zontreck/util/TeleportContainer.java index d459ddc..265044a 100644 --- a/src/main/java/dev/zontreck/essentials/commands/teleport/TeleportContainer.java +++ b/src/main/java/com/zontreck/util/TeleportContainer.java @@ -1,67 +1,67 @@ -package dev.zontreck.essentials.commands.teleport; - -import java.time.Instant; -import java.util.UUID; - -import dev.zontreck.libzontreck.vectors.Vector3d; -import dev.zontreck.libzontreck.vectors.WorldPosition; -import net.minecraft.server.level.ServerLevel; -import net.minecraft.server.level.ServerPlayer; -import net.minecraft.world.phys.Vec2; -import net.minecraft.world.phys.Vec3; - -public class TeleportContainer implements Comparable{ - public UUID FromPlayer; - public UUID ToPlayer; - public long StartedAt; - public UUID TeleportID; - public WorldPosition world_pos; - - /* - * The following variables are only used when actioning the teleport itself, and should only be initialized once the teleport is about to engage - */ - public ServerPlayer PlayerInst; - public Vec3 Position; - public Vec2 Rotation; - public ServerLevel Dimension; - public WorldPosition OldPosition; // Populated in a teleport event - - - public boolean has_expired(){ - return Instant.now().getEpochSecond() > (StartedAt + (60)); - } - - public TeleportContainer (UUID From, UUID To) - { - FromPlayer = From; - ToPlayer=To; - TeleportID = UUID.randomUUID(); - - StartedAt = Instant.now().getEpochSecond(); - } - - public TeleportContainer(ServerPlayer f_p, Vec3 f_pos, Vec2 f_rot, ServerLevel f_dim) { - SetTeleportDestination(f_p, f_pos, f_rot, f_dim); - world_pos = new WorldPosition(new Vector3d(f_pos), f_dim); - } - - private void SetTeleportDestination(ServerPlayer f_p, Vec3 f_pos, Vec2 f_rot, ServerLevel f_dim) { - PlayerInst = f_p; - Position = f_pos; - Rotation = f_rot; - Dimension = f_dim; - world_pos = new WorldPosition(new Vector3d(f_pos), f_dim); - } - - @Override - public int compareTo(Object o) { - if(o instanceof TeleportContainer cont){ - if(cont.FromPlayer != FromPlayer){ - return -1; - }else { - if(cont.ToPlayer != ToPlayer)return 1; - else return 0; - } - }else return -1; - } -} +package com.zontreck.util; + +import com.zontreck.libzontreck.vectors.Vector3d; +import com.zontreck.libzontreck.vectors.WorldPosition; +import net.minecraft.server.level.ServerLevel; +import net.minecraft.server.level.ServerPlayer; +import net.minecraft.world.phys.Vec2; +import net.minecraft.world.phys.Vec3; + +import java.time.Instant; +import java.util.UUID; + +public class TeleportContainer implements Comparable{ + public UUID FromPlayer; + public UUID ToPlayer; + public long StartedAt; + public UUID TeleportID; + public WorldPosition world_pos; + + /* + * The following variables are only used when actioning the teleport itself, and should only be initialized once the teleport is about to engage + */ + public ServerPlayer PlayerInst; + public Vec3 Position; + public Vec2 Rotation; + public ServerLevel Dimension; + public WorldPosition OldPosition; // Populated in a teleport event + + + public boolean has_expired(){ + return Instant.now().getEpochSecond() > (StartedAt + (60)); + } + + public TeleportContainer (UUID From, UUID To) + { + FromPlayer = From; + ToPlayer=To; + TeleportID = UUID.randomUUID(); + + StartedAt = Instant.now().getEpochSecond(); + } + + public TeleportContainer(ServerPlayer f_p, Vec3 f_pos, Vec2 f_rot, ServerLevel f_dim) { + SetTeleportDestination(f_p, f_pos, f_rot, f_dim); + world_pos = new WorldPosition(new Vector3d(f_pos), f_dim); + } + + private void SetTeleportDestination(ServerPlayer f_p, Vec3 f_pos, Vec2 f_rot, ServerLevel f_dim) { + PlayerInst = f_p; + Position = f_pos; + Rotation = f_rot; + Dimension = f_dim; + world_pos = new WorldPosition(new Vector3d(f_pos), f_dim); + } + + @Override + public int compareTo(Object o) { + if(o instanceof TeleportContainer cont){ + if(cont.FromPlayer != FromPlayer){ + return -1; + }else { + if(cont.ToPlayer != ToPlayer)return 1; + else return 0; + } + }else return -1; + } +} diff --git a/src/main/java/dev/zontreck/essentials/commands/teleport/TeleportDestination.java b/src/main/java/com/zontreck/util/TeleportDestination.java similarity index 68% rename from src/main/java/dev/zontreck/essentials/commands/teleport/TeleportDestination.java rename to src/main/java/com/zontreck/util/TeleportDestination.java index 04c9fb1..180f252 100644 --- a/src/main/java/dev/zontreck/essentials/commands/teleport/TeleportDestination.java +++ b/src/main/java/com/zontreck/util/TeleportDestination.java @@ -1,53 +1,50 @@ -package dev.zontreck.essentials.commands.teleport; - -import dev.zontreck.libzontreck.api.Vector2; -import dev.zontreck.libzontreck.vectors.Vector2f; -import dev.zontreck.libzontreck.vectors.Vector2i; -import dev.zontreck.libzontreck.vectors.Vector3d; -import dev.zontreck.libzontreck.vectors.WorldPosition; -import dev.zontreck.libzontreck.exceptions.InvalidDeserialization; -import net.minecraft.nbt.CompoundTag; -import net.minecraft.nbt.NbtUtils; -import net.minecraft.server.level.ServerLevel; - -/** - * This defines the data structure, and methods for deserializing and serializing teleport destinations, for easier storage in the database - **/ -public class TeleportDestination extends WorldPosition -{ - public Vector2f Rotation; - - public TeleportDestination(CompoundTag tag) throws InvalidDeserialization - { - super(tag, true); - Rotation = Vector2f.parseString(tag.getString("Rotation")); - } - public TeleportDestination(Vector3d pos, Vector2f rot, String dim) - { - super(pos, dim); - Rotation = rot; - } - - public TeleportDestination(Vector3d pos, Vector2f rot, ServerLevel dim) - { - super(pos,dim); - Rotation=rot; - } - - @Override - public String toString() - { - - return NbtUtils.structureToSnbt(serialize()); - - } - - public CompoundTag serialize(){ - - CompoundTag tag = super.serializePretty(); - tag.putString("Rotation", Rotation.toString()); - - return tag; - } - -} +package com.zontreck.util; + +import com.zontreck.libzontreck.exceptions.InvalidDeserialization; +import com.zontreck.libzontreck.vectors.Vector2f; +import com.zontreck.libzontreck.vectors.Vector3d; +import com.zontreck.libzontreck.vectors.WorldPosition; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.NbtUtils; +import net.minecraft.server.level.ServerLevel; + +/** + * This defines the data structure, and methods for deserializing and serializing teleport destinations, for easier storage in the database + **/ +public class TeleportDestination extends WorldPosition { + + public Vector2f Rotation; + + public TeleportDestination(CompoundTag tag) throws InvalidDeserialization + { + super(tag, true); + Rotation = Vector2f.parseString(tag.getString("Rotation")); + } + public TeleportDestination(Vector3d pos, Vector2f rot, String dim) + { + super(pos, dim); + Rotation = rot; + } + + public TeleportDestination(Vector3d pos, Vector2f rot, ServerLevel dim) + { + super(pos,dim); + Rotation=rot; + } + + @Override + public String toString() + { + + return NbtUtils.structureToSnbt(serialize()); + + } + + public CompoundTag serialize(){ + + CompoundTag tag = super.serializePretty(); + tag.putString("Rotation", Rotation.toString()); + + return tag; + } +} diff --git a/src/main/java/dev/zontreck/essentials/commands/teleport/TeleportRegistry.java b/src/main/java/com/zontreck/util/TeleportRegistry.java similarity index 84% rename from src/main/java/dev/zontreck/essentials/commands/teleport/TeleportRegistry.java rename to src/main/java/com/zontreck/util/TeleportRegistry.java index d7a9643..915c77f 100644 --- a/src/main/java/dev/zontreck/essentials/commands/teleport/TeleportRegistry.java +++ b/src/main/java/com/zontreck/util/TeleportRegistry.java @@ -1,9 +1,10 @@ -package dev.zontreck.essentials.commands.teleport; +package com.zontreck.util; import java.util.ArrayList; import java.util.List; public class TeleportRegistry { + private static final List lst; static{ diff --git a/src/main/java/dev/zontreck/essentials/commands/teleport/TeleportRunnable.java b/src/main/java/com/zontreck/util/TeleportRunnable.java similarity index 76% rename from src/main/java/dev/zontreck/essentials/commands/teleport/TeleportRunnable.java rename to src/main/java/com/zontreck/util/TeleportRunnable.java index 5df1aea..cf92921 100644 --- a/src/main/java/dev/zontreck/essentials/commands/teleport/TeleportRunnable.java +++ b/src/main/java/com/zontreck/util/TeleportRunnable.java @@ -1,56 +1,54 @@ -package dev.zontreck.essentials.commands.teleport; - - -import dev.zontreck.ariaslib.terminal.Task; -import dev.zontreck.essentials.events.TeleportEvent; -import dev.zontreck.libzontreck.vectors.WorldPosition; -import net.minecraftforge.common.MinecraftForge; - -public class TeleportRunnable extends Task -{ - - public final boolean IgnoreEvent; - public final TeleportContainer Action; - public TeleportRunnable(TeleportContainer cont, boolean eventless){ - super("TP",true); - Action = cont; - IgnoreEvent=eventless; - } - - @Override - public void run() { - Action.OldPosition = new WorldPosition(Action.PlayerInst); - - if(!IgnoreEvent) - { - - if(MinecraftForge.EVENT_BUS.post(new TeleportEvent(Action))) - { - return; - } - } - - Action.PlayerInst.teleportTo(Action.Dimension, Action.Position.x, Action.Position.y, Action.Position.z, Action.Rotation.y, Action.Rotation.x); - - Action.PlayerInst.onUpdateAbilities(); - - - Thread tx = new Thread(new Task("tp_action",true){ - public final TeleportContainer container=Action; - @Override - public void run() - { - try { - Thread.sleep(1000); - } catch (InterruptedException e) { - e.printStackTrace(); - } - container.PlayerInst.onUpdateAbilities(); - container.PlayerInst.setPos(container.Position); - container.PlayerInst.giveExperiencePoints(1); - } - }); - - tx.start(); - } -} +package com.zontreck.util; + +import com.zontreck.events.TeleportEvent; +import com.zontreck.libzontreck.vectors.WorldPosition; +import net.minecraftforge.common.MinecraftForge; + +import java.time.Duration; + +public class TeleportRunnable implements Runnable { + + public final boolean IgnoreEvent; + public final TeleportContainer Action; + public TeleportRunnable(TeleportContainer cont, boolean eventless){ + Action = cont; + IgnoreEvent=eventless; + } + + @Override + public void run() { + Action.OldPosition = new WorldPosition(Action.PlayerInst); + + if(!IgnoreEvent) + { + + if(MinecraftForge.EVENT_BUS.post(new TeleportEvent(Action))) + { + return; + } + } + + Action.PlayerInst.teleportTo(Action.Dimension, Action.Position.x, Action.Position.y, Action.Position.z, Action.Rotation.y, Action.Rotation.x); + + Action.PlayerInst.onUpdateAbilities(); + + + Thread tx = new Thread(new Runnable(){ + public final TeleportContainer container=Action; + @Override + public void run() + { + try { + Thread.sleep(1000); + } catch (InterruptedException e) { + e.printStackTrace(); + } + container.PlayerInst.onUpdateAbilities(); + container.PlayerInst.setPos(container.Position); + container.PlayerInst.giveExperiencePoints(1); + } + }); + + tx.start(); + } +} diff --git a/src/main/java/dev/zontreck/essentials/AriasEssentials.java b/src/main/java/dev/zontreck/essentials/AriasEssentials.java deleted file mode 100644 index 1262a1c..0000000 --- a/src/main/java/dev/zontreck/essentials/AriasEssentials.java +++ /dev/null @@ -1,186 +0,0 @@ -package dev.zontreck.essentials; - -import java.time.Instant; -import java.util.HashMap; -import java.util.Map; -import java.util.Random; -import java.util.UUID; -import java.util.concurrent.Executors; -import java.util.concurrent.ScheduledExecutorService; -import java.util.concurrent.ScheduledThreadPoolExecutor; - -import dev.zontreck.essentials.antiexplode.CreeperHealQueue; -import dev.zontreck.essentials.blocks.ModBlocks; -import dev.zontreck.essentials.client.Keybindings; -import dev.zontreck.essentials.client.renderer.TimeBoostEntityRenderer; -import dev.zontreck.essentials.commands.teleport.TeleportActioner; -import dev.zontreck.essentials.configs.client.AEClientConfig; -import dev.zontreck.essentials.configs.server.AEServerConfig; -import dev.zontreck.essentials.entities.ModEntities; -import dev.zontreck.essentials.events.MainEventHandlers; -import dev.zontreck.essentials.events.TeleportEvent; -import dev.zontreck.essentials.client.renderer.HeartsRenderer; -import dev.zontreck.essentials.imc.Events; -import dev.zontreck.essentials.items.CreativeModeTabs; -import dev.zontreck.essentials.items.ModItems; -import dev.zontreck.essentials.networking.ModMessages; -import dev.zontreck.essentials.rtp.RTPCaches; -import dev.zontreck.essentials.rtp.RTPCachesEventHandlers; -import dev.zontreck.essentials.util.BackPositionCaches; -import dev.zontreck.essentials.util.CommandCooldowns; -import dev.zontreck.libzontreck.memory.world.BlockRestoreQueue; -import dev.zontreck.libzontreck.memory.world.BlockRestoreQueueRegistry; -import dev.zontreck.libzontreck.memory.world.SavedBlock; -import dev.zontreck.libzontreck.util.ChatHelpers; -import dev.zontreck.libzontreck.util.SNbtIo; -import dev.zontreck.libzontreck.util.ServerUtilities; -import dev.zontreck.libzontreck.vectors.Vector3i; -import dev.zontreck.libzontreck.vectors.WorldPosition; -import net.minecraft.client.renderer.entity.EntityRenderers; -import net.minecraft.core.BlockPos; -import net.minecraft.nbt.NbtUtils; -import net.minecraft.server.level.ServerPlayer; -import net.minecraft.world.entity.player.Player; -import net.minecraft.world.level.block.Block; -import net.minecraft.world.level.block.Blocks; -import net.minecraftforge.api.distmarker.Dist; -import net.minecraftforge.api.distmarker.OnlyIn; -import net.minecraftforge.client.event.RegisterKeyMappingsEvent; -import net.minecraftforge.event.entity.living.LivingDeathEvent; -import net.minecraftforge.event.level.ExplosionEvent; -import net.minecraftforge.eventbus.api.EventPriority; -import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent; -import org.slf4j.Logger; - -import com.mojang.logging.LogUtils; - -import dev.zontreck.essentials.commands.CommandRegister; -import dev.zontreck.essentials.homes.Homes; -import dev.zontreck.essentials.util.EssentialsDatastore; -import dev.zontreck.essentials.util.ForgeEventsHandler; -import net.minecraftforge.common.MinecraftForge; -import net.minecraftforge.event.server.ServerStartedEvent; -import net.minecraftforge.event.server.ServerStoppingEvent; -import net.minecraftforge.eventbus.api.IEventBus; -import net.minecraftforge.eventbus.api.SubscribeEvent; -import net.minecraftforge.fml.common.Mod; -import net.minecraftforge.fml.event.lifecycle.FMLCommonSetupEvent; -import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext; - -@Mod(AriasEssentials.MODID) -public class AriasEssentials { - public static final String MODID = "ariasessentials"; - public static final Random random = new Random(Instant.now().getEpochSecond()); - public static final Logger LOGGER = LogUtils.getLogger(); - public static boolean ALIVE; - public static Map player_homes = new HashMap<>(); - public static boolean DEBUG = true; - public static ScheduledExecutorService executorService = Executors.newScheduledThreadPool(1); - - - - public AriasEssentials() - { - IEventBus bus = FMLJavaModLoadingContext.get().getModEventBus(); - bus.addListener(this::setup); - - LOGGER.info("/!\\ Loading Aria's Essentials Configuration Files /!\\"); - AEServerConfig.loadFromFile(); - AEClientConfig.loadFromFile(); - LOGGER.info("/!\\ DONE LOADING AECONFIG /!\\"); - - - - - EssentialsDatastore.initialize(); - MinecraftForge.EVENT_BUS.register(this); - MinecraftForge.EVENT_BUS.register(new CommandRegister()); - MinecraftForge.EVENT_BUS.register(new ForgeEventsHandler()); - MinecraftForge.EVENT_BUS.register(new RTPCachesEventHandlers()); - MinecraftForge.EVENT_BUS.register(new CommandCooldowns()); - MinecraftForge.EVENT_BUS.register(RTPCachesEventHandlers.class); - MinecraftForge.EVENT_BUS.register(Events.class); - MinecraftForge.EVENT_BUS.register(MainEventHandlers.class); - - ModItems.register(bus); - ModBlocks.register(bus); - ModEntities.register(bus); - } - - - @SubscribeEvent - public void onTeleport(TeleportEvent event) - { - if(TeleportActioner.isBlacklistedDimension(event.getContainer().Dimension)) - { - event.setCanceled(true); - } else { - if(AEServerConfig.getInstance().back.Enabled && AEServerConfig.getInstance().back.EnabledForTp) - BackPositionCaches.Update(event.getContainer().PlayerInst.getUUID(), event.getContainer().OldPosition); - } - } - - public void setup(FMLCommonSetupEvent ev) - { - ModMessages.register(); - } - - - @SubscribeEvent - public void onServerStart(final ServerStartedEvent ev) - { - ALIVE=true; - // Print out the server config - - LOGGER.debug(NbtUtils.structureToSnbt(AEServerConfig.getInstance().serialize())); - } - - - @SubscribeEvent - public void onServerStop(final ServerStoppingEvent ev) - { - ALIVE=false; - LOGGER.info("Tearing down Aria's Essentials functions and tasks"); - RTPCaches.Locations.clear(); - } - - @SubscribeEvent (priority = EventPriority.HIGHEST) - public void onPlayerDied(final LivingDeathEvent ev) - { - if(ev.getEntity() instanceof Player p) - { - if(ServerUtilities.isServer()) - { - ServerPlayer sp = ServerUtilities.getPlayerByID(p.getUUID().toString()); - // Update player back position! - WorldPosition wp = new WorldPosition(sp); - BackPositionCaches.Update(sp.getUUID(), wp); - - ChatHelpers.broadcastTo(p, ChatHelpers.macro(Messages.USE_BACK_INTRO), sp.server); - } - } - } - - - // You can use EventBusSubscriber to automatically register all static methods in the class annotated with @SubscribeEvent - @Mod.EventBusSubscriber(modid = AriasEssentials.MODID, bus = Mod.EventBusSubscriber.Bus.MOD) - public static class ClientModEvents { - @SubscribeEvent - public static void onClientSetup(FMLClientSetupEvent event) { - - LOGGER.info("Client setup"); - - EntityRenderers.register(ModEntities.TIAB_ENTITY.get(), TimeBoostEntityRenderer::new); - MinecraftForge.EVENT_BUS.register(new HeartsRenderer()); - } - - @OnlyIn(Dist.CLIENT) - @SubscribeEvent - public static void onRegisterKeyBinds(RegisterKeyMappingsEvent ev) - { - ev.register(Keybindings.AUTOWALK); - } - - } - -} diff --git a/src/main/java/dev/zontreck/essentials/antiexplode/CreeperHealQueue.java b/src/main/java/dev/zontreck/essentials/antiexplode/CreeperHealQueue.java deleted file mode 100644 index 5c0179e..0000000 --- a/src/main/java/dev/zontreck/essentials/antiexplode/CreeperHealQueue.java +++ /dev/null @@ -1,43 +0,0 @@ -package dev.zontreck.essentials.antiexplode; - -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.configs.server.AEServerConfig; -import dev.zontreck.libzontreck.memory.world.*; -import net.minecraft.world.level.block.Blocks; - -import java.util.concurrent.ScheduledFuture; -import java.util.concurrent.TimeUnit; - -public class CreeperHealQueue extends BlockRestoreQueue -{ - - @Override - public String getRestoreQueueName() { - return "creeperheal"; - } - - @Override - public boolean usesDatabase() { - return true; - } - - @Override - public void databaseUpdate(PrimitiveBlock block) { - if(Blocks.AIR == block.blockType) return; // Do not cache air - super.databaseUpdate(block); - notifyDirtyQueue(true); - } - - @Override - public void notifyDirtyQueue(boolean b) { - // Queue was modified. - // Restart the timer for repairing blocks if necessary - } - - @Override - public boolean sorted() { - return true; - } - - -} diff --git a/src/main/java/dev/zontreck/essentials/blocks/BlockCustomVoxels.java b/src/main/java/dev/zontreck/essentials/blocks/BlockCustomVoxels.java deleted file mode 100644 index 74c98d2..0000000 --- a/src/main/java/dev/zontreck/essentials/blocks/BlockCustomVoxels.java +++ /dev/null @@ -1,16 +0,0 @@ -package dev.zontreck.essentials.blocks; - -import net.minecraft.world.level.block.Block; -import net.minecraft.world.phys.shapes.VoxelShape; - -public class BlockCustomVoxels extends Block { - VoxelShape shape; - public BlockCustomVoxels(Properties pProperties, VoxelShape shape) { - super(pProperties); - this.shape=shape; - } - - public VoxelShape getShape() { - return shape; - } -} diff --git a/src/main/java/dev/zontreck/essentials/blocks/ModBlocks.java b/src/main/java/dev/zontreck/essentials/blocks/ModBlocks.java deleted file mode 100644 index 1429fe5..0000000 --- a/src/main/java/dev/zontreck/essentials/blocks/ModBlocks.java +++ /dev/null @@ -1,303 +0,0 @@ -package dev.zontreck.essentials.blocks; - -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.items.CreativeModeTabs; -import net.minecraft.core.BlockPos; -import net.minecraft.world.entity.EntityType; -import net.minecraft.world.item.BlockItem; -import net.minecraft.world.item.Item; -import net.minecraft.world.level.BlockGetter; -import net.minecraft.world.level.block.*; -import net.minecraft.world.level.block.entity.BlockEntity; -import net.minecraft.world.level.block.entity.ShulkerBoxBlockEntity; -import net.minecraft.world.level.block.state.BlockBehaviour; -import net.minecraft.world.level.block.state.BlockState; -import net.minecraftforge.eventbus.api.IEventBus; -import net.minecraftforge.registries.DeferredRegister; -import net.minecraftforge.registries.ForgeRegistries; -import net.minecraftforge.registries.RegistryObject; - -public class ModBlocks { - - private static BlockBehaviour.StatePredicate shulkerState = (p_152653_, p_152654_, p_152655_) -> { - BlockEntity blockentity = p_152654_.getBlockEntity(p_152655_); - if (!(blockentity instanceof ShulkerBoxBlockEntity)) { - return true; - } else { - ShulkerBoxBlockEntity shulkerboxblockentity = (ShulkerBoxBlockEntity)blockentity; - return shulkerboxblockentity.isClosed(); - } - }; - - - public static final DeferredRegister BLOCKS = DeferredRegister.create(ForgeRegistries.BLOCKS, AriasEssentials.MODID); - public static final DeferredRegister ITEMS = DeferredRegister.create(ForgeRegistries.ITEMS, AriasEssentials.MODID); - - private static boolean never(BlockState blockState, BlockGetter blockGetter, BlockPos blockPos) { - return false; - } - private static boolean always(BlockState blockState, BlockGetter blockGetter, BlockPos blockPos) { - return true; - } - - - private static boolean neverSpawn(BlockState blockState, BlockGetter blockGetter, BlockPos blockPos, EntityType entityType) { - return false; - } - - public static void register(IEventBus bus){ - BLOCKS.register(bus); - ITEMS.register(bus); - AriasEssentials.LOGGER.info("Registering all blocks..."); - } - - private static BlockBehaviour.Properties standardBehavior() - { - return BlockBehaviour.Properties.copy(Blocks.STONE).requiresCorrectToolForDrops().strength(7F).destroyTime(6).isValidSpawn(ModBlocks::neverSpawn); - } - private static BlockBehaviour.Properties gratingBlock() - { - return standardBehavior() - .noOcclusion() - .strength(0.5f, 2000f) - .isViewBlocking(ModBlocks::never); - } - - private static BlockBehaviour.Properties stoneLikeBehavior() - { - return BlockBehaviour.Properties.copy(Blocks.COBBLESTONE).isValidSpawn(ModBlocks::neverSpawn); - } - - private static BlockBehaviour.Properties explosionResistance() - { - return standardBehavior().explosionResistance(1200); - } - - private static BlockBehaviour.Properties noViewBlocking() - { - return standardBehavior().noOcclusion().isViewBlocking(ModBlocks::never); - } - - private static BlockBehaviour.Properties fullBright() - { - return standardBehavior().lightLevel((X)->{ - return 15; - }).noOcclusion(); - } - - private static BlockBehaviour.Properties standard = standardBehavior(); - - private static BlockBehaviour.Properties explosionResistance = explosionResistance(); - - private static BlockBehaviour.Properties noViewBlocking = noViewBlocking(); - - private static BlockBehaviour.Properties stone = stoneLikeBehavior(); - - private static BlockBehaviour.Properties gratingBlock = gratingBlock(); - - private static BlockBehaviour.Properties poolLightClean = BlockBehaviour.Properties.copy(Blocks.GLASS).lightLevel((X) -> 15); - private static BlockBehaviour.Properties poolLightDirty = BlockBehaviour.Properties.copy(Blocks.GLASS).lightLevel((X) -> 12); - private static BlockBehaviour.Properties poolLightFilthy = BlockBehaviour.Properties.copy(Blocks.GLASS).lightLevel((X) -> 4); - - - public static RegistryObject registerWithItem(RegistryObject blk, Item.Properties props) - { - CreativeModeTabs.addToAETab(ITEMS.register(blk.getId().getPath(), ()->new BlockItem(blk.get(), props))); - - return blk; - } - - - /* - - ENGINEERS DECOR BLOCKS - - */ - - public static final RegistryObject CLINKER_BRICK_BLOCK = registerWithItem(BLOCKS.register("clinker_brick_block", ()->new Block(standardBehavior().strength(0.5f, 7f).sound(SoundType.STONE) - )), new Item.Properties()); - - public static final RegistryObject CLINKER_BRICK_SLAB = registerWithItem(BLOCKS.register("clinker_brick_slab", ()->new SlabBlock(BlockBehaviour.Properties.copy(Blocks.STONE_SLAB))), new Item.Properties()); - - public static final RegistryObject CLINKER_BRICK_STAIRS = registerWithItem(BLOCKS.register("clinker_brick_stairs", ()->new StairBlock(CLINKER_BRICK_BLOCK.get()::defaultBlockState, BlockBehaviour.Properties.copy(Blocks.STONE_STAIRS))), new Item.Properties()); - - public static final RegistryObject CLINKER_BRICK_WALL = registerWithItem(BLOCKS.register("clinker_brick_wall", ()->new WallBlock(BlockBehaviour.Properties.copy(Blocks.STONE_BRICK_WALL))), new Item.Properties()); - - public static final RegistryObject CLINKER_BRICK_STAINED_BLOCK = registerWithItem(BLOCKS.register("clinker_brick_stained_block", ()->new Block(BlockBehaviour.Properties.copy(Blocks.STONE))), new Item.Properties()); - - public static final RegistryObject CLINKER_BRICK_STAINED_SLAB = registerWithItem(BLOCKS.register("clinker_brick_stained_slab", ()-> new SlabBlock(BlockBehaviour.Properties.copy(Blocks.STONE))), new Item.Properties()); - - public static final RegistryObject CLINKER_BRICK_STAINED_STAIRS = registerWithItem(BLOCKS.register("clinker_brick_stained_stairs", ()-> new StairBlock(CLINKER_BRICK_STAINED_BLOCK.get()::defaultBlockState, BlockBehaviour.Properties.copy(Blocks.STONE))), new Item.Properties()); - - /*public static final RegistryObject CLINKER_BRICK_VERTICAL_SLAB_STRUCTURED = registerWithItem(BLOCKS.register("clinker_brick_vertical_slab_structured", () -> new StandardBlocks.HorizontalWaterLoggable( - StandardBlocks.CFG_CUTOUT | StandardBlocks.CFG_HORIZIONTAL | StandardBlocks.CFG_LOOK_PLACEMENT, - BlockBehaviour.Properties.of().strength(0.5f, 7f).sound(SoundType.STONE), - new AABB[]{ - Auxiliaries.getPixeledAABB(0, 0, 0, 16, 16, 8), - } - )), new Item.Properties());*/ - - public static final RegistryObject SLAG_BRICK_BLOCK = registerWithItem(BLOCKS.register("slag_brick_block", ()-> new Block(BlockBehaviour.Properties.copy(Blocks.STONE))), new Item.Properties()); - - public static final RegistryObject SLAG_BRICK_SLAB = registerWithItem(BLOCKS.register("slag_brick_slab", ()-> new SlabBlock(BlockBehaviour.Properties.copy(Blocks.STONE))), new Item.Properties()); - - public static final RegistryObject SLAG_BRICK_STAIRS = registerWithItem(BLOCKS.register("slag_brick_stairs", ()-> new StairBlock(SLAG_BRICK_BLOCK.get()::defaultBlockState, BlockBehaviour.Properties.copy(Blocks.STONE))), new Item.Properties()); - - public static final RegistryObject SLAG_BRICK_WALL = registerWithItem(BLOCKS.register("slag_brick_wall", ()-> new WallBlock(BlockBehaviour.Properties.copy(Blocks.STONE_BRICK_WALL))), new Item.Properties()); - - public static final RegistryObject REBAR_CONCRETE_BLOCK = registerWithItem(BLOCKS.register("rebar_concrete", ()-> new Block(BlockBehaviour.Properties.copy(Blocks.STONE).isValidSpawn(ModBlocks::neverSpawn).strength(1f, 2000f))), new Item.Properties()); - - public static final RegistryObject REBAR_CONCRETE_SLAB = registerWithItem(BLOCKS.register("rebar_concrete_slab", ()-> new SlabBlock(BlockBehaviour.Properties.copy(Blocks.STONE).strength(1f, 2000f).isValidSpawn(ModBlocks::neverSpawn))), new Item.Properties()); - - public static final RegistryObject REBAR_CONCRETE_STAIRS = registerWithItem(BLOCKS.register("rebar_concrete_stairs", ()-> new StairBlock(ModBlocks.REBAR_CONCRETE_BLOCK.get()::defaultBlockState, BlockBehaviour.Properties.copy(Blocks.STONE).strength(1f, 2000f).isValidSpawn(ModBlocks::neverSpawn))), new Item.Properties()); - - public static final RegistryObject REBAR_CONCRETE_WALL = registerWithItem(BLOCKS.register("rebar_concrete_wall", ()-> new WallBlock(BlockBehaviour.Properties.copy(Blocks.STONE).strength(1f, 2000f).isValidSpawn(ModBlocks::neverSpawn))), new Item.Properties()); - - public static final RegistryObject REBAR_CONCRETE_TILE_BLOCK = registerWithItem(BLOCKS.register("rebar_concrete_tile", ()-> new Block(BlockBehaviour.Properties.copy(Blocks.STONE).isValidSpawn(ModBlocks::neverSpawn).strength(1f, 2000f))), new Item.Properties()); - - public static final RegistryObject REBAR_CONCRETE_TILE_SLAB = registerWithItem(BLOCKS.register("rebar_concrete_tile_slab", ()-> new SlabBlock(BlockBehaviour.Properties.copy(Blocks.STONE).strength(1f, 2000f).isValidSpawn(ModBlocks::neverSpawn))), new Item.Properties()); - - public static final RegistryObject REBAR_CONCRETE_TILE_STAIRS = registerWithItem(BLOCKS.register("rebar_concrete_tile_stairs", ()-> new StairBlock(ModBlocks.REBAR_CONCRETE_BLOCK.get()::defaultBlockState, BlockBehaviour.Properties.copy(Blocks.STONE).strength(1f, 2000f).isValidSpawn(ModBlocks::neverSpawn))), new Item.Properties()); - - /*public static final RegistryObject REBAR_CONCRETE_HALFSLAB = registerWithItem(BLOCKS.register("halfslab_rebar_concrete", () -> new SlabSliceBlock( - StandardBlocks.CFG_CUTOUT, - BlockBehaviour.Properties.of().strength(1.0f, 2000f).sound(SoundType.STONE).isValidSpawn(ModBlocks::neverSpawn) - )), new Item.Properties());*/ - - public static final RegistryObject PANZER_GLASS_BLOCK = registerWithItem(BLOCKS.register("panzerglass_block", ()-> new Block(noViewBlocking().noOcclusion().strength(0.5f, 2000f).isValidSpawn(ModBlocks::neverSpawn).sound(SoundType.METAL))), new Item.Properties()); - - public static final RegistryObject PANZER_GLASS_SLAB = registerWithItem(BLOCKS.register("panzerglass_slab", ()-> new SlabBlock(noViewBlocking().noOcclusion().strength(0.5f, 2000f).isValidSpawn(ModBlocks::neverSpawn).sound(SoundType.METAL))), new Item.Properties()); - - public static final RegistryObject OLD_INDUSTRIAL_WOOD_PLANKS = registerWithItem(BLOCKS.register("old_industrial_wood_planks", ()-> new Block(BlockBehaviour.Properties.copy(Blocks.OAK_PLANKS).strength(0.5f, 6f).sound(SoundType.WOOD))), new Item.Properties()); - - public static final RegistryObject OLD_INDUSTRIAL_WOOD_SLAB = registerWithItem(BLOCKS.register("old_industrial_wood_slab", ()-> new SlabBlock(BlockBehaviour.Properties.copy(Blocks.OAK_PLANKS).strength(0.5f, 6f).sound(SoundType.WOOD))), new Item.Properties()); - - public static final RegistryObject OLD_INDUSTRIAL_WOOD_STAIRS = registerWithItem(BLOCKS.register("old_industrial_wood_stairs", ()-> new StairBlock(ModBlocks.OLD_INDUSTRIAL_WOOD_PLANKS.get()::defaultBlockState, BlockBehaviour.Properties.copy(Blocks.OAK_PLANKS).strength(0.5f, 6f).sound(SoundType.WOOD))), new Item.Properties()); - - public static final RegistryObject OLD_INDUSTRIAL_WOOD_DOOR = registerWithItem(BLOCKS.register("old_industrial_wood_door", ()-> new DoorBlock(BlockBehaviour.Properties.copy(Blocks.OAK_PLANKS).strength(0.5f, 6f).noOcclusion().sound(SoundType.WOOD))), new Item.Properties()); - - /* - - public static final RegistryObject STEEL_CATWALK = registerWithItem(BLOCKS.register("steel_catwalk", ()-> new BlockCustomVoxels(gratingBlock, Block.box(0, 0, 0, 16, 2, 16))), new Item.Properties()); - - public static final RegistryObject STEEL_CATWALK_TOP = registerWithItem(BLOCKS.register("steel_catwalk_top", ()-> new BlockCustomVoxels(gratingBlock, Block.box(0, 14, 0, 16, 16, 16))), new Item.Properties()); - - public static final RegistryObject STEEL_GRATING = registerWithItem(BLOCKS.register("steel_floor_grating", ()-> new BlockCustomVoxels(gratingBlock, Block.box(0, 0, 0, 16, 2, 16))), new Item.Properties()); - - public static final RegistryObject STEEL_GRATING_TOP = registerWithItem(BLOCKS.register("steel_floor_grating_top", ()-> new BlockCustomVoxels(gratingBlock, Block.box(0, 14, 0, 16, 16, 16))), new Item.Properties()); - - public static final RegistryObject STEEL_TABLE = registerWithItem(BLOCKS.register("steel_table", ()-> new BlockCustomVoxels(gratingBlock, Block.box(0, 0, 0, 16, 16, 16))), new Item.Properties()); - - private static final VoxelShape STEEL_CATWALK_STAIRS_NORTH = Shapes.join(Block.box(1, 10, 0, 15, 12, 8), Block.box(1, 2, 8, 15, 4, 16), BooleanOp.OR); - - private static final VoxelShape STEEL_CATWALK_STAIRS_SOUTH = Shapes.join(Block.box(1, 10, 8, 15, 12, 16), Block.box(1, 2, 0, 15, 4, 8), BooleanOp.OR); - - private static final VoxelShape STEEL_CATWALK_STAIRS_EAST = Shapes.join(Block.box(8, 10, 1, 16, 12, 15), Block.box(0, 2, 1, 8, 4, 15), BooleanOp.OR); - - private static final VoxelShape STEEL_CATWALK_STAIRS_WEST = Shapes.join(Block.box(0, 10, 1, 8, 12, 15), Block.box(8, 2, 1, 16, 4, 15), BooleanOp.OR); - - public static final RegistryObject STEEL_CATWALK_STAIRS = registerWithItem(BLOCKS.register("steel_catwalk_stairs", ()-> new RotatableBlockCustomVoxels(gratingBlock, STEEL_CATWALK_STAIRS_NORTH, STEEL_CATWALK_STAIRS_SOUTH, STEEL_CATWALK_STAIRS_WEST, STEEL_CATWALK_STAIRS_EAST)), new Item.Properties()); - - private static final VoxelShape STEEL_CATWALK_STAIRS_LR_NORTH = Stream.of( - Block.box(1, 2, 8, 15, 4, 16), - Block.box(1, 10, 0, 15, 12, 8), - Block.box(0, 0, 0, 1, 21, 16) - ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(); - - private static final VoxelShape STEEL_CATWALK_STAIRS_LR_SOUTH = Stream.of( - Block.box(1, 2, 0, 15, 4, 8), - Block.box(1, 10, 8, 15, 12, 16), - Block.box(15, 0, 0, 16, 21, 16) - ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(); - - private static final VoxelShape STEEL_CATWALK_STAIRS_LR_EAST = Stream.of( - Block.box(0, 2, 1, 8, 4, 15), - Block.box(8, 10, 1, 16, 12, 15), - Block.box(0, 0, 0, 16, 21, 1) - ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(); - - private static final VoxelShape STEEL_CATWALK_STAIRS_LR_WEST = Stream.of( - Block.box(8, 2, 1, 16, 4, 15), - Block.box(0, 10, 1, 8, 12, 15), - Block.box(0, 0, 15, 16, 21, 16) - ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(); - public static final RegistryObject STEEL_CATWALK_STAIRS_LR = registerWithItem(BLOCKS.register("steel_catwalk_stairs_lr", ()-> new RotatableBlockCustomVoxels(gratingBlock, STEEL_CATWALK_STAIRS_LR_NORTH, STEEL_CATWALK_STAIRS_LR_SOUTH, STEEL_CATWALK_STAIRS_LR_WEST, STEEL_CATWALK_STAIRS_LR_EAST)), new Item.Properties()); - - private static final VoxelShape STEEL_CATWALK_STAIRS_RR_NORTH = Stream.of( - Block.box(1, 2, 8, 15, 4, 16), - Block.box(1, 10, 0, 15, 12, 8), - Block.box(15, 0, 0, 16, 21, 16) - ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(); - - private static final VoxelShape STEEL_CATWALK_STAIRS_RR_SOUTH = Stream.of( - Block.box(1, 2, 0, 15, 4, 8), - Block.box(1, 10, 8, 15, 12, 16), - Block.box(0, 0, 0, 1, 21, 16) - ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(); - - private static final VoxelShape STEEL_CATWALK_STAIRS_RR_EAST = Stream.of( - Block.box(0, 2, 1, 8, 4, 15), - Block.box(8, 10, 1, 16, 12, 15), - Block.box(0, 0, 15, 16, 21, 16) - ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(); - - private static final VoxelShape STEEL_CATWALK_STAIRS_RR_WEST = Stream.of( - Block.box(8, 2, 1, 16, 4, 15), - Block.box(0, 10, 1, 8, 12, 15), - Block.box(0, 0, 0, 16, 21, 1) - ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(); - - public static final RegistryObject STEEL_CATWALK_STAIRS_RR = registerWithItem(BLOCKS.register("steel_catwalk_stairs_rr", ()-> new RotatableBlockCustomVoxels(gratingBlock, STEEL_CATWALK_STAIRS_RR_NORTH, STEEL_CATWALK_STAIRS_RR_SOUTH, STEEL_CATWALK_STAIRS_RR_WEST, STEEL_CATWALK_STAIRS_RR_EAST)), new Item.Properties()); - - private static final VoxelShape STEEL_CATWALK_STAIRS_DR_NORTH = Stream.of( - Block.box(1, 10, 0, 15, 12, 8), - Block.box(1, 2, 8, 15, 4, 16), - Block.box(0, 0, 0, 1, 21, 16), - Block.box(15, 0, 0, 16, 21, 16) - ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(); - - private static final VoxelShape STEEL_CATWALK_STAIRS_DR_SOUTH = Stream.of( - Block.box(1, 10, 8, 15, 12, 16), - Block.box(1, 2, 0, 15, 4, 8), - Block.box(15, 0, 0, 16, 21, 16), - Block.box(0, 0, 0, 1, 21, 16) - ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(); - - private static final VoxelShape STEEL_CATWALK_STAIRS_DR_WEST = Stream.of( - Block.box(8, 10, 1, 16, 12, 15), - Block.box(0, 2, 1, 8, 4, 15), - Block.box(0, 0, 0, 16, 21, 1), - Block.box(0, 0, 15, 16, 21, 16) - ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(); - - private static final VoxelShape STEEL_CATWALK_STAIRS_DR_EAST = Stream.of( - Block.box(0, 10, 1, 8, 12, 15), - Block.box(8, 2, 1, 16, 4, 15), - Block.box(0, 0, 15, 16, 21, 16), - Block.box(0, 0, 0, 16, 21, 1) - ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(); - - public static final RegistryObject STEEL_CATWALK_STAIRS_DR = registerWithItem(BLOCKS.register("steel_catwalk_stairs_dr", ()-> new RotatableBlockCustomVoxels(gratingBlock, STEEL_CATWALK_STAIRS_DR_NORTH, STEEL_CATWALK_STAIRS_DR_SOUTH, STEEL_CATWALK_STAIRS_DR_WEST, STEEL_CATWALK_STAIRS_DR_EAST)), new Item.Properties()); - - private static final VoxelShape STEEL_RAILING_NORTH = Block.box(0.25, 0.25, 0.25, 15.75, 16, 1.25); - private static final VoxelShape STEEL_RAILING_SOUTH = Block.box(0.25, 0.25, 14.75, 15.75, 16, 15.75); - - private static final VoxelShape STEEL_RAILING_WEST = Block.box(14.75, 0.25, 0.25, 15.75, 16, 15.75); - private static final VoxelShape STEEL_RAILING_EAST = Block.box(0.25, 0.25, 0.25, 1.25, 16, 15.75); - public static final RegistryObject STEEL_RAILING = registerWithItem(BLOCKS.register("steel_railing", ()->new RotatableBlockCustomVoxels(gratingBlock, STEEL_RAILING_NORTH, STEEL_RAILING_SOUTH, STEEL_RAILING_WEST, STEEL_RAILING_EAST)), new Item.Properties()); - - public static final RegistryObject STEEL_CATWALK_BLOCK = registerWithItem(BLOCKS.register("steel_catwalk_block", ()-> new Block(gratingBlock)), new Item.Properties()); - - - */ - -/* - public static final VoxelShape SHAPE_T_FLIPFLOP = Block.box(0, 0, 0, 16, 1, 16); - - public static final RegistryObject TFLIPFLOP_BLOCK = registerWithItem(BLOCKS.register("tflipflop", () -> new TFlipFlopBlock(noViewBlocking().noOcclusion().noCollission())), new Item.Properties()); - - - */ - - -} diff --git a/src/main/java/dev/zontreck/essentials/client/AutoWalk.java b/src/main/java/dev/zontreck/essentials/client/AutoWalk.java deleted file mode 100644 index 2008830..0000000 --- a/src/main/java/dev/zontreck/essentials/client/AutoWalk.java +++ /dev/null @@ -1,65 +0,0 @@ -package dev.zontreck.essentials.client; - -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.Messages; -import dev.zontreck.libzontreck.util.ChatHelpers; -import net.minecraft.client.Minecraft; -import net.minecraftforge.api.distmarker.Dist; -import net.minecraftforge.api.distmarker.OnlyIn; -import net.minecraftforge.client.event.InputEvent; -import net.minecraftforge.eventbus.api.SubscribeEvent; -import net.minecraftforge.fml.common.Mod; - -import java.time.Instant; -import java.util.UUID; - -@OnlyIn(Dist.CLIENT) -@Mod.EventBusSubscriber(modid = AriasEssentials.MODID, value = Dist.CLIENT) -public class AutoWalk { - private static boolean isWalking = false; - private static boolean autoJump = false; - static Thread runner; - static long lastPress; - - @SubscribeEvent - public static void onKeyPress(InputEvent.Key event) { - if(Keybindings.AUTOWALK.matches(event.getKey(), event.getScanCode()) && Minecraft.getInstance().screen == null && Keybindings.AUTOWALK.isDown()) - { - lastPress = Instant.now().getEpochSecond(); - if(isWalking) - { - stopWalking(); - } else startWalking(); - } - } - - - private static void startWalking() { - isWalking=true; - autoJump = Minecraft.getInstance().options.autoJump().get(); - Minecraft.getInstance().options.autoJump().set(true); - - - Minecraft.getInstance().player.displayClientMessage(ChatHelpers.macro(Messages.ESSENTIALS_PREFIX + "!Dark_Green!AutoWalking started"), false); - - runner = new Thread(()->{ - while(AutoWalk.isWalking) - { - if(!Minecraft.getInstance().options.keyUp.isDown()) - Minecraft.getInstance().options.keyUp.setDown(true); - } - }); - runner.start(); - } - - private static void stopWalking() { - isWalking=false; - runner.interrupt(); - runner=null; - Minecraft.getInstance().options.autoJump().set(autoJump); - Minecraft.getInstance().options.keyUp.setDown(false); - - Minecraft.getInstance().player.displayClientMessage(ChatHelpers.macro(Messages.ESSENTIALS_PREFIX + "!Dark_Green!AutoWalking stopped"), false); - - } -} diff --git a/src/main/java/dev/zontreck/essentials/client/Keybindings.java b/src/main/java/dev/zontreck/essentials/client/Keybindings.java deleted file mode 100644 index 612567f..0000000 --- a/src/main/java/dev/zontreck/essentials/client/Keybindings.java +++ /dev/null @@ -1,29 +0,0 @@ -package dev.zontreck.essentials.client; - - -import com.mojang.blaze3d.platform.InputConstants; -import net.minecraft.client.KeyMapping; -import net.minecraftforge.api.distmarker.Dist; -import net.minecraftforge.api.distmarker.OnlyIn; -import net.minecraftforge.client.event.RegisterKeyMappingsEvent; -import net.minecraftforge.eventbus.api.SubscribeEvent; - -@OnlyIn(Dist.CLIENT) -public class Keybindings { - public static final String KEY_CATEGORY_ESSENTIALS = "key.category.ariasessentials"; - public static final String KEY_AUTOWALK = "key.ariasessentials.autowalk"; - - public static final KeyMapping AUTOWALK = createKeyMapping(KEY_AUTOWALK, InputConstants.KEY_CAPSLOCK, KEY_CATEGORY_ESSENTIALS); - - private static KeyMapping createKeyMapping(String name, int keycode, String category){ - final KeyMapping key = new KeyMapping(name, keycode, category); - return key; - } - - @SubscribeEvent - public static void registerKeyMappings(RegisterKeyMappingsEvent event) - { - event.register(AUTOWALK); - } -} - diff --git a/src/main/java/dev/zontreck/essentials/client/renderer/HeartsRenderer.java b/src/main/java/dev/zontreck/essentials/client/renderer/HeartsRenderer.java deleted file mode 100644 index 0d011d1..0000000 --- a/src/main/java/dev/zontreck/essentials/client/renderer/HeartsRenderer.java +++ /dev/null @@ -1,336 +0,0 @@ -/* - * - * DISCLAIMER: This code was taken from Mantle, and will be modified to fit the needs of this mod, such as adding more heat options. This code is subject to Mantle's license of MIT. - * Despite this code being taken from, and modified/updated to be modern, all textures are my own creation - * This disclaimer is here to give credit where credit is due. The author(s) of mantle have done a absolutely fantastic job. And if Mantle gets updated this shall be removed along with future plans of extra hearts and color options. - * - * - */ - -package dev.zontreck.essentials.client.renderer; - -import com.mojang.blaze3d.systems.RenderSystem; -import com.mojang.blaze3d.vertex.PoseStack; - -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.configs.client.AEClientConfig; -import net.minecraft.Util; -import net.minecraft.client.Minecraft; -import net.minecraft.client.gui.Gui; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.util.Mth; -import net.minecraft.world.effect.MobEffectInstance; -import net.minecraft.world.effect.MobEffects; -import net.minecraft.world.entity.Entity; -import net.minecraft.world.entity.ai.attributes.AttributeInstance; -import net.minecraft.world.entity.ai.attributes.Attributes; -import net.minecraft.world.entity.player.Player; -import net.minecraftforge.api.distmarker.Dist; -import net.minecraftforge.api.distmarker.OnlyIn; -import net.minecraftforge.client.event.RenderGuiOverlayEvent; -import net.minecraftforge.client.gui.overlay.ForgeGui; -import net.minecraftforge.client.gui.overlay.GuiOverlayManager; -import net.minecraftforge.client.gui.overlay.NamedGuiOverlay; -import net.minecraftforge.common.MinecraftForge; -import net.minecraftforge.eventbus.api.EventPriority; -import net.minecraftforge.eventbus.api.SubscribeEvent; - -import java.util.Random; - -@OnlyIn(Dist.CLIENT) -public class HeartsRenderer { - private static final ResourceLocation ICON_HEARTS = new ResourceLocation(AriasEssentials.MODID, - "textures/gui/hearts.png"); - private static final ResourceLocation ICON_ABSORB = new ResourceLocation(AriasEssentials.MODID, - "textures/gui/absorb.png"); - private static final ResourceLocation ICON_VANILLA = Gui.GUI_ICONS_LOCATION; - - private final Minecraft mc = Minecraft.getInstance(); - - private int playerHealth = 0; - private int lastPlayerHealth = 0; - private long healthUpdateCounter = 0; - private long lastSystemTime = 0; - private final Random rand = new Random(); - - private int regen; - - /** - * Draws a texture to the screen - * - * @param matrixStack Matrix stack instance - * @param x X position - * @param y Y position - * @param textureX Texture X - * @param textureY Texture Y - * @param width Width to draw - * @param height Height to draw - */ - private void blit(PoseStack matrixStack, int x, int y, int textureX, int textureY, int width, int height, ResourceLocation resource) { - blit(matrixStack, x, y, textureX, textureY, width, height, resource); - } - - /* HUD */ - - /** - * Event listener - * - * @param event Event instance - */ - @SubscribeEvent(priority = EventPriority.LOW) - public void renderHealthbar(RenderGuiOverlayEvent.Pre event) { - NamedGuiOverlay ActualOverlay = GuiOverlayManager.findOverlay(new ResourceLocation("minecraft:player_health")); - - if (ActualOverlay == null) { - if (GuiOverlayManager.getOverlays() == null) { - AriasEssentials.LOGGER.info("Overlays non existent?!"); - } - for (NamedGuiOverlay overlay : GuiOverlayManager.getOverlays()) { - // Next print - // LibZontreck.LOGGER.info("GUI OVERLAY: "+overlay.id().getPath()); - - if (overlay.id().getPath().equals("player_health")) { - ActualOverlay = overlay; - break; - } - } - } - if (event.isCanceled() || !AEClientConfig.getInstance().EnableHearts || event.getOverlay() != ActualOverlay) { - return; - } - // ensure its visible - if (!(mc.gui instanceof ForgeGui gui) || mc.options.hideGui || !gui.shouldDrawSurvivalElements()) { - return; - } - Entity renderViewEnity = this.mc.getCameraEntity(); - if (!(renderViewEnity instanceof Player player)) { - return; - } - gui.setupOverlayRenderState(true, false); - - this.mc.getProfiler().push("health"); - - // extra setup stuff from us - int left_height = gui.leftHeight; - int width = this.mc.getWindow().getGuiScaledWidth(); - int height = this.mc.getWindow().getGuiScaledHeight(); - int updateCounter = this.mc.gui.getGuiTicks(); - - // start default forge/mc rendering - // changes are indicated by comment - - int health = Mth.ceil(player.getHealth()); - boolean highlight = this.healthUpdateCounter > (long) updateCounter - && (this.healthUpdateCounter - (long) updateCounter) / 3L % 2L == 1L; - - if (health < this.playerHealth && player.invulnerableTime > 0) { - this.lastSystemTime = Util.getMillis(); - this.healthUpdateCounter = (updateCounter + 20); - } else if (health > this.playerHealth && player.invulnerableTime > 0) { - this.lastSystemTime = Util.getMillis(); - this.healthUpdateCounter = (updateCounter + 10); - } - - if (Util.getMillis() - this.lastSystemTime > 1000L) { - this.playerHealth = health; - this.lastPlayerHealth = health; - this.lastSystemTime = Util.getMillis(); - } - - this.playerHealth = health; - int healthLast = this.lastPlayerHealth; - - AttributeInstance attrMaxHealth = player.getAttribute(Attributes.MAX_HEALTH); - float healthMax = attrMaxHealth == null ? 0 : (float) attrMaxHealth.getValue(); - float absorb = Mth.ceil(player.getAbsorptionAmount()); - - // CHANGE: simulate 10 hearts max if there's more, so vanilla only renders one - // row max - healthMax = Math.min(healthMax, 20f); - health = Math.min(health, 20); - absorb = Math.min(absorb, 20); - - int healthRows = Mth.ceil((healthMax + absorb) / 2.0F / 10.0F); - int rowHeight = Math.max(10 - (healthRows - 2), 3); - - this.rand.setSeed(updateCounter * 312871L); - - int left = width / 2 - 91; - int top = height - left_height; - // change: these are unused below, unneeded? should these adjust the Forge - // variable? - // left_height += (healthRows * rowHeight); - // if (rowHeight != 10) left_height += 10 - rowHeight; - - this.regen = -1; - if (player.hasEffect(MobEffects.REGENERATION)) { - this.regen = updateCounter % 25; - } - - assert this.mc.level != null; - final int TOP = 9 * (this.mc.level.getLevelData().isHardcore() ? 5 : 0); - final int BACKGROUND = (highlight ? 25 : 16); - int MARGIN = 16; - if (player.hasEffect(MobEffects.POISON)) - MARGIN += 36; - else if (player.hasEffect(MobEffects.WITHER)) - MARGIN += 72; - float absorbRemaining = absorb; - - PoseStack matrixStack = event.getPoseStack(); - for (int i = Mth.ceil((healthMax + absorb) / 2.0F) - 1; i >= 0; --i) { - int row = Mth.ceil((float) (i + 1) / 10.0F) - 1; - int x = left + i % 10 * 8; - int y = top - row * rowHeight; - - if (health <= 4) - y += this.rand.nextInt(2); - if (i == this.regen) - y -= 2; - - this.blit(matrixStack, x, y, BACKGROUND, TOP, 9, 9, ICON_VANILLA); - - if (highlight) { - if (i * 2 + 1 < healthLast) { - this.blit(matrixStack, x, y, MARGIN + 54, TOP, 9, 9, ICON_VANILLA); // 6 - } else if (i * 2 + 1 == healthLast) { - this.blit(matrixStack, x, y, MARGIN + 63, TOP, 9, 9, ICON_VANILLA); // 7 - } - } - - if (absorbRemaining > 0.0F) { - if (absorbRemaining == absorb && absorb % 2.0F == 1.0F) { - this.blit(matrixStack, x, y, MARGIN + 153, TOP, 9, 9, ICON_VANILLA); // 17 - absorbRemaining -= 1.0F; - } else { - this.blit(matrixStack, x, y, MARGIN + 144, TOP, 9, 9, ICON_VANILLA); // 16 - absorbRemaining -= 2.0F; - } - } else { - if (i * 2 + 1 < health) { - this.blit(matrixStack, x, y, MARGIN + 36, TOP, 9, 9, ICON_VANILLA); // 4 - } else if (i * 2 + 1 == health) { - this.blit(matrixStack, x, y, MARGIN + 45, TOP, 9, 9, ICON_VANILLA); // 5 - } - } - } - - this.renderExtraHearts(matrixStack, left, top, player); - this.renderExtraAbsorption(matrixStack, left, top - rowHeight, player); - - RenderSystem.setShaderTexture(0, ICON_VANILLA); - gui.leftHeight += 10; - if (absorb > 0) { - gui.leftHeight += 10; - } - - event.setCanceled(true); - RenderSystem.disableBlend(); - this.mc.getProfiler().pop(); - MinecraftForge.EVENT_BUS - .post(new RenderGuiOverlayEvent.Post(mc.getWindow(), event.getPoseStack(), event.getPartialTick(), ActualOverlay)); - } - - /** - * Gets the texture from potion effects - * - * @param player Player instance - * @return Texture offset for potion effects - */ - private int getPotionOffset(Player player) { - int potionOffset = 0; - MobEffectInstance potion = player.getEffect(MobEffects.WITHER); - if (potion != null) { - potionOffset = 18; - } - potion = player.getEffect(MobEffects.POISON); - if (potion != null) { - potionOffset = 9; - } - assert this.mc.level != null; - if (this.mc.level.getLevelData().isHardcore()) { - potionOffset += 27; - } - return potionOffset; - } - - /** - * Renders the health above 10 hearts - * - * @param matrixStack Matrix stack instance - * @param xBasePos Health bar top corner - * @param yBasePos Health bar top corner - * @param player Player instance - */ - private void renderExtraHearts(PoseStack matrixStack, int xBasePos, int yBasePos, Player player) { - int potionOffset = this.getPotionOffset(player); - - // Extra hearts - RenderSystem.setShaderTexture(0, ICON_HEARTS); - int hp = Mth.ceil(player.getHealth()); - this.renderCustomHearts(matrixStack, xBasePos, yBasePos, potionOffset, hp, false); - } - - /** - * Renders the absorption health above 10 hearts - * - * @param matrixStack Matrix stack instance - * @param xBasePos Health bar top corner - * @param yBasePos Health bar top corner - * @param player Player instance - */ - private void renderExtraAbsorption(PoseStack matrixStack, int xBasePos, int yBasePos, Player player) { - int potionOffset = this.getPotionOffset(player); - - // Extra hearts - RenderSystem.setShaderTexture(0, ICON_ABSORB); - int absorb = Mth.ceil(player.getAbsorptionAmount()); - this.renderCustomHearts(matrixStack, xBasePos, yBasePos, potionOffset, absorb, true); - } - - /** - * Gets the texture offset from the regen effect - * - * @param i Heart index - * @param offset Current offset - */ - private int getYRegenOffset(int i, int offset) { - return i + offset == this.regen ? -2 : 0; - } - - /** - * Shared logic to render custom hearts - * - * @param matrixStack Matrix stack instance - * @param xBasePos Health bar top corner - * @param yBasePos Health bar top corner - * @param potionOffset Offset from the potion effect - * @param count Number to render - * @param absorb If true, render absorption hearts - */ - private void renderCustomHearts(PoseStack matrixStack, int xBasePos, int yBasePos, int potionOffset, int count, - boolean absorb) { - int regenOffset = absorb ? 10 : 0; - for (int iter = 0; iter < count / 20; iter++) { - int renderHearts = (count - 20 * (iter + 1)) / 2; - int heartIndex = iter % 11; - if (renderHearts > 10) { - renderHearts = 10; - } - for (int i = 0; i < renderHearts; i++) { - int y = this.getYRegenOffset(i, regenOffset); - if (absorb) { - this.blit(matrixStack, xBasePos + 8 * i, yBasePos + y, 0, 54, 9, 9, ICON_ABSORB); - } - this.blit(matrixStack, xBasePos + 8 * i, yBasePos + y, 18 * heartIndex, potionOffset, 9, 9, ICON_HEARTS); - } - if (count % 2 == 1 && renderHearts < 10) { - int y = this.getYRegenOffset(renderHearts, regenOffset); - if (absorb) { - this.blit(matrixStack, xBasePos + 8 * renderHearts, yBasePos + y, 0, 54, 9, 9, ICON_ABSORB); - } - this.blit(matrixStack, xBasePos + 8 * renderHearts, yBasePos + y, 9 + 18 * heartIndex, potionOffset, 9, 9, ICON_HEARTS); - } - } - } -} diff --git a/src/main/java/dev/zontreck/essentials/commands/CommandRegister.java b/src/main/java/dev/zontreck/essentials/commands/CommandRegister.java deleted file mode 100644 index 48a2ab7..0000000 --- a/src/main/java/dev/zontreck/essentials/commands/CommandRegister.java +++ /dev/null @@ -1,47 +0,0 @@ -package dev.zontreck.essentials.commands; - -import dev.zontreck.essentials.commands.gui.HeartsCommand; -import dev.zontreck.essentials.commands.homes.DelHomeCommand; -import dev.zontreck.essentials.commands.homes.HomeCommand; -import dev.zontreck.essentials.commands.homes.HomesCommand; -import dev.zontreck.essentials.commands.homes.SetHomeCommand; -import dev.zontreck.essentials.commands.teleport.*; -import dev.zontreck.essentials.commands.warps.DelWarpCommand; -import dev.zontreck.essentials.commands.warps.RTPWarpCommand; -import dev.zontreck.essentials.commands.warps.SetWarpCommand; -import dev.zontreck.essentials.commands.warps.WarpCommand; -import dev.zontreck.essentials.commands.warps.WarpsCommand; -import dev.zontreck.essentials.warps.Warps; -import net.minecraftforge.event.RegisterCommandsEvent; -import net.minecraftforge.eventbus.api.EventPriority; -import net.minecraftforge.eventbus.api.SubscribeEvent; - -public class CommandRegister { - @SubscribeEvent - public void onCommandRegister(final RegisterCommandsEvent ev) - { - DelHomeCommand.register(ev.getDispatcher()); - HomeCommand.register(ev.getDispatcher()); - HomesCommand.register(ev.getDispatcher()); - SetHomeCommand.register(ev.getDispatcher()); - - RTPCommand.register(ev.getDispatcher()); - TPAcceptCommand.register(ev.getDispatcher()); - TPAHereCommand.register(ev.getDispatcher()); - TPACommand.register(ev.getDispatcher()); - TPCancelCommand.register(ev.getDispatcher()); - TPDenyCommand.register(ev.getDispatcher()); - - DelWarpCommand.register(ev.getDispatcher()); - RTPWarpCommand.register(ev.getDispatcher()); - SetWarpCommand.register(ev.getDispatcher()); - WarpCommand.register(ev.getDispatcher()); - WarpsCommand.register(ev.getDispatcher()); - - HeartsCommand.register(ev.getDispatcher()); - SpawnCommand.register(ev.getDispatcher()); - BackCommand.register(ev.getDispatcher()); - - TPEffectsCommand.register(ev.getDispatcher()); - } -} diff --git a/src/main/java/dev/zontreck/essentials/commands/gui/HeartsCommand.java b/src/main/java/dev/zontreck/essentials/commands/gui/HeartsCommand.java deleted file mode 100644 index 6e869e0..0000000 --- a/src/main/java/dev/zontreck/essentials/commands/gui/HeartsCommand.java +++ /dev/null @@ -1,46 +0,0 @@ -package dev.zontreck.essentials.commands.gui; - -import com.mojang.brigadier.CommandDispatcher; -import com.mojang.brigadier.arguments.BoolArgumentType; -import dev.zontreck.essentials.Messages; -import dev.zontreck.essentials.events.CommandExecutionEvent; -import dev.zontreck.essentials.networking.ModMessages; -import dev.zontreck.essentials.networking.packets.s2c.S2CUpdateHearts; -import dev.zontreck.libzontreck.util.ChatHelpers; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.Commands; -import net.minecraftforge.common.MinecraftForge; - -public class HeartsCommand -{ - public static void register(CommandDispatcher dispatcher) - { - dispatcher.register(Commands.literal("hearts").executes(x->usage(x.getSource())).then(Commands.argument("compress", BoolArgumentType.bool()).executes(x->hearts(x.getSource(), BoolArgumentType.getBool(x, "compress"))))); - } - - private static int hearts(CommandSourceStack stack, boolean compressHearts) - { - - var exec = new CommandExecutionEvent(stack.getPlayer(), "hearts"); - if(MinecraftForge.EVENT_BUS.post(exec)) - { - return 0; - } - // Send the state to the client, then update the config - // Send feedback to the user - ChatHelpers.broadcastTo(stack.getPlayer().getUUID(), ChatHelpers.macro(Messages.HEARTS_UPDATED), stack.getServer()); - - S2CUpdateHearts update = new S2CUpdateHearts(compressHearts); - ModMessages.sendToPlayer(update, stack.getPlayer()); - - return 0; - } - - private static int usage(CommandSourceStack stack) - { - ChatHelpers.broadcastTo(stack.getPlayer().getUUID(), ChatHelpers.macro(Messages.HEARTS_USAGE), stack.getServer()); - - - return 0; - } -} diff --git a/src/main/java/dev/zontreck/essentials/commands/teleport/BackCommand.java b/src/main/java/dev/zontreck/essentials/commands/teleport/BackCommand.java deleted file mode 100644 index c513f5a..0000000 --- a/src/main/java/dev/zontreck/essentials/commands/teleport/BackCommand.java +++ /dev/null @@ -1,48 +0,0 @@ -package dev.zontreck.essentials.commands.teleport; - -import com.mojang.brigadier.CommandDispatcher; -import dev.zontreck.essentials.Messages; -import dev.zontreck.essentials.configs.server.AEServerConfig; -import dev.zontreck.essentials.events.CommandExecutionEvent; -import dev.zontreck.essentials.util.BackPositionCaches; -import dev.zontreck.libzontreck.util.ChatHelpers; -import dev.zontreck.libzontreck.vectors.WorldPosition; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.Commands; -import net.minecraftforge.common.MinecraftForge; - -public class BackCommand -{ - public static void register(CommandDispatcher dispatcher) - { - dispatcher.register(Commands.literal("back").executes(c->back(c.getSource()))); - } - - public static int back(CommandSourceStack ctx) - { - var exec = new CommandExecutionEvent(ctx.getPlayer(), "back"); - if(MinecraftForge.EVENT_BUS.post(exec)) - { - return 0; - } - try { - if(!AEServerConfig.getInstance().back.Enabled && !ctx.hasPermission(ctx.getServer().getOperatorUserPermissionLevel())) - { - ChatHelpers.broadcastTo(ctx.getPlayer(), ChatHelpers.macro(Messages.TELEPORT_BACK_DISABLED), ctx.getServer()); - return 0; - } - - WorldPosition wp = BackPositionCaches.Pop(ctx.getPlayer().getUUID()); - - ChatHelpers.broadcastTo(ctx.getPlayer(), ChatHelpers.macro(Messages.TELEPORT_BACK), ctx.getServer()); - - TeleportContainer cont = new TeleportContainer(ctx.getPlayer(), wp.Position.asMinecraftVector(), ctx.getRotation(), wp.getActualDimension()); - - TeleportActioner.ApplyTeleportEffect(ctx.getPlayer()); - TeleportActioner.PerformTeleport(cont, true); - } catch (Exception e) { - ChatHelpers.broadcastTo(ctx.getPlayer(), ChatHelpers.macro(Messages.NO_BACK), ctx.getServer()); - } - return 0; - } -} diff --git a/src/main/java/dev/zontreck/essentials/commands/teleport/RTPCommand.java b/src/main/java/dev/zontreck/essentials/commands/teleport/RTPCommand.java deleted file mode 100644 index 16531d7..0000000 --- a/src/main/java/dev/zontreck/essentials/commands/teleport/RTPCommand.java +++ /dev/null @@ -1,73 +0,0 @@ -package dev.zontreck.essentials.commands.teleport; - -import com.mojang.brigadier.CommandDispatcher; - -import dev.zontreck.essentials.events.CommandExecutionEvent; -import dev.zontreck.essentials.rtp.RandomPositionFactory; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.Commands; -import net.minecraft.server.level.ServerPlayer; -import net.minecraft.world.entity.player.Player; -import net.minecraft.world.phys.Vec3; -import net.minecraftforge.common.MinecraftForge; - -public class RTPCommand { - - public static void register(CommandDispatcher dispatcher) - { - dispatcher.register(Commands.literal("rtp").executes(c->rtp(c.getSource()))); - - //executes(c -> doCancel(c.getSource()))); - - //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { - //String arg = StringArgumentType.getString(command, "nickname"); - //return setHome(command.getSource(), arg); - //})); - } - - private static int rtp(CommandSourceStack source) { - - var exec = new CommandExecutionEvent(source.getPlayer(), "rtp"); - if(MinecraftForge.EVENT_BUS.post(exec)) - { - return 0; - } - /*if(!CommandRegistry.canUse("rtp")) { - ChatServerOverride.broadcastTo(source.getPlayer().getUUID(), Component.translatable("dev.zontreck.otemod.msgs.command_cooling_down").append(Component.literal(""+CommandRegistry.getRemaining("rtp"))).append(Component.translatable("dev.zontreck.otemod.msgs.command_cooling_down_seconds")), source.getServer()); - - // exit - //return 0; // Removed until the player data registry is implemented - } - CommandRegistry.markUsed("rtp");*/ - if(!(source.getEntity() instanceof Player)){ - return 1; - } - final ServerPlayer pla = (ServerPlayer)source.getEntity(); - - //final TeleportContainer cont = new TeleportContainer(pla, Vec3.ZERO, pla.getRotationVector(), source.getLevel()); - - - - Thread tx = new Thread(new Runnable() { - @Override - public void run(){ - // We can now execute the loop to search for a safe spot! - //Vector3 v = new Vector3(); - // RTP is not designed to be safe really, but we at least want to check if where we are putting the player is air - - Vec3 pos = pla.position(); - - //boolean found_place= false; - RandomPositionFactory.beginRTP(pla, pla.getLevel()); - - - } - }); - - tx.start(); - - - return 0; - } - -} diff --git a/src/main/java/dev/zontreck/essentials/commands/teleport/SpawnCommand.java b/src/main/java/dev/zontreck/essentials/commands/teleport/SpawnCommand.java deleted file mode 100644 index a5d786e..0000000 --- a/src/main/java/dev/zontreck/essentials/commands/teleport/SpawnCommand.java +++ /dev/null @@ -1,49 +0,0 @@ -package dev.zontreck.essentials.commands.teleport; - -import com.mojang.brigadier.CommandDispatcher; - -import dev.zontreck.essentials.Messages; -import dev.zontreck.essentials.events.CommandExecutionEvent; -import dev.zontreck.libzontreck.util.ChatHelpers; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.Commands; -import net.minecraft.core.BlockPos; -import net.minecraft.server.level.ServerPlayer; -import net.minecraft.world.phys.Vec2; -import net.minecraft.world.phys.Vec3; -import net.minecraftforge.common.MinecraftForge; - -public class SpawnCommand { - - public static void register(CommandDispatcher dispatcher) - { - dispatcher.register(Commands.literal("spawn").executes(c-> respawn(c.getSource()))); - - //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { - //String arg = StringArgumentType.getString(command, "nickname"); - //return setHome(command.getSource(), arg); - //})); - } - - private static int respawn(CommandSourceStack source) { - - var exec = new CommandExecutionEvent(source.getPlayer(), "spawn"); - if(MinecraftForge.EVENT_BUS.post(exec)) - { - return 0; - } - ServerPlayer p = (ServerPlayer)source.getEntity(); - - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.RESPAWNING), p.server); - - BlockPos spawn = p.getLevel().getSharedSpawnPos(); - - TeleportActioner.ApplyTeleportEffect(p); - TeleportContainer cont = new TeleportContainer(p, new Vec3(spawn.getX(), spawn.getY(), spawn.getZ()), Vec2.ZERO, p.getLevel()); - TeleportActioner.PerformTeleport(cont, false); - - - return 0; - } - -} diff --git a/src/main/java/dev/zontreck/essentials/commands/teleport/TPEffectsCommand.java b/src/main/java/dev/zontreck/essentials/commands/teleport/TPEffectsCommand.java deleted file mode 100644 index 21d46ed..0000000 --- a/src/main/java/dev/zontreck/essentials/commands/teleport/TPEffectsCommand.java +++ /dev/null @@ -1,43 +0,0 @@ -package dev.zontreck.essentials.commands.teleport; - -import com.mojang.brigadier.CommandDispatcher; -import com.mojang.brigadier.arguments.BoolArgumentType; -import dev.zontreck.essentials.Messages; -import dev.zontreck.libzontreck.chestgui.ChestGUI; -import dev.zontreck.libzontreck.chestgui.ChestGUIButton; -import dev.zontreck.libzontreck.chestgui.ChestGUIIdentifier; -import dev.zontreck.libzontreck.profiles.Profile; -import dev.zontreck.libzontreck.profiles.UserProfileNotYetExistsException; -import dev.zontreck.libzontreck.util.ChatHelpers; -import dev.zontreck.libzontreck.util.ServerUtilities; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.Commands; -import net.minecraft.server.level.ServerPlayer; -import net.minecraft.world.item.Items; - -/** - * This is added because of a petty complaint about the effects being annoying. I've added it so someone can opt out if they are truly just that impatient. - */ -public class TPEffectsCommand -{ - public static void register(CommandDispatcher dispatcher) - { - dispatcher.register(Commands.literal("tpeffects_disable").then(Commands.argument("disabled", BoolArgumentType.bool()).executes(x->tpeffects(x.getSource(), BoolArgumentType.getBool(x, "disabled"))))); - } - - public static int tpeffects(CommandSourceStack source, boolean disabled) - { - ServerPlayer player = source.getPlayer(); - - try { - Profile prof = Profile.get_profile_of(player.getStringUUID()); - prof.NBT.putBoolean("tpeffects", disabled); - - ChatHelpers.broadcastTo(player.getUUID(), ChatHelpers.macro(Messages.TP_EFFECTS_TOGGLED, disabled ? "disabled" : "enabled"), player.server); - return 0; - } catch (UserProfileNotYetExistsException e) { - throw new RuntimeException(e); - } - - } -} diff --git a/src/main/java/dev/zontreck/essentials/commands/warps/DelWarpCommand.java b/src/main/java/dev/zontreck/essentials/commands/warps/DelWarpCommand.java deleted file mode 100644 index f5a6b56..0000000 --- a/src/main/java/dev/zontreck/essentials/commands/warps/DelWarpCommand.java +++ /dev/null @@ -1,66 +0,0 @@ -package dev.zontreck.essentials.commands.warps; - -import com.mojang.brigadier.CommandDispatcher; -import com.mojang.brigadier.arguments.StringArgumentType; - -import dev.zontreck.essentials.Messages; -import dev.zontreck.essentials.events.CommandExecutionEvent; -import dev.zontreck.essentials.warps.NoSuchWarpException; -import dev.zontreck.essentials.warps.Warp; -import dev.zontreck.essentials.warps.WarpsProvider; -import dev.zontreck.libzontreck.chat.ChatColor; -import dev.zontreck.libzontreck.util.ChatHelpers; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.Commands; -import net.minecraft.server.level.ServerPlayer; -import net.minecraftforge.common.MinecraftForge; - -public class DelWarpCommand { - - public static void register(CommandDispatcher dispatcher) - { - dispatcher.register(Commands.literal("delwarp").then(Commands.argument("nickname", StringArgumentType.string()).executes(c -> setWarp(c.getSource(), StringArgumentType.getString(c, "nickname"))))); - - //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { - //String arg = StringArgumentType.getString(command, "nickname"); - //return setHome(command.getSource(), arg); - //})); - } - - private static int setWarp(CommandSourceStack source, String string) { - - var exec = new CommandExecutionEvent(source.getPlayer(), "delwarp"); - if(MinecraftForge.EVENT_BUS.post(exec)) - { - return 0; - } - - - ServerPlayer p = (ServerPlayer)source.getEntity(); - - Warp warp; - try { - warp = WarpsProvider.WARPS_INSTANCE.getNamedWarp(string); - } catch (NoSuchWarpException e) { - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.WARP_NOT_EXIST), p.server); - return 0; - } - if(p.getUUID().equals(warp.owner) || p.hasPermissions(4)) - { - try { - WarpsProvider.WARPS_INSTANCE.delete(WarpsProvider.WARPS_INSTANCE.getNamedWarp(string)); - } catch (NoSuchWarpException e) { - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.WARP_NOT_EXIST), p.server); - return 0; - } - - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.WARP_DELETE_SUCCESS), p.server); - - }else { - - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.WARP_DELETE_FAIL), p.server); - } - - return 0; - } -} diff --git a/src/main/java/dev/zontreck/essentials/commands/warps/RTPWarpCommand.java b/src/main/java/dev/zontreck/essentials/commands/warps/RTPWarpCommand.java deleted file mode 100644 index 710c5e7..0000000 --- a/src/main/java/dev/zontreck/essentials/commands/warps/RTPWarpCommand.java +++ /dev/null @@ -1,69 +0,0 @@ -package dev.zontreck.essentials.commands.warps; - -import java.sql.Connection; -import java.sql.PreparedStatement; -import java.sql.SQLException; - -import com.mojang.brigadier.CommandDispatcher; -import com.mojang.brigadier.arguments.StringArgumentType; - -import dev.zontreck.essentials.Messages; -import dev.zontreck.essentials.commands.teleport.TeleportDestination; -import dev.zontreck.essentials.events.CommandExecutionEvent; -import dev.zontreck.essentials.events.WarpCreatedEvent; -import dev.zontreck.essentials.warps.Warp; -import dev.zontreck.essentials.warps.WarpsProvider; -import dev.zontreck.libzontreck.chat.ChatColor; -import dev.zontreck.libzontreck.util.ChatHelpers; -import dev.zontreck.libzontreck.vectors.Vector2f; -import dev.zontreck.libzontreck.vectors.Vector2i; -import dev.zontreck.libzontreck.vectors.Vector3d; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.Commands; -import net.minecraft.network.chat.Component; -import net.minecraft.server.level.ServerPlayer; -import net.minecraft.world.item.ItemStack; -import net.minecraft.world.phys.Vec2; -import net.minecraft.world.phys.Vec3; -import net.minecraftforge.common.MinecraftForge; - -public class RTPWarpCommand { - - public static void register(CommandDispatcher dispatcher) - { - dispatcher.register(Commands.literal("rtpwarp").then(Commands.argument("nickname", StringArgumentType.string()).executes(c -> setWarp(c.getSource(), StringArgumentType.getString(c, "nickname"))))); - - //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { - //String arg = StringArgumentType.getString(command, "nickname"); - //return setHome(command.getSource(), arg); - //})); - } - - private static int setWarp(CommandSourceStack source, String string) { - - var exec = new CommandExecutionEvent(source.getPlayer(), "setwarp"); - if(MinecraftForge.EVENT_BUS.post(exec)) - { - return 0; - } - ServerPlayer p = (ServerPlayer)source.getEntity(); - - Vec3 position = p.position(); - Vec2 rot = p.getRotationVector(); - - TeleportDestination dest = new TeleportDestination(new Vector3d(position), new Vector2f(rot), p.getLevel()); - Warp warp = new Warp(p.getUUID(), string, true, true, dest, new ItemStack(p.getFeetBlockState().getBlock().asItem())); - WarpCreatedEvent event = new WarpCreatedEvent(warp); - if(MinecraftForge.EVENT_BUS.post(event)) - { - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.WARP_CREATE_ERROR), p.server); - return 0; - } - WarpsProvider.WARPS_INSTANCE.add(warp); - - - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.WARP_RTP_CREATED), p.server); - - return 0; - } -} diff --git a/src/main/java/dev/zontreck/essentials/commands/warps/SetWarpCommand.java b/src/main/java/dev/zontreck/essentials/commands/warps/SetWarpCommand.java deleted file mode 100644 index 05f200f..0000000 --- a/src/main/java/dev/zontreck/essentials/commands/warps/SetWarpCommand.java +++ /dev/null @@ -1,71 +0,0 @@ -package dev.zontreck.essentials.commands.warps; - -import java.sql.Connection; -import java.sql.PreparedStatement; -import java.sql.SQLException; - -import com.mojang.brigadier.CommandDispatcher; -import com.mojang.brigadier.arguments.StringArgumentType; - -import dev.zontreck.essentials.Messages; -import dev.zontreck.essentials.commands.teleport.TeleportDestination; -import dev.zontreck.essentials.events.CommandExecutionEvent; -import dev.zontreck.essentials.events.WarpCreatedEvent; -import dev.zontreck.essentials.warps.Warp; -import dev.zontreck.essentials.warps.WarpsProvider; -import dev.zontreck.libzontreck.chat.ChatColor; -import dev.zontreck.libzontreck.util.ChatHelpers; -import dev.zontreck.libzontreck.vectors.Vector2f; -import dev.zontreck.libzontreck.vectors.Vector2i; -import dev.zontreck.libzontreck.vectors.Vector3d; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.Commands; -import net.minecraft.network.chat.Component; -import net.minecraft.server.level.ServerPlayer; -import net.minecraft.world.item.ItemStack; -import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.phys.Vec2; -import net.minecraft.world.phys.Vec3; -import net.minecraftforge.common.MinecraftForge; - -public class SetWarpCommand { - - public static void register(CommandDispatcher dispatcher) - { - dispatcher.register(Commands.literal("setwarp").then(Commands.argument("nickname", StringArgumentType.string()).executes(c -> setWarp(c.getSource(), StringArgumentType.getString(c, "nickname"))))); - - //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { - //String arg = StringArgumentType.getString(command, "nickname"); - //return setHome(command.getSource(), arg); - //})); - } - - private static int setWarp(CommandSourceStack source, String string) { - - var exec = new CommandExecutionEvent(source.getPlayer(), "setwarp"); - if(MinecraftForge.EVENT_BUS.post(exec)) - { - return 0; - } - ServerPlayer p = (ServerPlayer)source.getEntity(); - - - Vec3 position = p.position(); - Vec2 rot = p.getRotationVector(); - - TeleportDestination dest = new TeleportDestination(new Vector3d(position), new Vector2f(rot), p.getLevel()); - BlockState bs = p.getLevel().getBlockState(dest.Position.moveDown().asBlockPos()); - - Warp w = new Warp(p.getUUID(), string, false, true, dest, new ItemStack(bs.getBlock().asItem())); - WarpCreatedEvent event = new WarpCreatedEvent(w); - if(MinecraftForge.EVENT_BUS.post(event)){ - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.WARP_CREATE_ERROR, event.denyReason), p.server); - return 0; - } - WarpsProvider.WARPS_INSTANCE.add(w); - - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.WARP_CREATED), p.server); - - return 0; - } -} diff --git a/src/main/java/dev/zontreck/essentials/commands/warps/WarpCommand.java b/src/main/java/dev/zontreck/essentials/commands/warps/WarpCommand.java deleted file mode 100644 index 0de8131..0000000 --- a/src/main/java/dev/zontreck/essentials/commands/warps/WarpCommand.java +++ /dev/null @@ -1,110 +0,0 @@ -package dev.zontreck.essentials.commands.warps; - -import com.mojang.brigadier.CommandDispatcher; -import com.mojang.brigadier.arguments.StringArgumentType; -import com.mojang.brigadier.exceptions.CommandSyntaxException; - -import dev.zontreck.essentials.Messages; -import dev.zontreck.essentials.commands.teleport.TeleportActioner; -import dev.zontreck.essentials.commands.teleport.TeleportContainer; -import dev.zontreck.essentials.commands.teleport.TeleportDestination; -import dev.zontreck.essentials.events.CommandExecutionEvent; -import dev.zontreck.essentials.rtp.RandomPositionFactory; -import dev.zontreck.essentials.warps.NoSuchWarpException; -import dev.zontreck.essentials.warps.Warp; -import dev.zontreck.essentials.warps.WarpsProvider; -import dev.zontreck.libzontreck.chat.Clickable; -import dev.zontreck.libzontreck.util.ChatHelpers; -import dev.zontreck.libzontreck.vectors.Vector3d; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.Commands; -import net.minecraft.server.level.ServerLevel; -import net.minecraft.server.level.ServerPlayer; -import net.minecraft.world.phys.Vec2; -import net.minecraft.world.phys.Vec3; -import net.minecraftforge.common.MinecraftForge; - -public class WarpCommand { - - public static void register(CommandDispatcher dispatcher) - { - dispatcher.register(Commands.literal("warp").executes(c-> nowarp(c.getSource())).then(Commands.argument("name", StringArgumentType.string()).executes(c->warp(c.getSource(), StringArgumentType.getString(c, "name"))))); - - //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { - //String arg = StringArgumentType.getString(command, "nickname"); - //return setHome(command.getSource(), arg); - //})); - } - - private static int warp(CommandSourceStack source, String string) { - - final ServerPlayer p; - try{ - p=source.getPlayerOrException(); - Warp warp = WarpsProvider.WARPS_INSTANCE.getNamedWarp(string); - - TeleportDestination dest = warp.destination; - - ServerLevel dimL= dest.getActualDimension(); - - - final int type = warp.RTP ? 1 : 0; - final ServerLevel f_dim = dimL; - - if(type == 1) - { - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.WARP_ATTEMPTING), p.server); - }else{ - - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.WARPING), p.server); - } - - Thread tx = new Thread(new Runnable(){ - public void run(){ - - if(type==1){ - try { - var exec = new CommandExecutionEvent(source.getPlayer(), "rtp"); - if(MinecraftForge.EVENT_BUS.post(exec)) - { - return; - } - dest.Position = Vector3d.ZERO; - RandomPositionFactory.beginRTP(p, f_dim); - return; - } catch (Exception e) { - e.printStackTrace(); - return; - } - } - - var exec = new CommandExecutionEvent(source.getPlayer(), "warp"); - if(MinecraftForge.EVENT_BUS.post(exec)) - { - return; - } - - TeleportActioner.ApplyTeleportEffect(p); - TeleportContainer tc = new TeleportContainer(p, dest.Position.asMinecraftVector(), dest.Rotation.asMinecraftVector(), f_dim); - TeleportActioner.PerformTeleport(tc, false); - } - }); - tx.start(); - }catch(NoSuchWarpException e) - { - ChatHelpers.broadcastTo(source.getEntity().getUUID(), ChatHelpers.macro(Messages.WARP_NOT_EXIST), source.getServer()); - } catch (CommandSyntaxException e) { - e.printStackTrace(); - } - return 0; - } - - private static int nowarp(CommandSourceStack source) { - ServerPlayer p = (ServerPlayer)source.getEntity(); - - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.applyClickEvent(ChatHelpers.macro(Messages.WARP_NAME_REQUIRED), Clickable.command("/warps")), p.server); - - return 0; - } - -} diff --git a/src/main/java/dev/zontreck/essentials/commands/warps/WarpsCommand.java b/src/main/java/dev/zontreck/essentials/commands/warps/WarpsCommand.java deleted file mode 100644 index 17695d8..0000000 --- a/src/main/java/dev/zontreck/essentials/commands/warps/WarpsCommand.java +++ /dev/null @@ -1,165 +0,0 @@ -package dev.zontreck.essentials.commands.warps; - -import java.sql.Connection; -import java.sql.PreparedStatement; -import java.sql.ResultSet; -import java.util.Iterator; -import java.util.List; -import java.util.Map; -import java.util.Map.Entry; - -import com.mojang.brigadier.CommandDispatcher; - -import dev.zontreck.essentials.Messages; -import dev.zontreck.essentials.commands.teleport.TeleportActioner; -import dev.zontreck.essentials.commands.teleport.TeleportContainer; -import dev.zontreck.essentials.commands.teleport.TeleportDestination; -import dev.zontreck.essentials.rtp.RandomPositionFactory; -import dev.zontreck.essentials.warps.Warp; -import dev.zontreck.essentials.warps.WarpsProvider; -import dev.zontreck.libzontreck.chat.ChatColor; -import dev.zontreck.libzontreck.chat.Clickable; -import dev.zontreck.libzontreck.chat.HoverTip; -import dev.zontreck.libzontreck.chestgui.ChestGUI; -import dev.zontreck.libzontreck.chestgui.ChestGUIButton; -import dev.zontreck.libzontreck.chestgui.ChestGUIIdentifier; -import dev.zontreck.libzontreck.lore.LoreEntry; -import dev.zontreck.libzontreck.profiles.Profile; -import dev.zontreck.libzontreck.profiles.UserProfileNotYetExistsException; -import dev.zontreck.libzontreck.util.ChatHelpers; -import dev.zontreck.libzontreck.util.heads.HeadCache; -import dev.zontreck.libzontreck.util.heads.HeadUtilities; -import dev.zontreck.libzontreck.vectors.Vector2i; -import dev.zontreck.libzontreck.vectors.Vector3d; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.Commands; -import net.minecraft.network.chat.*; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.server.commands.ExecuteCommand; -import net.minecraft.server.level.ServerPlayer; -import org.spongepowered.asm.mixin.Mutable; - -public class WarpsCommand { - private static final ChestGUIIdentifier WARPS_GUI_ID = new ChestGUIIdentifier("ess_warps"); - public static void register(CommandDispatcher dispatcher) - { - dispatcher.register(Commands.literal("warps").executes(c-> warps(c.getSource()))); - - //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { - //String arg = StringArgumentType.getString(command, "nickname"); - //return setHome(command.getSource(), arg); - //})); - } - - private static int warps(CommandSourceStack source) { - - - ServerPlayer p = (ServerPlayer)source.getEntity(); - - Map warps = WarpsProvider.WARPS_INSTANCE.get(); - - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.COUNT, String.valueOf(warps.size()), "warp"), source.getServer()); - - ChestGUI gui = ChestGUI.builder().withTitle("Warps").withPlayer(p.getUUID()).withGUIId(WARPS_GUI_ID); - - final ChestGUI chestGui = gui; - - int iconX=0; - int iconY=0; - - Iterator> it = warps.entrySet().iterator(); - while(it.hasNext()) - { - // TODO: Implement public and private. Private requires an ACL be implemented. New GUI(?) - Warp warp = it.next().getValue(); - // Pull the owner profile - Profile prof=null; - try { - prof = Profile.get_profile_of(warp.owner.toString()); - } catch (UserProfileNotYetExistsException e) { - e.printStackTrace(); - return 1; - } - String warpName = warp.WarpName; - int warpType; - if(warp.RTP) warpType=1; - else { - warpType = 0; - } - - String appendType = (warpType == 0) ? Messages.WARP_STANDARD : Messages.WARP_RTP; - - - HoverEvent hover = HoverTip.get(ChatHelpers.macroize(appendType, warp.destination.Dimension)); - ClickEvent click = Clickable.command("/warp "+warpName); - - MutableComponent warpMsg = ChatHelpers.macro(ChatColor.GREEN + warpName + ChatColor.resetChat()); - - warpMsg = ChatHelpers.applyHoverEvent(warpMsg, hover); - // Now, display the warp name, along with the warp's owner information - HoverEvent h2 = HoverTip.get( - ChatHelpers.macroize(Messages.WARP_HOVER_FORMAT, - ChatHelpers.macroize(Messages.WARP_OWNER, prof.name_color, prof.nickname), - ChatHelpers.macroize(Messages.WARP_ACCESS_FORMAT, - (warp.isPublic ? ChatHelpers.macroize(Messages.PUBLIC) : ChatHelpers.macroize(Messages.PRIVATE)) - ) - ) - - ); - Component ownerInfo = ChatHelpers.applyHoverEvent(ChatHelpers.macro(Messages.HOVER_WARP_INFO), h2); - - - // Combine the two - warpMsg = warpMsg.copy().append(ownerInfo); - warpMsg = ChatHelpers.applyClickEvent(warpMsg, click); - - - ChestGUIButton button = new ChestGUIButton(HeadUtilities.get(prof.username, warpName), (stack, container, lore)->{ - TeleportDestination dest = warp.destination; - if(warpType == 1) - { - dest.Position = Vector3d.ZERO; - RandomPositionFactory.beginRTP(p, warp.destination.getActualDimension()); - chestGui.close(); - return; - } - try { - TeleportActioner.ApplyTeleportEffect(p); - TeleportContainer tc = new TeleportContainer(p, dest.Position.asMinecraftVector(), dest.Rotation.asMinecraftVector(), dest.getActualDimension()); - TeleportActioner.PerformTeleport(tc, false); - - }catch(Exception e){ - - } - - chestGui.close(); - }, new Vector2i(iconX, iconY)) - .withInfo(new LoreEntry.Builder().text(ChatColor.doColors("!Dark_Purple!Owner: " + prof.name_color + prof.nickname)) - - .build() - ) - .withInfo(new LoreEntry.Builder().text(ChatHelpers.macro(appendType, warp.destination.Dimension).getString()).build()); - - ChatHelpers.broadcastTo(p, warpMsg, p.server); - if(warps.size() > (2*9)) - { - // Say to person - ChatHelpers.broadcastTo(p, warpMsg, p.server); - }else - chestGui.withButton(button); - - iconY++; - if(iconY>=9){ - iconY=0; - iconX++; - } - - } - - if(warps.size() < 27) - chestGui.open(); - - return 0; - } - -} diff --git a/src/main/java/dev/zontreck/essentials/configs/client/sections/Messages.java b/src/main/java/dev/zontreck/essentials/configs/client/sections/Messages.java deleted file mode 100644 index f6f466e..0000000 --- a/src/main/java/dev/zontreck/essentials/configs/client/sections/Messages.java +++ /dev/null @@ -1,6 +0,0 @@ -package dev.zontreck.essentials.configs.client.sections; - -public class Messages -{ - -} diff --git a/src/main/java/dev/zontreck/essentials/configs/server/AEServerConfig.java b/src/main/java/dev/zontreck/essentials/configs/server/AEServerConfig.java deleted file mode 100644 index cda39ce..0000000 --- a/src/main/java/dev/zontreck/essentials/configs/server/AEServerConfig.java +++ /dev/null @@ -1,155 +0,0 @@ -package dev.zontreck.essentials.configs.server; - -import dev.zontreck.ariaslib.util.Lists; -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.configs.server.sections.*; -import dev.zontreck.essentials.util.EssentialsDatastore; -import dev.zontreck.essentials.util.Maps; -import dev.zontreck.libzontreck.chat.ChatColor; -import dev.zontreck.libzontreck.util.SNbtIo; -import net.minecraft.nbt.*; - -import java.nio.file.Path; -import java.util.HashMap; -import java.util.Map; - -public class AEServerConfig -{ - private static AEServerConfig inst; - public Costs costs; - public Limitations limits; - public Map cooldowns; - public Back back; - public Teleportation teleport; - public Messages messages; - public Bottles bottles; - public CreeperHeal creeperHeal; - - - - public static AEServerConfig deserialize(CompoundTag tag) - { - AEServerConfig config = new AEServerConfig(); - try { - AriasEssentials.LOGGER.info("Loading Aria's Essentials configuration for - Server"); - config.costs = Costs.deserialize(tag.getCompound(Costs.TAG_NAME)); - config.limits = Limitations.deserialize(tag.getCompound(Limitations.TAG_NAME)); - config.cooldowns = new HashMap<>(); - ListTag cools = tag.getList(Cooldown.TAG_NAME, ListTag.TAG_COMPOUND); - for(Tag cooldown : cools) - { - Cooldown cd = Cooldown.deserialize((CompoundTag) cooldown); - config.cooldowns.put(cd.Command, cd); - } - config.back = Back.deserialize(tag.getCompound(Back.TAG_NAME)); - config.teleport = Teleportation.deserialize(tag.getCompound(Teleportation.TAG_NAME)); - config.messages = Messages.deserialize(tag.getCompound(Messages.TAG_NAME)); - if(tag.contains(Bottles.TAG_NAME)) - { - config.bottles = Bottles.deserialize(tag.getCompound(Bottles.TAG_NAME)); - } else config.bottles = new Bottles(); - - if(tag.contains(CreeperHeal.TAG_NAME)) - { - config.creeperHeal = CreeperHeal.deserialize(tag.getCompound(CreeperHeal.TAG_NAME)); - } else config.creeperHeal = new CreeperHeal(); - - AriasEssentials.LOGGER.info("Aria's Essentials Server Configuration Loaded"); - } catch(Exception e){ - e.printStackTrace(); - } - - - return config; - } - - public static void loadFromFile() - { - Path serverConfig = EssentialsDatastore.of("server.snbt",false); - if(serverConfig.toFile().exists()) - { - inst = deserialize(SNbtIo.loadSnbt(serverConfig)); - - save(); // incase of updates - }else { - initNewConfig(); - } - - - } - - private static void initNewConfig() - { - inst = new AEServerConfig(); - inst.reset(); // also saves - } - - private void reset() - { - costs = new Costs(); - limits = new Limitations(); - cooldowns = Maps.builder("", new Cooldown()) - .with("rtp", new Cooldown("rtp", 30L)) - .with("warp", new Cooldown("warp", 10L)) - .with("home", new Cooldown("home", 5L)) - .with("tpaccept", new Cooldown("tpaccept", 5L)) - .build(); - back = new Back(); - teleport = new Teleportation(); - teleport.Effects = Lists.of( - "minecraft:darkness", - "minecraft:levitation", - "minecraft:slow_falling", - "minecraft:hunger" - ); - teleport.Blacklist = Lists.of( - "dimdoors:dungeon_pockets", - "dimdoors:limbo", - "dimdoors:personal_pockets", - "dimdoors:public_pockets", - "witherstormmod:bowels" - ); - messages = new Messages(); - bottles = new Bottles(); - creeperHeal = new CreeperHeal(); - - - - save(); - } - - public static void save() - { - Path serverConfig = EssentialsDatastore.of("server.snbt", false); - - CompoundTag tag = inst.serialize(); - SNbtIo.writeSnbt(serverConfig, tag); - } - - public CompoundTag serialize() - { - CompoundTag tag = new CompoundTag(); - tag.put(Costs.TAG_NAME, costs.serialize()); - tag.put(Limitations.TAG_NAME, limits.serialize()); - ListTag cools = new ListTag(); - for(Map.Entry entries : cooldowns.entrySet()) - { - cools.add(entries.getValue().serialize()); - } - tag.put(Cooldown.TAG_NAME, cools); - tag.put(Back.TAG_NAME, back.serialize()); - tag.put(Teleportation.TAG_NAME, teleport.serialize()); - tag.put(Messages.TAG_NAME, messages.serialize()); - tag.put(Bottles.TAG_NAME, bottles.serialize()); - tag.put(CreeperHeal.TAG_NAME, creeperHeal.serialize()); - - - - return tag; - } - - public static AEServerConfig getInstance() - { - return inst; - } -} diff --git a/src/main/java/dev/zontreck/essentials/configs/server/sections/Back.java b/src/main/java/dev/zontreck/essentials/configs/server/sections/Back.java deleted file mode 100644 index 4a444fa..0000000 --- a/src/main/java/dev/zontreck/essentials/configs/server/sections/Back.java +++ /dev/null @@ -1,32 +0,0 @@ -package dev.zontreck.essentials.configs.server.sections; - -import net.minecraft.nbt.CompoundTag; - -public class Back -{ - public static final String TAG_NAME = "back"; - public static final String TAG_ENABLE = "enabled"; - public static final String TAG_ALLOW_BACK_FOR_TP = "back_for_tp"; - - - public boolean Enabled = true; - public boolean EnabledForTp = false; - - public static Back deserialize(CompoundTag tag) - { - Back back = new Back(); - back.Enabled = tag.getBoolean(TAG_ENABLE); - back.EnabledForTp = tag.getBoolean(TAG_ALLOW_BACK_FOR_TP); - - return back; - } - - public CompoundTag serialize() - { - CompoundTag tag = new CompoundTag(); - tag.putBoolean(TAG_ENABLE, Enabled); - tag.putBoolean(TAG_ALLOW_BACK_FOR_TP, EnabledForTp); - - return tag; - } -} diff --git a/src/main/java/dev/zontreck/essentials/configs/server/sections/Cooldown.java b/src/main/java/dev/zontreck/essentials/configs/server/sections/Cooldown.java deleted file mode 100644 index 88ddb40..0000000 --- a/src/main/java/dev/zontreck/essentials/configs/server/sections/Cooldown.java +++ /dev/null @@ -1,42 +0,0 @@ -package dev.zontreck.essentials.configs.server.sections; - -import dev.zontreck.essentials.events.CommandExecutionEvent; -import net.minecraft.nbt.CompoundTag; - -public class Cooldown -{ - public static final String TAG_NAME = "cooldowns"; - public static final String TAG_COMMAND = "command"; - public static final String TAG_SECONDS = "seconds"; - - public Cooldown(){ - - } - - public Cooldown(String name, long sec) - { - Command = name; - Seconds = sec; - } - - public String Command; - public long Seconds; - - public static Cooldown deserialize(CompoundTag tag) - { - Cooldown cd = new Cooldown(); - cd.Command = tag.getString(TAG_COMMAND); - cd.Seconds = tag.getLong(TAG_SECONDS); - - return cd; - } - - public CompoundTag serialize() - { - CompoundTag tag = new CompoundTag(); - tag.putString(TAG_COMMAND, Command); - tag.putLong(TAG_SECONDS, Seconds); - - return tag; - } -} diff --git a/src/main/java/dev/zontreck/essentials/configs/server/sections/Costs.java b/src/main/java/dev/zontreck/essentials/configs/server/sections/Costs.java deleted file mode 100644 index 140b200..0000000 --- a/src/main/java/dev/zontreck/essentials/configs/server/sections/Costs.java +++ /dev/null @@ -1,42 +0,0 @@ -package dev.zontreck.essentials.configs.server.sections; - -import net.minecraft.nbt.CompoundTag; - -public class Costs -{ - public static final String TAG_NAME = "costs"; - public static final String TAG_COST_TP_HOME = "tp_home"; - public static final String TAG_COST_WARP = "warp"; - public static final String TAG_COST_MAKE_WARP = "setwarp"; - public static final String TAG_COST_MAKE_HOME = "sethome"; - - - public String CostToTPHome = "1i"; // 1 iron coin - public String CostToWarp = "5i"; // 5 iron coins - public String CostToMakeWarp = "5e"; // 5 emerald coin - public String CostToSetHome = "1d"; // 1 diamond coin - - - public static Costs deserialize(CompoundTag tag) - { - Costs costs = new Costs(); - costs.CostToTPHome = tag.getString(TAG_COST_TP_HOME); - costs.CostToWarp = tag.getString(TAG_COST_WARP); - costs.CostToMakeWarp = tag.getString(TAG_COST_MAKE_WARP); - costs.CostToSetHome = tag.getString(TAG_COST_MAKE_HOME); - - - return costs; - } - - public CompoundTag serialize() - { - CompoundTag tag = new CompoundTag(); - tag.putString(TAG_COST_TP_HOME, CostToTPHome); - tag.putString(TAG_COST_WARP, CostToWarp); - tag.putString(TAG_COST_MAKE_WARP, CostToMakeWarp); - tag.putString(TAG_COST_MAKE_HOME, CostToSetHome); - - return tag; - } -} diff --git a/src/main/java/dev/zontreck/essentials/configs/server/sections/CreeperHeal.java b/src/main/java/dev/zontreck/essentials/configs/server/sections/CreeperHeal.java deleted file mode 100644 index 0793f63..0000000 --- a/src/main/java/dev/zontreck/essentials/configs/server/sections/CreeperHeal.java +++ /dev/null @@ -1,54 +0,0 @@ -package dev.zontreck.essentials.configs.server.sections; - -import dev.zontreck.ariaslib.util.Lists; -import dev.zontreck.essentials.configs.server.AEServerConfig; -import dev.zontreck.libzontreck.util.TagUtils; -import net.minecraft.nbt.CompoundTag; -import net.minecraft.nbt.ListTag; -import net.minecraft.nbt.StringTag; -import net.minecraft.nbt.Tag; - -import java.util.ArrayList; -import java.util.List; - -public class CreeperHeal -{ - public static final String TAG_NAME = "creeper_heal"; - public static final String TAG_BLACKLIST = "blacklisted_dims"; - public static final String TAG_DURATION = "duration"; - - - public List blacklistedDimensions = Lists.of("minecraft:the_nether", "minecraft:the_end"); - - public int duration = 40; // Once every 2 seconds - - public CompoundTag serialize() - { - CompoundTag tag = new CompoundTag(); - ListTag blacklist = new ListTag(); - for(String dimension : blacklistedDimensions) - { - blacklist.add(StringTag.valueOf(dimension)); - } - tag.put(TAG_BLACKLIST, blacklist); - tag.putInt(TAG_DURATION, duration); - - return tag; - } - - public static CreeperHeal deserialize(CompoundTag tag) - { - CreeperHeal heal = new CreeperHeal(); - heal.duration = TagUtils.intOr(tag, TAG_DURATION, 40); - - ListTag lst = tag.getList(TAG_BLACKLIST, StringTag.TAG_STRING); - heal.blacklistedDimensions.clear(); - for(Tag t : lst) - { - heal.blacklistedDimensions.add(t.getAsString()); - } - - return heal; - } - -} diff --git a/src/main/java/dev/zontreck/essentials/configs/server/sections/Limitations.java b/src/main/java/dev/zontreck/essentials/configs/server/sections/Limitations.java deleted file mode 100644 index c3a28e8..0000000 --- a/src/main/java/dev/zontreck/essentials/configs/server/sections/Limitations.java +++ /dev/null @@ -1,34 +0,0 @@ -package dev.zontreck.essentials.configs.server.sections; - -import net.minecraft.nbt.CompoundTag; - -public class Limitations { - public static final String TAG_NAME = "limits"; - - public static final String TAG_MAX_HOMES = "max_homes"; - public static final String TAG_MAX_WARPS = "max_warps"; - - - public int MaxHomes = 27; - public int MaxWarps = 27; - - - public static Limitations deserialize(CompoundTag tag) - { - Limitations limits = new Limitations(); - limits.MaxHomes = tag.getInt(TAG_MAX_HOMES); - limits.MaxWarps = tag.getInt(TAG_MAX_WARPS); - - return limits; - } - - public CompoundTag serialize() - { - CompoundTag tag = new CompoundTag(); - tag.putInt(TAG_MAX_HOMES, MaxHomes); - tag.putInt(TAG_MAX_WARPS, MaxWarps); - - return tag; - } - -} diff --git a/src/main/java/dev/zontreck/essentials/data/ModBlockStatesProvider.java b/src/main/java/dev/zontreck/essentials/data/ModBlockStatesProvider.java deleted file mode 100644 index c02c9fd..0000000 --- a/src/main/java/dev/zontreck/essentials/data/ModBlockStatesProvider.java +++ /dev/null @@ -1,476 +0,0 @@ -package dev.zontreck.essentials.data; - -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.blocks.ModBlocks; -import net.minecraft.core.Direction; -import net.minecraft.data.DataGenerator; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.world.level.block.*; -import net.minecraft.world.level.block.state.properties.*; -import net.minecraftforge.client.model.generators.BlockStateProvider; -import net.minecraftforge.client.model.generators.ConfiguredModel; -import net.minecraftforge.client.model.generators.ModelFile; -import net.minecraftforge.client.model.generators.VariantBlockStateBuilder; -import net.minecraftforge.common.data.ExistingFileHelper; -import net.minecraftforge.registries.ForgeRegistries; -import net.minecraftforge.registries.RegistryObject; - -import java.util.concurrent.atomic.AtomicReference; - -public class ModBlockStatesProvider extends BlockStateProvider { - public ModBlockStatesProvider(DataGenerator output, ExistingFileHelper existingFileHelper) { - super(output, AriasEssentials.MODID, existingFileHelper); - } - - @Override - protected void registerStatesAndModels() { - - - ResourceLocation[] clinkerBlock = new ResourceLocation[]{ - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_texture0"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_texture1"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_texture2"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_texture3"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_texture4"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_texture5"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_texture6"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_texture7") - }; - ResourceLocation[] clinkerStainedBlock = new ResourceLocation[]{ - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_stained_texture0"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_stained_texture1"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_stained_texture2"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_stained_texture3"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_stained_texture4"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_stained_texture5"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_stained_texture6"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_stained_texture7") - }; - - ResourceLocation[] slagBricks = new ResourceLocation[]{ - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/slag_brick/slag_brick_texture0"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/slag_brick/slag_brick_texture1"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/slag_brick/slag_brick_texture2"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/slag_brick/slag_brick_texture3"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/slag_brick/slag_brick_texture4"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/slag_brick/slag_brick_texture5"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/slag_brick/slag_brick_texture6"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/slag_brick/slag_brick_texture7") - }; - - ResourceLocation[] rebarConcrete = new ResourceLocation[] { - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_texture0"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_texture1"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_texture2"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_texture3"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_texture4"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_texture5"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_texture6"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_texture7") - }; - - ResourceLocation[] rebarConcreteTile = new ResourceLocation[] { - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_tile_texture0"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_tile_texture1"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_tile_texture2"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_tile_texture3"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_tile_texture4"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_tile_texture5"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_tile_texture6"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_tile_texture7") - }; - - ResourceLocation[] panzerglass = new ResourceLocation[]{ - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/glass/panzerglass_block_texture0"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/glass/panzerglass_block_texture1"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/glass/panzerglass_block_texture2"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/glass/panzerglass_block_texture3") - }; - - ResourceLocation[] oldIndustrialWood = new ResourceLocation[]{ - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/material/industrial_planks_texture0"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/material/industrial_planks_texture1"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/material/industrial_planks_texture2"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/material/industrial_planks_texture3"), - }; - - variantCubeBlock(ModBlocks.CLINKER_BRICK_BLOCK, clinkerBlock); - customSlabBlock(ModBlocks.CLINKER_BRICK_SLAB, clinkerBlock); - customStairBlock(ModBlocks.CLINKER_BRICK_STAIRS, clinkerBlock); - variantCubeBlock(ModBlocks.CLINKER_BRICK_STAINED_BLOCK, clinkerStainedBlock); - customSlabBlock(ModBlocks.CLINKER_BRICK_STAINED_SLAB, clinkerStainedBlock); - customStairBlock(ModBlocks.CLINKER_BRICK_STAINED_STAIRS, clinkerStainedBlock); - - wallBlock(ModBlocks.CLINKER_BRICK_WALL, new ResourceLocation(AriasEssentials.MODID, "block/engineersdecor/clinker_brick/clinker_brick_wall0")); - - variantCubeBlock(ModBlocks.SLAG_BRICK_BLOCK, slagBricks); - customSlabBlock(ModBlocks.SLAG_BRICK_SLAB, slagBricks); - customStairBlock(ModBlocks.SLAG_BRICK_STAIRS, slagBricks); - wallBlock(ModBlocks.SLAG_BRICK_WALL, new ResourceLocation(AriasEssentials.MODID, "block/engineersdecor/slag_brick/slag_brick_wall0")); - - variantCubeBlock(ModBlocks.REBAR_CONCRETE_BLOCK, rebarConcrete); - customSlabBlock(ModBlocks.REBAR_CONCRETE_SLAB, rebarConcrete); - customStairBlock(ModBlocks.REBAR_CONCRETE_STAIRS, rebarConcrete); - wallBlock(ModBlocks.REBAR_CONCRETE_WALL, new ResourceLocation(AriasEssentials.MODID, "block/" + rebarConcrete[0].getPath())); - - variantCubeBlock(ModBlocks.REBAR_CONCRETE_TILE_BLOCK, rebarConcreteTile); - customSlabBlock(ModBlocks.REBAR_CONCRETE_TILE_SLAB, rebarConcreteTile); - customStairBlock(ModBlocks.REBAR_CONCRETE_TILE_STAIRS, rebarConcreteTile); - - variantTransparentCubeBlock(ModBlocks.PANZER_GLASS_BLOCK, new ResourceLocation(AriasEssentials.MODID, "engineersdecor/glass/panzerglass_block_texture_inventory"), panzerglass); - customTransparentSlabBlock(ModBlocks.PANZER_GLASS_SLAB, panzerglass); - - variantCubeBlock(ModBlocks.OLD_INDUSTRIAL_WOOD_PLANKS, oldIndustrialWood); - customSlabBlock(ModBlocks.OLD_INDUSTRIAL_WOOD_SLAB, oldIndustrialWood); - customStairBlock(ModBlocks.OLD_INDUSTRIAL_WOOD_STAIRS, oldIndustrialWood); - doorBlock(ModBlocks.OLD_INDUSTRIAL_WOOD_DOOR, new ResourceLocation(AriasEssentials.MODID, "block/engineersdecor/door/old_industrial_door_texture_bottom"), new ResourceLocation(AriasEssentials.MODID, "block/engineersdecor/door/old_industrial_door_texture_top")); - - /* - blockWithExistingModel(ModBlocks.STEEL_GRATING, "block/engineersdecor/furniture/steel_floor_grating", false); - blockWithExistingModel(ModBlocks.STEEL_GRATING_TOP, "block/engineersdecor/furniture/steel_floor_grating_top", false); - blockWithExistingModel(ModBlocks.STEEL_TABLE, "block/engineersdecor/furniture/steel_table", false); - blockWithExistingModel(ModBlocks.STEEL_CATWALK, "block/engineersdecor/furniture/steel_catwalk", false); - blockWithExistingModel(ModBlocks.STEEL_CATWALK_TOP, "block/engineersdecor/furniture/steel_catwalk_top", false); - blockWithExistingModel(ModBlocks.STEEL_RAILING, "block/engineersdecor/furniture/steel_railing", true); - blockWithExistingModel(ModBlocks.STEEL_CATWALK_STAIRS, "block/engineersdecor/furniture/steel_catwalk_stairs", true); - blockWithExistingModel(ModBlocks.STEEL_CATWALK_STAIRS_LR, "block/engineersdecor/furniture/steel_catwalk_stairs_lr", true); - blockWithExistingModel(ModBlocks.STEEL_CATWALK_STAIRS_RR, "block/engineersdecor/furniture/steel_catwalk_stairs_rr", true); - blockWithExistingModel(ModBlocks.STEEL_CATWALK_STAIRS_DR, "block/engineersdecor/furniture/steel_catwalk_stairs_dr", true); - - blockWithExistingModel(ModBlocks.STEEL_CATWALK_BLOCK, "block/engineersdecor/steel_catwalk_block", false); - - blockWithExistingModel(ModBlocks.TFLIPFLOP_BLOCK, "block/logicgates/tflipflop", true); - - - */ - } - - private void blockWithExistingModel(RegistryObject blk, String model, boolean rotatable) - { - ResourceLocation modelLoc = new ResourceLocation(AriasEssentials.MODID, model); - ModelFile mFile = models().withExistingParent(name(blk.get()), modelLoc); - - if(!rotatable) - simpleBlock(blk.get(), mFile); - else horizontalBlock(blk.get(), mFile); - - simpleBlockItem(blk.get(), mFile); - } - - private void doorBlock(RegistryObject blk, ResourceLocation textureTop, ResourceLocation textureBottom) - { - doorBlockWithRenderType((DoorBlock) blk.get(), textureBottom, textureTop, new ResourceLocation("translucent")); - - simpleBlockItem(blk.get(), models().doorBottomLeft(name(blk.get()), textureBottom, textureTop)); - } - - private void wallBlock(RegistryObject blk, ResourceLocation texture) - { - wallBlock((WallBlock) blk.get(), texture); - var wallInv = models().wallInventory(name(blk.get()) + "_inventory", texture); - - simpleBlockItem(blk.get(), wallInv); - } - - private void blockWithItem(RegistryObject blockRegistryObject) { - simpleBlock(blockRegistryObject.get(), cubeAll(blockRegistryObject.get())); - simpleBlockItem(blockRegistryObject.get(), cubeAll(blockRegistryObject.get())); - } - - private void blockWithItem(RegistryObject blockRegistryObject, ModelFile model) { - simpleBlock(blockRegistryObject.get(), model); - simpleBlockItem(blockRegistryObject.get(), model); - } - - private void stairBlock(RegistryObject blk, RegistryObject texture) { - stairsBlock((StairBlock) blk.get(), blockTexture(texture.get())); - simpleBlockItem(blk.get(), stairsModel(blk.get(), texture.get())); - } - - private void carpetBlock(RegistryObject blk, RegistryObject texture) { - simpleBlock(blk.get(), carpetModel(blk.get(), texture.get())); - simpleBlockItem(blk.get(), carpetModel(blk.get(), texture.get())); - } - - private String name(Block block) { - return this.key(block).getPath(); - } - - private ResourceLocation key(Block block) { - return ForgeRegistries.BLOCKS.getKey(block); - } - - public ModelFile stairsModel(Block block, Block texture) { - return this.models().stairs(name(block), blockTexture(texture), blockTexture(texture), blockTexture(texture)); - } - - public ModelFile carpetModel(Block block, Block texture) { - return this.models().carpet(name(block), blockTexture(texture)); - } - - public ModelFile slabModel(Block block, Block texture) { - return this.models().slab(name(block), blockTexture(texture), blockTexture(texture), blockTexture(texture)); - } - - private void slabBlock(RegistryObject blk, RegistryObject texture) { - slabBlock((SlabBlock) blk.get(), blockTexture(texture.get()), blockTexture(texture.get())); - simpleBlockItem(blk.get(), slabModel(blk.get(), texture.get())); - } - - private void customSlabBlock(RegistryObject blockId, ResourceLocation... variations) { - VariantBlockStateBuilder builder = getVariantBuilder(blockId.get()); - - - AtomicReference model0 = new AtomicReference<>(); - - builder.forAllStates((state)->{ - ConfiguredModel[] models = new ConfiguredModel[variations.length]; - - - String appendName = ""; - SlabType type = state.getValue(SlabBlock.TYPE); - - if(type == SlabType.BOTTOM) - appendName = "_bottom"; - else if(type == SlabType.TOP) - appendName = "_top"; - else if(type == SlabType.DOUBLE) - appendName = "_double"; - - for (int i = 0; i < variations.length; i++) { - ResourceLocation texture = variations[i]; - ResourceLocation rss = new ResourceLocation(texture.getNamespace(), "block/" + texture.getPath()); - ModelFile model = null; - if(type == SlabType.TOP) - model = models().slabTop(name(blockId.get()) + "_model" + i + appendName, rss, rss, rss); - else if(type == SlabType.BOTTOM) - model = models().slab(name(blockId.get()) + "_model" + i + appendName, rss, rss, rss); - else if(type == SlabType.DOUBLE) - model = models().cubeAll(name(blockId.get()) + "_model" + i + appendName, rss); - - - ConfiguredModel[] cfgModel = ConfiguredModel.builder().modelFile(model).build(); - - if(i==0 && model0.get()==null && type == SlabType.BOTTOM) model0.set(model); - - models[i] = cfgModel[0]; - //builder.partialState().addModels(cfgModel); - } - return models; - }); - - - simpleBlockItem(blockId.get(), model0.get()); - } - - private void customStairBlock(RegistryObject blockId, ResourceLocation... variations) { - VariantBlockStateBuilder builder = getVariantBuilder(blockId.get()); - ResourceLocation blockDefault = blockTexture(blockId.get()); - - - AtomicReference model0 = new AtomicReference<>(); - - builder.forAllStates((state)->{ - ConfiguredModel[] models = new ConfiguredModel[variations.length]; - Direction facing = (Direction)state.getValue(StairBlock.FACING); - Half half = (Half)state.getValue(StairBlock.HALF); - StairsShape shape = (StairsShape)state.getValue(StairBlock.SHAPE); - int yRot = (int)facing.getClockWise().toYRot(); - if (shape == StairsShape.INNER_LEFT || shape == StairsShape.OUTER_LEFT) { - yRot += 270; - } - - if (shape != StairsShape.STRAIGHT && half == Half.TOP) { - yRot += 90; - } - - yRot %= 360; - boolean uvlock = yRot != 0 || half == Half.TOP; - - String modelName = (shape == StairsShape.STRAIGHT) ? "" : (shape != StairsShape.INNER_LEFT && shape != StairsShape.INNER_RIGHT) ? "_outer":"_inner"; - boolean straight = (shape == StairsShape.STRAIGHT); - boolean inner = (shape == StairsShape.INNER_LEFT || shape == StairsShape.INNER_RIGHT); - - - for (int i = 0; i < variations.length; i++) { - ResourceLocation texture = variations[i]; - ResourceLocation rss = new ResourceLocation(texture.getNamespace(), "block/" + texture.getPath()); - ModelFile cubeModel = null; - if(straight) - cubeModel = models().stairs( - blockId.getId().getPath() + "_model"+i + modelName, // Model name - rss, rss, rss // Texture location - ); - - if(inner) - cubeModel = models().stairsInner(blockId.getId().getPath()+"_model"+i + modelName, rss, rss, rss); - else if(!inner && !straight) - cubeModel = models().stairsOuter(blockId.getId().getPath() + "_model"+i+modelName, rss, rss, rss); - - ConfiguredModel[] cfgModel = ConfiguredModel.builder().modelFile(cubeModel).rotationX(half == Half.BOTTOM ? 0 : 180).rotationY(yRot).uvLock(uvlock).build(); - - if(i==0 && model0.get()==null) model0.set(cubeModel); - - models[i] = cfgModel[0]; - //builder.partialState().addModels(cfgModel); - } - - return models; - }); - - - simpleBlockItem(blockId.get(), model0.get()); - } - private void customTransparentSlabBlock(RegistryObject blockId, ResourceLocation... variations) { - VariantBlockStateBuilder builder = getVariantBuilder(blockId.get()); - - - AtomicReference model0 = new AtomicReference<>(); - - builder.forAllStates((state)->{ - ConfiguredModel[] models = new ConfiguredModel[variations.length]; - - - String appendName = ""; - SlabType type = state.getValue(SlabBlock.TYPE); - - if(type == SlabType.BOTTOM) - appendName = "_bottom"; - else if(type == SlabType.TOP) - appendName = "_top"; - else if(type == SlabType.DOUBLE) - appendName = "_double"; - - for (int i = 0; i < variations.length; i++) { - ResourceLocation texture = variations[i]; - ResourceLocation rss = new ResourceLocation(texture.getNamespace(), "block/" + texture.getPath()); - ModelFile model = null; - if(type == SlabType.TOP) - model = models().slabTop(name(blockId.get()) + "_model" + i + appendName, rss, rss, rss).renderType(new ResourceLocation("translucent")); - else if(type == SlabType.BOTTOM) - model = models().slab(name(blockId.get()) + "_model" + i + appendName, rss, rss, rss).renderType(new ResourceLocation("translucent")); - else if(type == SlabType.DOUBLE) - model = models().cubeAll(name(blockId.get()) + "_model" + i + appendName, rss).renderType(new ResourceLocation("translucent")); - - - ConfiguredModel[] cfgModel = ConfiguredModel.builder().modelFile(model).build(); - - if(i==0 && model0.get()==null && type == SlabType.BOTTOM) model0.set(model); - - models[i] = cfgModel[0]; - //builder.partialState().addModels(cfgModel); - } - return models; - }); - - - simpleBlockItem(blockId.get(), model0.get()); - } - - private void customTransparentStairBlock(RegistryObject blockId, ResourceLocation... variations) { - VariantBlockStateBuilder builder = getVariantBuilder(blockId.get()); - ResourceLocation blockDefault = blockTexture(blockId.get()); - - - AtomicReference model0 = new AtomicReference<>(); - - builder.forAllStates((state)->{ - ConfiguredModel[] models = new ConfiguredModel[variations.length]; - Direction facing = (Direction)state.getValue(StairBlock.FACING); - Half half = (Half)state.getValue(StairBlock.HALF); - StairsShape shape = (StairsShape)state.getValue(StairBlock.SHAPE); - int yRot = (int)facing.getClockWise().toYRot(); - if (shape == StairsShape.INNER_LEFT || shape == StairsShape.OUTER_LEFT) { - yRot += 270; - } - - if (shape != StairsShape.STRAIGHT && half == Half.TOP) { - yRot += 90; - } - - yRot %= 360; - boolean uvlock = yRot != 0 || half == Half.TOP; - - String modelName = (shape == StairsShape.STRAIGHT) ? "" : (shape != StairsShape.INNER_LEFT && shape != StairsShape.INNER_RIGHT) ? "_outer":"_inner"; - boolean straight = (shape == StairsShape.STRAIGHT); - boolean inner = (shape == StairsShape.INNER_LEFT || shape == StairsShape.INNER_RIGHT); - - - for (int i = 0; i < variations.length; i++) { - ResourceLocation texture = variations[i]; - ResourceLocation rss = new ResourceLocation(texture.getNamespace(), "block/" + texture.getPath()); - ModelFile cubeModel = null; - if(straight) - cubeModel = models().stairs( - blockId.getId().getPath() + "_model"+i + modelName, // Model name - rss, rss, rss // Texture location - ).renderType(new ResourceLocation("translucent")); - - if(inner) - cubeModel = models().stairsInner(blockId.getId().getPath()+"_model"+i + modelName, rss, rss, rss).renderType(new ResourceLocation("translucent")); - else if(!inner && !straight) - cubeModel = models().stairsOuter(blockId.getId().getPath() + "_model"+i+modelName, rss, rss, rss).renderType(new ResourceLocation("translucent")); - - ConfiguredModel[] cfgModel = ConfiguredModel.builder().modelFile(cubeModel).rotationX(half == Half.BOTTOM ? 0 : 180).rotationY(yRot).uvLock(uvlock).build(); - - if(i==0 && model0.get()==null) model0.set(cubeModel); - - models[i] = cfgModel[0]; - //builder.partialState().addModels(cfgModel); - } - - return models; - }); - - - simpleBlockItem(blockId.get(), model0.get()); - } - - public void variantCubeBlock(RegistryObject blockId, ResourceLocation... variations) { - VariantBlockStateBuilder builder = getVariantBuilder(blockId.get()); - ResourceLocation blockDefault = blockTexture(blockId.get()); - - ModelFile model0 = null; - for (int i = 0; i < variations.length; i++) { - ResourceLocation texture = variations[i]; - ResourceLocation rss = new ResourceLocation(texture.getNamespace(), "block/" + texture.getPath()); - ModelFile cubeModel = models().cubeAll( - blockId.getId().getPath() + "_model"+i, // Model name - rss // Texture location - ); - var cfgModel = ConfiguredModel.builder().modelFile(cubeModel).build(); - if(i==0)model0 = cubeModel; - builder.partialState().addModels(cfgModel); - } - - - - simpleBlockItem(blockId.get(), model0); - } - - public void variantTransparentCubeBlock(RegistryObject blockId, ResourceLocation inventory, ResourceLocation... variations) { - VariantBlockStateBuilder builder = getVariantBuilder(blockId.get()); - ResourceLocation blockDefault = blockTexture(blockId.get()); - - ModelFile model0 = models().cubeAll(name(blockId.get()) + "_inventory", new ResourceLocation(inventory.getNamespace(), "block/" + inventory.getPath())).renderType(new ResourceLocation("translucent")); - - - for (int i = 0; i < variations.length; i++) { - ResourceLocation texture = variations[i]; - ResourceLocation rss = new ResourceLocation(texture.getNamespace(), "block/" + texture.getPath()); - - ModelFile cubeModel = models().cubeAll( - blockId.getId().getPath() + "_model"+i, // Model name - rss // Texture location - ).renderType(new ResourceLocation("translucent")); - var cfgModel = ConfiguredModel.builder().modelFile(cubeModel).build(); - //if(i==0)model0 = cubeModel; - builder.partialState().addModels(cfgModel); - } - - - - - simpleBlockItem(blockId.get(), model0); - } -} diff --git a/src/main/java/dev/zontreck/essentials/data/ModDatagen.java b/src/main/java/dev/zontreck/essentials/data/ModDatagen.java deleted file mode 100644 index 61648b0..0000000 --- a/src/main/java/dev/zontreck/essentials/data/ModDatagen.java +++ /dev/null @@ -1,25 +0,0 @@ -package dev.zontreck.essentials.data; - - -import dev.zontreck.essentials.AriasEssentials; -import net.minecraft.data.DataGenerator; -import net.minecraftforge.common.data.ExistingFileHelper; -import net.minecraftforge.data.event.GatherDataEvent; -import net.minecraftforge.eventbus.api.SubscribeEvent; -import net.minecraftforge.fml.common.Mod; - -@Mod.EventBusSubscriber(modid = AriasEssentials.MODID, bus = Mod.EventBusSubscriber.Bus.MOD) -public class ModDatagen -{ - - @SubscribeEvent - public static void gatherData(GatherDataEvent event) - { - DataGenerator gen = event.getGenerator(); - - ExistingFileHelper helper = event.getExistingFileHelper(); - - gen.addProvider(true, new ModBlockStatesProvider(gen, helper)); - gen.addProvider(true, new ModItemModelsProvider(gen,helper)); - } -} diff --git a/src/main/java/dev/zontreck/essentials/data/ModItemModelsProvider.java b/src/main/java/dev/zontreck/essentials/data/ModItemModelsProvider.java deleted file mode 100644 index d2599ea..0000000 --- a/src/main/java/dev/zontreck/essentials/data/ModItemModelsProvider.java +++ /dev/null @@ -1,58 +0,0 @@ -package dev.zontreck.essentials.data; - -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.items.ModItems; -import net.minecraft.data.DataGenerator; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.world.item.Item; -import net.minecraftforge.client.model.generators.ItemModelBuilder; -import net.minecraftforge.client.model.generators.ItemModelProvider; -import net.minecraftforge.client.model.generators.ModelFile; -import net.minecraftforge.common.data.ExistingFileHelper; -import net.minecraftforge.registries.ForgeRegistries; -import net.minecraftforge.registries.RegistryObject; - -import java.util.Objects; - -public class ModItemModelsProvider extends ItemModelProvider -{ - public ModItemModelsProvider(DataGenerator output, ExistingFileHelper helper) - { - super(output, AriasEssentials.MODID, helper); - } - - @Override - protected void registerModels() { - - item(ModItems.METAL_BAR); - item(ModItems.TIME_IN_A_BOTTLE); - - /* - Engineer's Decor Items - */ - - - - /* - DEPRECATED ITEMS - */ - - } - - - - private ItemModelBuilder item(RegistryObject ite) { - return this.item((ResourceLocation) Objects.requireNonNull(ForgeRegistries.ITEMS.getKey(ite.get()))); - } - - private ItemModelBuilder item(ResourceLocation item) { - return (ItemModelBuilder)((ItemModelBuilder)((ItemModelBuilder)this.getBuilder(item.toString())).parent(new ModelFile.UncheckedModelFile("item/generated"))).texture("layer0", new ResourceLocation(item.getNamespace(), "item/" + item.getPath())); - } - private ItemModelBuilder deprecated(RegistryObject ite) { - return this.deprecated((ResourceLocation) Objects.requireNonNull(ForgeRegistries.ITEMS.getKey(ite.get()))); - } - - private ItemModelBuilder deprecated(ResourceLocation item) { - return (ItemModelBuilder)((ItemModelBuilder)((ItemModelBuilder)this.getBuilder(item.toString())).parent(new ModelFile.UncheckedModelFile("item/generated"))).texture("layer0", new ResourceLocation(item.getNamespace(), "item/deprecated")); - } -} diff --git a/src/main/java/dev/zontreck/essentials/data/README.md b/src/main/java/dev/zontreck/essentials/data/README.md deleted file mode 100644 index 0e8c7f0..0000000 --- a/src/main/java/dev/zontreck/essentials/data/README.md +++ /dev/null @@ -1,7 +0,0 @@ -Datagen -====== -____________ - -This is the datagen system for Aria's Essentials. - -Please exercise caution when updating this, and test everything. \ No newline at end of file diff --git a/src/main/java/dev/zontreck/essentials/events/MainEventHandlers.java b/src/main/java/dev/zontreck/essentials/events/MainEventHandlers.java deleted file mode 100644 index 9eb2ca7..0000000 --- a/src/main/java/dev/zontreck/essentials/events/MainEventHandlers.java +++ /dev/null @@ -1,34 +0,0 @@ -package dev.zontreck.essentials.events; - -import dev.zontreck.essentials.configs.server.AEServerConfig; -import dev.zontreck.libzontreck.memory.world.BlockRestoreQueue; -import dev.zontreck.libzontreck.memory.world.BlockRestoreQueueRegistry; -import dev.zontreck.libzontreck.memory.world.SavedBlock; -import dev.zontreck.libzontreck.vectors.Vector3i; -import net.minecraft.core.BlockPos; -import net.minecraft.world.level.block.Block; -import net.minecraft.world.level.block.Blocks; -import net.minecraftforge.event.level.ExplosionEvent; -import net.minecraftforge.eventbus.api.SubscribeEvent; - -import java.util.concurrent.TimeUnit; - -public class MainEventHandlers -{ - - @SubscribeEvent - public static void onExplosionEvent(ExplosionEvent event) - { - for(BlockPos pos : event.getExplosion().getToBlow()) - { - SavedBlock sb = SavedBlock.takeSnapshot(new Vector3i(pos), event.getLevel()); - - BlockRestoreQueue queue = BlockRestoreQueueRegistry.getQueue("creeperheal"); - queue.enqueueBlock(sb); - - event.getLevel().removeBlockEntity(pos); - event.getLevel().setBlock(pos, Blocks.AIR.defaultBlockState(), Block.UPDATE_CLIENTS, 0); - } - } - -} diff --git a/src/main/java/dev/zontreck/essentials/events/RTPEvent.java b/src/main/java/dev/zontreck/essentials/events/RTPEvent.java deleted file mode 100644 index d468d6c..0000000 --- a/src/main/java/dev/zontreck/essentials/events/RTPEvent.java +++ /dev/null @@ -1,21 +0,0 @@ -package dev.zontreck.essentials.events; - -import dev.zontreck.libzontreck.vectors.WorldPosition; -import net.minecraft.server.level.ServerLevel; -import net.minecraft.server.level.ServerPlayer; -import net.minecraftforge.eventbus.api.Cancelable; -import net.minecraftforge.eventbus.api.Event; - -@Cancelable -public class RTPEvent extends Event -{ - public ServerPlayer player; - public WorldPosition position; - - public RTPEvent(ServerPlayer player, WorldPosition position) - { - this.player=player; - this.position=position; - - } -} diff --git a/src/main/java/dev/zontreck/essentials/events/RTPFoundEvent.java b/src/main/java/dev/zontreck/essentials/events/RTPFoundEvent.java deleted file mode 100644 index 25b942c..0000000 --- a/src/main/java/dev/zontreck/essentials/events/RTPFoundEvent.java +++ /dev/null @@ -1,14 +0,0 @@ -package dev.zontreck.essentials.events; - -import dev.zontreck.essentials.rtp.RTP; -import net.minecraftforge.eventbus.api.Event; - -public class RTPFoundEvent extends Event -{ - public RTP rtp; - - public RTPFoundEvent(RTP rtp) - { - this.rtp=rtp; - } -} diff --git a/src/main/java/dev/zontreck/essentials/events/WarpAccessChanged.java b/src/main/java/dev/zontreck/essentials/events/WarpAccessChanged.java deleted file mode 100644 index 4e20929..0000000 --- a/src/main/java/dev/zontreck/essentials/events/WarpAccessChanged.java +++ /dev/null @@ -1,30 +0,0 @@ -package dev.zontreck.essentials.events; - -import dev.zontreck.essentials.warps.Warp; -import net.minecraft.server.level.ServerPlayer; -import net.minecraftforge.eventbus.api.Cancelable; -import net.minecraftforge.eventbus.api.Event; - - -/** - * Dispatched only when a warp's public status is toggled on or off. - * This event may be cancelled to prevent toggling. This could happen if the person is not the owner of the warp, or due to other permissions issues, such as from claims. - */ -@Cancelable -public class WarpAccessChanged extends Event -{ - /** - * This is the warp the event is triggered for - */ - public Warp warp; - /** - * This is the player initiating the change - */ - public ServerPlayer player; - - public WarpAccessChanged(Warp warp, ServerPlayer initiator) - { - this.warp=warp; - player=initiator; - } -} diff --git a/src/main/java/dev/zontreck/essentials/events/WarpAccessControlListUpdatedEvent.java b/src/main/java/dev/zontreck/essentials/events/WarpAccessControlListUpdatedEvent.java deleted file mode 100644 index e977f5e..0000000 --- a/src/main/java/dev/zontreck/essentials/events/WarpAccessControlListUpdatedEvent.java +++ /dev/null @@ -1,26 +0,0 @@ -package dev.zontreck.essentials.events; - -import dev.zontreck.essentials.warps.Warp; -import dev.zontreck.essentials.warps.AccessControlList.ACLEntry; -import dev.zontreck.libzontreck.profiles.Profile; -import net.minecraftforge.eventbus.api.Event; - -/** - * Dispatched when a warp's access control list gets updated. - */ -public class WarpAccessControlListUpdatedEvent extends Event -{ - public Warp warp; - public ACLEntry entry; - - /** - * If false, then the entry was deleted from the warp ACL - */ - public boolean added; - public WarpAccessControlListUpdatedEvent(Warp warp, ACLEntry entry, boolean added) - { - this.warp=warp; - this.entry=entry; - this.added=added; - } -} diff --git a/src/main/java/dev/zontreck/essentials/events/WarpCreatedEvent.java b/src/main/java/dev/zontreck/essentials/events/WarpCreatedEvent.java deleted file mode 100644 index d8993f4..0000000 --- a/src/main/java/dev/zontreck/essentials/events/WarpCreatedEvent.java +++ /dev/null @@ -1,20 +0,0 @@ -package dev.zontreck.essentials.events; - -import dev.zontreck.essentials.warps.Warp; -import net.minecraftforge.eventbus.api.Cancelable; -import net.minecraftforge.eventbus.api.Event; - -@Cancelable -public class WarpCreatedEvent extends Event -{ - public Warp warp; - - /** - * Edit this value to specify a reason for cancelling the event to the end user - */ - public String denyReason = "an unknown error"; - public WarpCreatedEvent(Warp w) - { - warp=w; - } -} diff --git a/src/main/java/dev/zontreck/essentials/events/WarpDeletedEvent.java b/src/main/java/dev/zontreck/essentials/events/WarpDeletedEvent.java deleted file mode 100644 index 42f02df..0000000 --- a/src/main/java/dev/zontreck/essentials/events/WarpDeletedEvent.java +++ /dev/null @@ -1,14 +0,0 @@ -package dev.zontreck.essentials.events; - -import dev.zontreck.essentials.warps.Warp; -import net.minecraftforge.eventbus.api.Event; - -public class WarpDeletedEvent extends Event -{ - - public Warp warp; - public WarpDeletedEvent(Warp w) { - warp=w; - } - -} diff --git a/src/main/java/dev/zontreck/essentials/exceptions/NoSuchHomeException.java b/src/main/java/dev/zontreck/essentials/exceptions/NoSuchHomeException.java deleted file mode 100644 index 1a032c5..0000000 --- a/src/main/java/dev/zontreck/essentials/exceptions/NoSuchHomeException.java +++ /dev/null @@ -1,5 +0,0 @@ -package dev.zontreck.essentials.exceptions; - -public class NoSuchHomeException extends Exception{ - -} diff --git a/src/main/java/dev/zontreck/essentials/homes/HomesProvider.java b/src/main/java/dev/zontreck/essentials/homes/HomesProvider.java deleted file mode 100644 index 5ed18a4..0000000 --- a/src/main/java/dev/zontreck/essentials/homes/HomesProvider.java +++ /dev/null @@ -1,48 +0,0 @@ -package dev.zontreck.essentials.homes; - -import java.io.IOException; -import java.nio.file.Path; -import java.util.UUID; - -import dev.zontreck.essentials.util.EssentialsDatastore; -import net.minecraft.nbt.NbtIo; - -public class HomesProvider { - /** - * DO NOT USE. Internal use only. - * @param player - * @return - */ - public static Homes getHomesForPlayer(String player) - { - Path homesFile = EssentialsDatastore.of(player,true).resolve("homes.nbt"); - - Homes homes = new Homes(player); - if(homesFile.toFile().exists()) - { - try { - homes=Homes.deserialize(NbtIo.read(homesFile.toFile())); - homes.playerID=player; - } catch (IOException e) { - e.printStackTrace(); - } - - } - - - return homes; - } - - public static void commitHomes(Homes playerHomes) - { - - Path homesFile = EssentialsDatastore.of(playerHomes.playerID,true).resolve("homes.nbt"); - - try { - NbtIo.write(playerHomes.serialize(), homesFile.toFile()); - } catch (IOException e) { - e.printStackTrace(); - } - } - -} diff --git a/src/main/java/dev/zontreck/essentials/homes/HomesSuggestionProvider.java b/src/main/java/dev/zontreck/essentials/homes/HomesSuggestionProvider.java deleted file mode 100644 index ac823d6..0000000 --- a/src/main/java/dev/zontreck/essentials/homes/HomesSuggestionProvider.java +++ /dev/null @@ -1,18 +0,0 @@ -package dev.zontreck.essentials.homes; - -import com.mojang.brigadier.context.CommandContext; -import com.mojang.brigadier.exceptions.CommandSyntaxException; -import com.mojang.brigadier.suggestion.SuggestionProvider; -import com.mojang.brigadier.suggestion.Suggestions; -import com.mojang.brigadier.suggestion.SuggestionsBuilder; -import dev.zontreck.libzontreck.profiles.Profile; -import dev.zontreck.libzontreck.profiles.UserProfileNotYetExistsException; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.SharedSuggestionProvider; - -import java.util.ArrayList; -import java.util.List; -import java.util.concurrent.CompletableFuture; - -public class HomesSuggestionProvider { -} diff --git a/src/main/java/dev/zontreck/essentials/imc/Events.java b/src/main/java/dev/zontreck/essentials/imc/Events.java deleted file mode 100644 index 938aec2..0000000 --- a/src/main/java/dev/zontreck/essentials/imc/Events.java +++ /dev/null @@ -1,49 +0,0 @@ -package dev.zontreck.essentials.imc; - -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.antiexplode.CreeperHealQueue; -import dev.zontreck.essentials.commands.teleport.TeleportActioner; -import dev.zontreck.essentials.commands.teleport.TeleportContainer; -import dev.zontreck.essentials.configs.server.AEServerConfig; -import dev.zontreck.essentials.util.BackPositionCaches; -import dev.zontreck.libzontreck.config.ServerConfig; -import dev.zontreck.libzontreck.events.BlockRestoreQueueRegistrationEvent; -import dev.zontreck.libzontreck.events.TeleportEvent; -import dev.zontreck.libzontreck.memory.world.BlockRestoreQueue; -import dev.zontreck.libzontreck.memory.world.BlockRestoreQueueRegistry; -import dev.zontreck.libzontreck.memory.world.BlockRestoreRunner; -import dev.zontreck.libzontreck.memory.world.SavedBlock; -import dev.zontreck.libzontreck.vectors.Vector3i; -import net.minecraft.core.BlockPos; -import net.minecraft.world.level.block.Block; -import net.minecraft.world.level.block.Blocks; -import net.minecraft.world.phys.Vec2; -import net.minecraftforge.event.level.ExplosionEvent; -import net.minecraftforge.eventbus.api.SubscribeEvent; - -import java.util.Timer; -import java.util.concurrent.TimeUnit; - -public class Events -{ - @SubscribeEvent - public static void onTeleportRequest(TeleportEvent ev) - { - ev.setCanceled(true); - - TeleportActioner.ApplyTeleportEffect(ev.getPlayer()); - - TeleportContainer container = new TeleportContainer(ev.getPlayer(), ev.getPosition().Position.asMinecraftVector(), Vec2.ZERO, ev.getPosition().getActualDimension()); - - TeleportActioner.PerformTeleport(container, false); - } - - @SubscribeEvent - public static void onRegisterRestoreQueues (BlockRestoreQueueRegistrationEvent event) - { - CreeperHealQueue queue = new CreeperHealQueue(); - event.register(queue); - queue.schedule(AEServerConfig.getInstance().creeperHeal.duration * 50L, TimeUnit.MILLISECONDS); - } - -} diff --git a/src/main/java/dev/zontreck/essentials/items/CreativeModeTabs.java b/src/main/java/dev/zontreck/essentials/items/CreativeModeTabs.java deleted file mode 100644 index 747038f..0000000 --- a/src/main/java/dev/zontreck/essentials/items/CreativeModeTabs.java +++ /dev/null @@ -1,25 +0,0 @@ -package dev.zontreck.essentials.items; - -import dev.zontreck.essentials.AriasEssentials; -import net.minecraft.network.chat.Component; -import net.minecraft.world.item.CreativeModeTab; -import net.minecraft.world.item.Item; -import net.minecraft.world.level.ItemLike; -import net.minecraftforge.api.distmarker.Dist; -import net.minecraftforge.eventbus.api.IEventBus; -import net.minecraftforge.fml.common.Mod; -import net.minecraftforge.registries.DeferredRegister; -import net.minecraftforge.registries.ForgeRegistries; -import net.minecraftforge.registries.RegistryObject; - -import java.util.ArrayList; -import java.util.List; -import java.util.function.Supplier; - -@Mod.EventBusSubscriber(modid = AriasEssentials.MODID, value = Dist.CLIENT) -public class CreativeModeTabs { - public static RegistryObject addToAETab(RegistryObject item) - { - return item; - } -} diff --git a/src/main/java/dev/zontreck/essentials/items/EventHandlers.java b/src/main/java/dev/zontreck/essentials/items/EventHandlers.java deleted file mode 100644 index caa1f21..0000000 --- a/src/main/java/dev/zontreck/essentials/items/EventHandlers.java +++ /dev/null @@ -1,11 +0,0 @@ -package dev.zontreck.essentials.items; - -import dev.zontreck.essentials.AriasEssentials; -import net.minecraftforge.event.TickEvent; -import net.minecraftforge.eventbus.api.SubscribeEvent; -import net.minecraftforge.fml.common.Mod; - -@Mod.EventBusSubscriber(modid = AriasEssentials.MODID) -public class EventHandlers -{ -} diff --git a/src/main/java/dev/zontreck/essentials/items/ModItems.java b/src/main/java/dev/zontreck/essentials/items/ModItems.java deleted file mode 100644 index f1ea2f0..0000000 --- a/src/main/java/dev/zontreck/essentials/items/ModItems.java +++ /dev/null @@ -1,22 +0,0 @@ -package dev.zontreck.essentials.items; - -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.items.implementation.TimeBottle; -import net.minecraft.world.item.Item; -import net.minecraftforge.eventbus.api.IEventBus; -import net.minecraftforge.registries.DeferredRegister; -import net.minecraftforge.registries.ForgeRegistries; -import net.minecraftforge.registries.RegistryObject; - -public class ModItems -{ - public static DeferredRegister REGISTRY = DeferredRegister.create(ForgeRegistries.ITEMS, AriasEssentials.MODID); - - public static void register(IEventBus bus) { - REGISTRY.register(bus); - } - - public static RegistryObject TIME_IN_A_BOTTLE = CreativeModeTabs.addToAETab(REGISTRY.register("tiab", ()->new TimeBottle())); - - public static RegistryObject METAL_BAR = CreativeModeTabs.addToAETab(REGISTRY.register("metal_bar", ()->new Item(new Item.Properties()))); -} diff --git a/src/main/java/dev/zontreck/essentials/networking/ModMessages.java b/src/main/java/dev/zontreck/essentials/networking/ModMessages.java deleted file mode 100644 index 4a0c324..0000000 --- a/src/main/java/dev/zontreck/essentials/networking/ModMessages.java +++ /dev/null @@ -1,53 +0,0 @@ -package dev.zontreck.essentials.networking; - -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.networking.packets.s2c.S2CUpdateHearts; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.server.level.ServerPlayer; -import net.minecraftforge.network.NetworkDirection; -import net.minecraftforge.network.NetworkRegistry; -import net.minecraftforge.network.PacketDistributor; -import net.minecraftforge.network.simple.SimpleChannel; - -public class ModMessages { - private static SimpleChannel INSTANCE; - - private static int PACKET_ID = 0; - private static int id() - { - return PACKET_ID++; - } - - public static void register() - { - SimpleChannel net = NetworkRegistry.ChannelBuilder.named(new ResourceLocation(AriasEssentials.MODID, "messages")) - .networkProtocolVersion(()-> "1.0") - .clientAcceptedVersions(s->true) - .serverAcceptedVersions(s->true) - .simpleChannel(); - - INSTANCE=net; - - - net.messageBuilder(S2CUpdateHearts.class, id(), NetworkDirection.PLAY_TO_CLIENT) - .decoder(S2CUpdateHearts::new) - .encoder(S2CUpdateHearts::toBytes) - .consumerMainThread(S2CUpdateHearts::handle) - .add(); - - } - - public static void sendToServer(MSG message){ - INSTANCE.sendToServer(message); - } - - public static void sendToPlayer(MSG message, ServerPlayer player) - { - INSTANCE.send(PacketDistributor.PLAYER.with(()->player), message); - } - - public static void sendToAll(MSG message) - { - INSTANCE.send(PacketDistributor.ALL.noArg(), message); - } -} diff --git a/src/main/java/dev/zontreck/essentials/networking/packets/s2c/S2CUpdateHearts.java b/src/main/java/dev/zontreck/essentials/networking/packets/s2c/S2CUpdateHearts.java deleted file mode 100644 index f66da3c..0000000 --- a/src/main/java/dev/zontreck/essentials/networking/packets/s2c/S2CUpdateHearts.java +++ /dev/null @@ -1,44 +0,0 @@ -package dev.zontreck.essentials.networking.packets.s2c; - -import dev.zontreck.essentials.configs.client.AEClientConfig; -import dev.zontreck.libzontreck.networking.packets.IPacket; -import dev.zontreck.libzontreck.util.ServerUtilities; -import net.minecraft.nbt.CompoundTag; -import net.minecraft.network.FriendlyByteBuf; -import net.minecraftforge.network.NetworkDirection; -import net.minecraftforge.network.NetworkEvent; -import net.minecraftforge.network.simple.SimpleChannel; - -import java.util.function.Supplier; - -public class S2CUpdateHearts -{ - public boolean current; - - public S2CUpdateHearts(FriendlyByteBuf buf) - { - current = buf.readBoolean(); - } - - public S2CUpdateHearts(boolean current) - { - this.current=current; - } - - public S2CUpdateHearts(){} - - public void toBytes(FriendlyByteBuf friendlyByteBuf) { - friendlyByteBuf.writeBoolean(current); - } - - public boolean handle(Supplier supplier) { - NetworkEvent.Context ctx=supplier.get(); - - ctx.enqueueWork(()->{ - AEClientConfig.getInstance().EnableHearts = current; - AEClientConfig.save(); - }); - - return true; - } -} diff --git a/src/main/java/dev/zontreck/essentials/rtp/RTP.java b/src/main/java/dev/zontreck/essentials/rtp/RTP.java deleted file mode 100644 index bd39902..0000000 --- a/src/main/java/dev/zontreck/essentials/rtp/RTP.java +++ /dev/null @@ -1,159 +0,0 @@ -package dev.zontreck.essentials.rtp; - -import dev.zontreck.ariaslib.util.Lists; -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.libzontreck.vectors.Vector3d; -import dev.zontreck.libzontreck.vectors.Vector3i; -import dev.zontreck.libzontreck.vectors.WorldPosition; -import net.minecraft.core.BlockPos; -import net.minecraft.core.Direction; -import net.minecraft.core.Vec3i; -import net.minecraft.server.level.ServerLevel; -import net.minecraft.world.entity.player.Player; -import net.minecraft.world.level.block.Block; -import net.minecraft.world.level.block.Blocks; -import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.chunk.ChunkStatus; -import net.minecraft.world.level.levelgen.Heightmap; - -import java.time.Instant; -import java.util.ArrayList; -import java.util.Iterator; -import java.util.List; -import java.util.Random; - -public class RTP { - private static final List BLACKLIST = Lists.of(Blocks.LAVA, Blocks.WATER, Blocks.BEDROCK); - private final int SEARCH_DIRECTION; - private final Heightmap.Types heightMapType; - public WorldPosition position; - private final ServerLevel dimension; - private int tries; - - public RTP(ServerLevel level) { - position = new WorldPosition(new Vector3d(0, -60, 0), WorldPosition.getDim(level)); - dimension = position.getActualDimension(); - - if (position.getActualDimension().dimensionType().hasCeiling()) { - heightMapType = Heightmap.Types.MOTION_BLOCKING_NO_LEAVES; - SEARCH_DIRECTION = -1; - } else { - heightMapType = Heightmap.Types.MOTION_BLOCKING_NO_LEAVES; - SEARCH_DIRECTION = 1; - } - } - - public boolean isDimension(ServerLevel level) { - String dim = WorldPosition.getDim(level); - return dim.equals(position.Dimension); - } - - public BlockPos findSafeLandingLocation() { - BlockPos targetPos = position.Position.asBlockPos(); - - // Search upward for a safe landing location - while (!isSafe(targetPos) || !isSafe(targetPos.above())) { - targetPos = targetPos.above(); - } - - return targetPos; - } - - private boolean isSafe(BlockPos blockPos) { - BlockState blockState = dimension.getBlockState(blockPos); - BlockState blockStateAbove = dimension.getBlockState(blockPos.above()); - BlockState blockStateBelow = dimension.getBlockState(blockPos.below()); - - if (blockState.isAir() && blockStateAbove.isAir()) { - if (!blockStateBelow.isAir()) { - return !BLACKLIST.contains(blockStateBelow.getBlock()); - } else { - return false; - } - } else { - return false; - } - } - - public static RTP getRTP(ServerLevel level) { - List slice = slicedByDimension(level); - if (!slice.isEmpty()) { - RTP ret = slice.get(AriasEssentials.random.nextInt(slice.size())); - RTPCaches.Locations.remove(ret); - RandomPositionFactory.beginRTPSearch(ret.position.getActualDimension()); - return ret; - } else { - return null; - } - } - - public void move() { - if (SEARCH_DIRECTION == 1) { - position.Position = position.Position.moveUp(); - } else if (SEARCH_DIRECTION == -1) { - position.Position = position.Position.moveDown(); - } - } - - public void moveOpposite() { - move(); - } - - public void newPosition() { - if (!AriasEssentials.ALIVE || tries >= 5) return; - - AriasEssentials.LOGGER.info("RTP starts looking for a new position"); - - Random rng = new Random(Instant.now().getEpochSecond()); - - Vector3d pos; - BlockPos bpos; - - do { - pos = new Vector3d(rng.nextDouble(0xFFFF), -60, rng.nextDouble(0xFFFF)); - - pos = spiralPositions(pos); - position.Position = pos; - bpos = pos.asBlockPos(); - } while (!isValidPosition(bpos)); - - tries++; - AriasEssentials.LOGGER.info("RTP returns a new position"); - } - - private boolean isValidPosition(BlockPos bpos) { - ChunkStatus status = ChunkStatus.SPAWN; - dimension.getChunk(bpos.getX() >> 4, bpos.getZ() >> 4, status); - - Vector3d pos = new Vector3d(dimension.getHeightmapPos(heightMapType, bpos)); - return dimension.getWorldBorder().isWithinBounds(pos.asBlockPos()); - } - - private Vector3d spiralPositions(Vector3d position) { - Vec3i posi = position.asVec3i(); - BlockPos startBlockPos = new BlockPos(posi.getX(), dimension.getSeaLevel(), posi.getZ()); - - for (BlockPos pos : BlockPos.spiralAround(startBlockPos, 16, Direction.WEST, Direction.NORTH)) { - if (isSafe(pos)) { - // Set the new position - return new Vector3d(pos); - } - } - - return position; - } - - public static List slicedByDimension(ServerLevel lvl) { - List slice = new ArrayList<>(); - - Iterator it = RTPCaches.Locations.iterator(); - while (it.hasNext()) { - RTP nxt = it.next(); - if (nxt.isDimension(lvl)) { - slice.add(nxt); - } - } - - return slice; - } -} diff --git a/src/main/java/dev/zontreck/essentials/rtp/RTPCaches.java b/src/main/java/dev/zontreck/essentials/rtp/RTPCaches.java deleted file mode 100644 index ebcbc97..0000000 --- a/src/main/java/dev/zontreck/essentials/rtp/RTPCaches.java +++ /dev/null @@ -1,31 +0,0 @@ -package dev.zontreck.essentials.rtp; - -import dev.zontreck.essentials.events.RTPFoundEvent; -import dev.zontreck.essentials.util.EssentialsDatastore; -import dev.zontreck.libzontreck.vectors.WorldPosition; -import net.minecraft.nbt.CompoundTag; -import net.minecraftforge.eventbus.api.SubscribeEvent; - -import java.nio.file.Path; -import java.util.ArrayList; -import java.util.List; - -public class RTPCaches -{ - public static List Locations = new ArrayList<>(); - - - public static final Path BASE = EssentialsDatastore.of("rtp.nbt", false); - - - @SubscribeEvent - public static void onRTPFound(RTPFoundEvent found) - { - - } - - public static void deserialize(CompoundTag tag) - { - - } -} diff --git a/src/main/java/dev/zontreck/essentials/rtp/RTPCachesEventHandlers.java b/src/main/java/dev/zontreck/essentials/rtp/RTPCachesEventHandlers.java deleted file mode 100644 index aeafc4b..0000000 --- a/src/main/java/dev/zontreck/essentials/rtp/RTPCachesEventHandlers.java +++ /dev/null @@ -1,67 +0,0 @@ -package dev.zontreck.essentials.rtp; - -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.Messages; -import dev.zontreck.essentials.commands.teleport.TeleportActioner; -import dev.zontreck.essentials.events.RTPFoundEvent; -import dev.zontreck.libzontreck.LibZontreck; -import dev.zontreck.libzontreck.util.ChatHelpers; -import net.minecraft.server.MinecraftServer; -import net.minecraft.server.level.ServerLevel; -import net.minecraftforge.common.MinecraftForge; -import net.minecraftforge.event.TickEvent; -import net.minecraftforge.eventbus.api.SubscribeEvent; -import net.minecraftforge.server.ServerLifecycleHooks; - -public class RTPCachesEventHandlers -{ - public int lastTick; - public boolean firstRun=true; - @SubscribeEvent - public void onTick(TickEvent.ServerTickEvent event) - { - if(!AriasEssentials.ALIVE) return; - lastTick++; - MinecraftServer server = ServerLifecycleHooks.getCurrentServer(); - if(lastTick>=400) - { - lastTick=0; - - if(firstRun) - { - try { - - MinecraftForge.EVENT_BUS.unregister(this); - - firstRun=false; - AriasEssentials.LOGGER.info("Aria's Essentials startup is running. Scanning for initial RTP locations"); - for(ServerLevel level : server.getAllLevels()) - { - if(AriasEssentials.DEBUG) - { - AriasEssentials.LOGGER.info("Scanning a level"); - } - if(TeleportActioner.isBlacklistedDimension(level)) - { - continue; - } - - RandomPositionFactory.beginRTPSearch(level); - } - - AriasEssentials.LOGGER.info("Startup done. RTP searching will continue in a separate thread"); - }catch (Exception e) - { - e.printStackTrace(); - } - } - } - } - - @SubscribeEvent - public static void onRTPFound(final RTPFoundEvent event) - { - RTPCaches.Locations.add(event.rtp); - ChatHelpers.broadcast(ChatHelpers.macro(Messages.RTP_CACHED, event.rtp.position.Dimension), event.rtp.position.getActualDimension().getServer()); - } -} diff --git a/src/main/java/dev/zontreck/essentials/rtp/RandomPositionFactory.java b/src/main/java/dev/zontreck/essentials/rtp/RandomPositionFactory.java deleted file mode 100644 index 57a4132..0000000 --- a/src/main/java/dev/zontreck/essentials/rtp/RandomPositionFactory.java +++ /dev/null @@ -1,43 +0,0 @@ -package dev.zontreck.essentials.rtp; - -import dev.zontreck.essentials.commands.teleport.TeleportActioner; -import dev.zontreck.essentials.commands.teleport.TeleportContainer; -import dev.zontreck.libzontreck.vectors.Vector3d; -import dev.zontreck.libzontreck.vectors.WorldPosition; -import net.minecraft.server.level.ServerLevel; -import net.minecraft.server.level.ServerPlayer; -import net.minecraft.world.phys.Vec2; -import net.minecraft.world.phys.Vec3; - -import java.time.Instant; - -/** - * The factory system used to start searching for a random teleport position - */ -public class RandomPositionFactory { - - public static RTP beginRTPSearch(ServerLevel level) - { - RTP tmp = new RTP(level); - tmp.position = new WorldPosition(new Vector3d(0,0,0), WorldPosition.getDim(level)); - Thread tx = new Thread(new RandomPositionLocator(tmp)); - tx.setName("RTPTask"); - tx.start(); - - return tmp; - } - - public static void beginRTP(ServerPlayer player, ServerLevel level) - { - RTP tmp = RTP.getRTP(level); - if(tmp == null) - { - throw new RuntimeException("No valid destinations were found"); - } - - TeleportActioner.ApplyTeleportEffect(player); - TeleportContainer cont = new TeleportContainer(player, tmp.position.Position.asMinecraftVector(), player.getRotationVector(), level); - - TeleportActioner.PerformTeleport(cont, false); - } -} diff --git a/src/main/java/dev/zontreck/essentials/rtp/RandomPositionLocator.java b/src/main/java/dev/zontreck/essentials/rtp/RandomPositionLocator.java deleted file mode 100644 index 6d12ef4..0000000 --- a/src/main/java/dev/zontreck/essentials/rtp/RandomPositionLocator.java +++ /dev/null @@ -1,50 +0,0 @@ -package dev.zontreck.essentials.rtp; - -import dev.zontreck.ariaslib.terminal.Task; -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.events.RTPFoundEvent; -import net.minecraft.server.level.ServerLevel; -import net.minecraft.world.level.ChunkPos; -import net.minecraft.world.level.chunk.ChunkAccess; -import net.minecraftforge.common.MinecraftForge; -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; - -/** - * This class serves as the Random Position Locate system, aiming to be non-thread blocking for improved server performance. - * To utilize, initialize an RTP from the RandomPositionFactory and execute from there. - */ -public class RandomPositionLocator extends Task { - private static final Logger log = LogManager.getLogger("RPL-"+Thread.currentThread().getName()); - private final RTP contain; - - /** - * Constructs a RandomPositionLocator with the specified RTP instance. - * - * @param rtp The RTP instance to use. - */ - public RandomPositionLocator(RTP rtp) { - super("RPL", true); - contain = rtp; - } - - @Override - public void run() { - if (!AriasEssentials.ALIVE) return; - - if (AriasEssentials.DEBUG) { - log.debug("RTP Search thread"); - } - - contain.newPosition(); - - if(AriasEssentials.DEBUG) - { - log.debug("Dispatching RTPFoundEvent - " + contain.position.Dimension); - } - - contain.position.getActualDimension().getServer().execute(()->{ - MinecraftForge.EVENT_BUS.post(new RTPFoundEvent(contain)); - }); - } -} diff --git a/src/main/java/dev/zontreck/essentials/util/BackPositionCaches.java b/src/main/java/dev/zontreck/essentials/util/BackPositionCaches.java deleted file mode 100644 index 3b638f7..0000000 --- a/src/main/java/dev/zontreck/essentials/util/BackPositionCaches.java +++ /dev/null @@ -1,65 +0,0 @@ -package dev.zontreck.essentials.util; - - -import dev.zontreck.libzontreck.profiles.Profile; -import dev.zontreck.libzontreck.profiles.UserProfileNotYetExistsException; -import dev.zontreck.libzontreck.vectors.WorldPosition; -import net.minecraft.nbt.CompoundTag; -import net.minecraft.nbt.ListTag; -import net.minecraft.nbt.Tag; - -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.UUID; - -public class BackPositionCaches -{ - public static void Update(UUID ID, WorldPosition pos) - { - try { - Profile prof = Profile.get_profile_of(ID.toString()); - if(prof.NBT.contains("back_positions")) - { - - ListTag backCaches = prof.NBT.getList("back_positions", CompoundTag.TAG_COMPOUND); - backCaches.add(pos.serialize()); - - while(backCaches.size()>10) - { - backCaches.remove(backCaches.size()-1); - } - - prof.commit(); - } else { - ListTag backCaches = new ListTag(); - backCaches.add(pos.serialize()); - - prof.NBT.put("back_positions", backCaches); - - prof.commit(); - } - } catch (UserProfileNotYetExistsException e) { - throw new RuntimeException(e); - } - } - - public static WorldPosition Pop(UUID ID) throws Exception { - Profile prof = Profile.get_profile_of(ID.toString()); - if(prof.NBT.contains("back_positions")) - { - ListTag lst = prof.NBT.getList("back_positions", Tag.TAG_COMPOUND); - if(lst.size()>0) - { - WorldPosition pos = new WorldPosition(lst.getCompound(0), false); - lst.remove(0); - - prof.commit(); - return pos; - }else { - throw new Exception("No back cache"); - } - } else throw new Exception("No back cache"); - } - -} diff --git a/src/main/java/dev/zontreck/essentials/util/CommandCooldowns.java b/src/main/java/dev/zontreck/essentials/util/CommandCooldowns.java deleted file mode 100644 index 3fc92f4..0000000 --- a/src/main/java/dev/zontreck/essentials/util/CommandCooldowns.java +++ /dev/null @@ -1,76 +0,0 @@ -package dev.zontreck.essentials.util; - -import dev.zontreck.essentials.Messages; -import dev.zontreck.essentials.configs.server.AEServerConfig; -import dev.zontreck.essentials.events.CommandExecutionEvent; -import dev.zontreck.libzontreck.profiles.Profile; -import dev.zontreck.libzontreck.profiles.UserProfileNotYetExistsException; -import dev.zontreck.libzontreck.util.ChatHelpers; -import dev.zontreck.libzontreck.util.ServerUtilities; -import net.minecraft.nbt.CompoundTag; -import net.minecraftforge.eventbus.api.SubscribeEvent; - -import java.time.Instant; -import java.util.UUID; - -public class CommandCooldowns -{ - @SubscribeEvent - public void onCommand(CommandExecutionEvent ev) - { - if(isOnCooldown(ev.playerID, ev.command)) - { - ev.setCanceled(true); - ChatHelpers.broadcastTo(ev.playerID, ChatHelpers.macro(Messages.COOLDOWN_IN_PROGRESS, ev.command, getCooldownSeconds(ev.playerID, ev.command) + " seconds"), ServerUtilities.getPlayerByID(ev.playerID.toString()).server); - } - } - - public long getCooldownSeconds(UUID ID, String command) - { - try{ - Profile prof = Profile.get_profile_of(ID.toString()); - CompoundTag commands = prof.NBT.getCompound("commands"); - return Instant.now().getEpochSecond() - (commands.getLong(command) + getConfigCooldown(command)); - }catch(Exception e) - { - e.printStackTrace(); - return 0; - } - } - - public long getConfigCooldown(String command) - { - if(AEServerConfig.getInstance().cooldowns.containsKey(command)) - { - return AEServerConfig.getInstance().cooldowns.get(command).Seconds; - }else return 0; - } - - public boolean isOnCooldown(UUID ID, String command) - { - try { - Profile prof = Profile.get_profile_of(ID.toString()); - CompoundTag commands = prof.NBT.getCompound("commands"); - if(commands.contains(command)) - { - long cfg = getConfigCooldown(command); - if(Instant.now().getEpochSecond() > (commands.getLong(command) + cfg)) - { - commands.putLong(command, Instant.now().getEpochSecond()); - prof.commit(); - return false; - }else return true; - }else { - commands = new CompoundTag(); - prof.NBT.put("commands", commands); - commands.putLong(command, Instant.now().getEpochSecond()); - prof.commit(); - - return false; - } - } catch (UserProfileNotYetExistsException e) { - throw new RuntimeException(e); - } - - } -} diff --git a/src/main/java/dev/zontreck/essentials/util/ForgeEventsHandler.java b/src/main/java/dev/zontreck/essentials/util/ForgeEventsHandler.java deleted file mode 100644 index 2755f2f..0000000 --- a/src/main/java/dev/zontreck/essentials/util/ForgeEventsHandler.java +++ /dev/null @@ -1,33 +0,0 @@ -package dev.zontreck.essentials.util; - -import java.util.UUID; - -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.homes.HomesProvider; -import dev.zontreck.libzontreck.events.ProfileLoadedEvent; -import dev.zontreck.libzontreck.events.ProfileUnloadedEvent; -import net.minecraftforge.eventbus.api.SubscribeEvent; -import net.minecraftforge.fml.common.Mod; - -@Mod.EventBusSubscriber(modid = AriasEssentials.MODID, bus = Mod.EventBusSubscriber.Bus.FORGE) -public class ForgeEventsHandler { - - @SubscribeEvent - public void onProfileLoaded(final ProfileLoadedEvent ev) - { - //Path playerStore = EssentialsDatastore.of(ev.profile.user_id,true); - - AriasEssentials.player_homes.put(UUID.fromString(ev.profile.user_id), HomesProvider.getHomesForPlayer(ev.profile.user_id)); - AriasEssentials.LOGGER.info("Homes loaded"); - - - - } - - @SubscribeEvent - public void onProfileUnloaded(final ProfileUnloadedEvent ev) - { - AriasEssentials.player_homes.remove(UUID.fromString(ev.user_id)); - AriasEssentials.LOGGER.info("Homes unloaded"); - } -} diff --git a/src/main/java/dev/zontreck/essentials/warps/AccessControlList.java b/src/main/java/dev/zontreck/essentials/warps/AccessControlList.java deleted file mode 100644 index 73cb327..0000000 --- a/src/main/java/dev/zontreck/essentials/warps/AccessControlList.java +++ /dev/null @@ -1,156 +0,0 @@ -package dev.zontreck.essentials.warps; - -import java.util.ArrayList; -import java.util.Iterator; -import java.util.List; -import java.util.UUID; - -import net.minecraft.nbt.CompoundTag; -import net.minecraft.nbt.ListTag; -import net.minecraft.nbt.NbtUtils; -import net.minecraft.nbt.Tag; -import net.minecraft.server.level.ServerPlayer; - -public class AccessControlList { - - /** - * Warp ACLs do not need privilege level. It is simply a question of yes or no to if someone has access to the warp. - */ - public class ACLEntry - { - public String name; - public UUID id; - - public ACLEntry(String name, UUID id) - { - this.name=name; - this.id=id; - } - - public CompoundTag serialize() - { - CompoundTag tag = new CompoundTag(); - tag.putString("name", name); - tag.put("id", NbtUtils.createUUID(id)); - - return tag; - } - - public ACLEntry(CompoundTag tag) - { - name=tag.getString("name"); - id=NbtUtils.loadUUID(tag.get("id")); - } - } - - public List entries = new ArrayList<>(); - - public AccessControlList() - { - - } - - public List getNames() - { - List names = new ArrayList<>(); - for (ACLEntry entry : entries) { - names.add(entry.name); - } - - return names; - } - - public List getIDs() - { - List ids = new ArrayList<>(); - for (ACLEntry entry : entries) { - ids.add(entry.id); - } - - return ids; - } - - /** - * Adds a ACL Entry for a name and ID - * @param name - * @param id - * @return null if the entry was already in the ACL - * @return Entry if the entry was successfully added to the ACL - */ - public ACLEntry addEntry(String name, UUID id) - { - ACLEntry entry = new ACLEntry(name, id); - if(getIDs().contains(id)) return null; - entries.add(entry); - - return entry; - } - - /** - * Removes a ACLEntry by UUID - * @param ID - * @return null if no such entry - * @return Entry that was removed from the list - */ - public ACLEntry removeByID(UUID ID) - { - Iterator entr = entries.iterator(); - while(entr.hasNext()) - { - ACLEntry entry = entr.next(); - if(entry.id==ID) - { - entr.remove(); - return entry; - } - } - - return null; - } - - /** - * Saves the current instance as a NBT Tag - * @return - */ - public CompoundTag serialize() - { - CompoundTag tag = new CompoundTag(); - ListTag lst = new ListTag(); - for (ACLEntry aclEntry : entries) { - lst.add(aclEntry.serialize()); - } - tag.put("entries", lst); - - return tag; - } - - - /** - * Reads a NBT Tag back into an AccessControlList - * @param tag - * @return - */ - public static AccessControlList deserialize(CompoundTag tag) - { - AccessControlList acl = new AccessControlList(); - ListTag lst = tag.getList("entries", Tag.TAG_COMPOUND); - for (Tag tag2 : lst) { - CompoundTag entry = (CompoundTag)tag2; - ACLEntry entryItem = acl.deserializeEntry(entry); - acl.entries.add(entryItem); - } - - return acl; - } - - /** - * Deserializes an entry from the subclass - * @see ACLEntry - * @param tag - * @return - */ - private ACLEntry deserializeEntry(CompoundTag tag) - { - return new ACLEntry(tag); - } -} diff --git a/src/main/java/dev/zontreck/essentials/warps/NoSuchWarpException.java b/src/main/java/dev/zontreck/essentials/warps/NoSuchWarpException.java deleted file mode 100644 index 443685f..0000000 --- a/src/main/java/dev/zontreck/essentials/warps/NoSuchWarpException.java +++ /dev/null @@ -1,6 +0,0 @@ -package dev.zontreck.essentials.warps; - -public class NoSuchWarpException extends Exception -{ - -} diff --git a/src/main/java/dev/zontreck/essentials/warps/Warp.java b/src/main/java/dev/zontreck/essentials/warps/Warp.java deleted file mode 100644 index 57fa866..0000000 --- a/src/main/java/dev/zontreck/essentials/warps/Warp.java +++ /dev/null @@ -1,159 +0,0 @@ -package dev.zontreck.essentials.warps; - -import java.util.ArrayList; -import java.util.List; -import java.util.UUID; - -import dev.zontreck.essentials.commands.teleport.TeleportDestination; -import dev.zontreck.essentials.events.WarpAccessControlListUpdatedEvent; -import dev.zontreck.essentials.warps.AccessControlList.ACLEntry; -import dev.zontreck.libzontreck.exceptions.InvalidDeserialization; -import dev.zontreck.libzontreck.profiles.Profile; -import dev.zontreck.libzontreck.profiles.UserProfileNotYetExistsException; -import dev.zontreck.libzontreck.util.ServerUtilities; -import dev.zontreck.libzontreck.util.heads.HeadUtilities; -import net.minecraft.nbt.CompoundTag; -import net.minecraft.nbt.IntArrayTag; -import net.minecraft.nbt.ListTag; -import net.minecraft.nbt.NbtUtils; -import net.minecraft.nbt.Tag; -import net.minecraft.server.level.ServerPlayer; -import net.minecraft.world.item.Item; -import net.minecraft.world.item.ItemStack; -import net.minecraftforge.common.MinecraftForge; - -public class Warp { - public UUID owner; - public String WarpName; - public boolean RTP; - public boolean isPublic; - public TeleportDestination destination; - private AccessControlList ACL; - - public ItemStack warpIcon; - - public Warp(UUID owner, String name, boolean rtp, boolean publicWarp, TeleportDestination destination, ItemStack warpIcon) - { - this.owner=owner; - WarpName=name; - RTP=rtp; - isPublic=publicWarp; - this.destination=destination; - this.ACL = new AccessControlList(); - - if(warpIcon==null) - { - try { - Profile prof = Profile.get_profile_of(owner.toString()); - this.warpIcon = HeadUtilities.get(prof.username, name); - - } catch (UserProfileNotYetExistsException e) { - throw new RuntimeException(e); - } - - }else this.warpIcon=warpIcon; - } - - public static Warp deserialize(CompoundTag tag) throws InvalidDeserialization - { - Warp warp = new Warp(tag.getUUID("owner"), tag.getString("name"), tag.getBoolean("rtp"), tag.getBoolean("public"), new TeleportDestination(tag.getCompound("destination")), ItemStack.of(tag.getCompound("icon"))); - - if(!warp.isPublic) - { - warp.ACL = AccessControlList.deserialize(tag.getCompound("acl")); - } - - return warp; - } - - public CompoundTag serialize() - { - CompoundTag tag = new CompoundTag(); - tag.putUUID("owner", owner); - tag.putString("name", WarpName); - tag.putBoolean("rtp", RTP); - tag.putBoolean("public", isPublic); - tag.put("destination", destination.serialize()); - tag.put("icon", warpIcon.serializeNBT()); - if(!isPublic) - { - tag.put("acl", ACL.serialize()); - } - - return tag; - } - - /** - * Checks if a player has access to a warp - * @param player - * @return - */ - public boolean hasAccess(ServerPlayer player) - { - return hasAccess(player.getUUID()); - } - - /** - * Checks if an ID has access to the warp - * @param ID - * @return - */ - public boolean hasAccess(UUID ID) - { - if(isPublic)return true; - return ACL.getIDs().contains(ID); - } - - /** - * Alias for Warp#giveAccess(UUID) - * @param player - */ - protected void giveAccess(ServerPlayer player) - { - giveAccess(player.getName().getString(), player.getUUID()); - } - - /** - * If the warp is not public, it gives an ID access to the warp - * @param ID - */ - protected void giveAccess(String name, UUID ID) - { - if(!isPublic) - { - ACLEntry entry = ACL.addEntry(name, ID); - MinecraftForge.EVENT_BUS.post(new WarpAccessControlListUpdatedEvent(this, entry, true)); - }else { - } - } - - /** - * Takes away access to the warp - * @param player - */ - protected void removeAccess(ServerPlayer player) - { - removeAccess(player.getUUID()); - } - /** - * Takes away access to the warp - * @param id - */ - protected void removeAccess(UUID id) - { - if(ACL.getIDs().contains(id)) - { - ACLEntry entry = ACL.removeByID(id); - MinecraftForge.EVENT_BUS.post(new WarpAccessControlListUpdatedEvent(this, entry, false)); - } - } - - /** - * Returns a copy of the ACL List as it was when the request was made. - * @return - */ - protected List getWarpACL() - { - return ACL.getIDs(); - } -} diff --git a/src/main/java/dev/zontreck/essentials/warps/Warps.java b/src/main/java/dev/zontreck/essentials/warps/Warps.java deleted file mode 100644 index ba985ab..0000000 --- a/src/main/java/dev/zontreck/essentials/warps/Warps.java +++ /dev/null @@ -1,95 +0,0 @@ -package dev.zontreck.essentials.warps; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.Iterator; -import java.util.List; -import java.util.Map; - -import dev.zontreck.essentials.events.WarpCreatedEvent; -import dev.zontreck.essentials.events.WarpDeletedEvent; -import dev.zontreck.libzontreck.exceptions.InvalidDeserialization; -import net.minecraft.nbt.CompoundTag; -import net.minecraft.nbt.ListTag; -import net.minecraft.nbt.Tag; -import net.minecraftforge.common.MinecraftForge; -import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext; - -public class Warps -{ - private final Map warps = new HashMap<>(); - - private Warps(){ - - } - - public Warp getNamedWarp(String name) throws NoSuchWarpException - { - if(warps.containsKey(name)) - return warps.get(name); - else throw new NoSuchWarpException(); - } - - public void add(Warp w) - { - - WarpCreatedEvent e = new WarpCreatedEvent(w); - if(!MinecraftForge.EVENT_BUS.post(e)) - { - - warps.put(w.WarpName,w); - WarpsProvider.updateFile(); - } - } - - public Map get() - { - return new HashMap(warps); - } - - public void delete(Warp w) - { - warps.remove(w.WarpName); - WarpsProvider.updateFile(); - - WarpDeletedEvent e = new WarpDeletedEvent(w); - MinecraftForge.EVENT_BUS.post(e); - } - - public static Warps getNew() - { - return new Warps(); - } - - public CompoundTag serialize() - { - CompoundTag tag = new CompoundTag(); - ListTag lst = new ListTag(); - for(Map.Entry entry : warps.entrySet()) - { - lst.add(entry.getValue().serialize()); - } - - tag.put("warps", lst); - return tag; - } - - public static Warps deserialize(CompoundTag tag) - { - Warps w = new Warps(); - ListTag lst = tag.getList("warps", Tag.TAG_COMPOUND); - for (Tag tag2 : lst) { - Warp warp; - try { - warp = Warp.deserialize((CompoundTag)tag2); - w.warps.put(warp.WarpName, warp); - } catch (InvalidDeserialization e) { - e.printStackTrace(); - } - } - - - return w; - } - -} diff --git a/src/main/java/dev/zontreck/essentials/warps/WarpsProvider.java b/src/main/java/dev/zontreck/essentials/warps/WarpsProvider.java deleted file mode 100644 index cc478d6..0000000 --- a/src/main/java/dev/zontreck/essentials/warps/WarpsProvider.java +++ /dev/null @@ -1,49 +0,0 @@ -package dev.zontreck.essentials.warps; - -import java.io.IOException; -import java.nio.file.Files; -import java.nio.file.Path; - -import dev.zontreck.essentials.util.EssentialsDatastore; -import net.minecraft.nbt.NbtIo; - -public class WarpsProvider extends EssentialsDatastore -{ - public static final Path BASE = of("warps.nbt", false); - - public static final Warps WARPS_INSTANCE; - static{ - WARPS_INSTANCE = getOrCreate(); - } - - /** - * Creates a new warps instance, or returns a fully deserialized instance - * @return - */ - private static Warps getOrCreate() - { - Warps instance = null; - if(BASE.toFile().exists()) - { - try{ - instance= Warps.deserialize(NbtIo.read(BASE.toFile())); - - }catch(Exception e){ - instance=Warps.getNew(); - } - }else { - instance=Warps.getNew(); - } - - return instance; - } - - public static void updateFile() - { - try { - NbtIo.write(WARPS_INSTANCE.serialize(), BASE.toFile()); - } catch (IOException e) { - e.printStackTrace(); - } - } -} diff --git a/src/main/resources/META-INF/accesstransformer.cfg b/src/main/resources/META-INF/accesstransformer.cfg deleted file mode 100644 index e69de29..0000000 diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml index e16e069..86871bc 100644 --- a/src/main/resources/META-INF/mods.toml +++ b/src/main/resources/META-INF/mods.toml @@ -1,71 +1,38 @@ -# This is an example mods.toml file. It contains the data relating to the loading mods. -# There are several mandatory fields (#mandatory), and many more that are optional (#optional). -# The overall format is standard TOML format, v0.5.0. -# Note that there are a couple of TOML lists in this file. -# Find more information on toml format here: https://github.com/toml-lang/toml -# The name of the mod loader type to load - for regular FML @Mod mods it should be javafml -modLoader="javafml" #mandatory -# A version range to match for said mod loader - for regular FML @Mod it will be the forge version -loaderVersion="${loader_version_range}" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions. -# The license for you mod. This is mandatory metadata and allows for easier comprehension of your redistributive properties. -# Review your options at https://choosealicense.com/. All rights reserved is the default copyright stance, and is thus the default here. -license="${mod_license}" -# A URL to refer people to when problems occur with this mod -#issueTrackerURL="https://change.me.to.your.issue.tracker.example.invalid/" #optional -# A list of mods - how many allowed here is determined by the individual mod loader -[[mods]] #mandatory -# The modid of the mod -modId="${mod_id}" #mandatory -# The version number of the mod -version="${mod_version}" #mandatory -# A display name for the mod -displayName="${mod_name}" #mandatory -# A URL to query for updates for this mod. See the JSON update specification https://docs.minecraftforge.net/en/latest/misc/updatechecker/ -#updateJSONURL="https://change.me.example.invalid/updates.json" #optional -# A URL for the "homepage" for this mod, displayed in the mod UI -#displayURL="https://change.me.to.your.mods.homepage.example.invalid/" #optional -# A file name (in the root of the mod JAR) containing a logo for display -#logoFile="examplemod.png" #optional -# A text field displayed in the mod UI -#credits="" #optional -# A text field displayed in the mod UI -authors="${mod_authors}" #optional -# Display Test controls the display for your mod in the server connection screen -# MATCH_VERSION means that your mod will cause a red X if the versions on client and server differ. This is the default behaviour and should be what you choose if you have server and client elements to your mod. -# IGNORE_SERVER_VERSION means that your mod will not cause a red X if it's present on the server but not on the client. This is what you should use if you're a server only mod. -# IGNORE_ALL_VERSION means that your mod will not cause a red X if it's present on the client or the server. This is a special case and should only be used if your mod has no server component. -# NONE means that no display test is set on your mod. You need to do this yourself, see IExtensionPoint.DisplayTest for more information. You can define any scheme you wish with this value. -# IMPORTANT NOTE: this is NOT an instruction as to which environments (CLIENT or DEDICATED SERVER) your mod loads on. Your mod should load (and maybe do nothing!) whereever it finds itself. -#displayTest="MATCH_VERSION" # MATCH_VERSION is the default if nothing is specified (#optional) +modLoader = "javafml" +loaderVersion = "[43,)" +#issueTrackerURL = "" +license = "GPLv3" -# The description text for the mod (multi line!) (#mandatory) -description='''${mod_description}''' -# A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional. -[[dependencies.${mod_id}]] #optional -# the modid of the dependency -modId="forge" #mandatory -# Does this dependency have to exist - if not, ordering below must be specified -mandatory=true #mandatory -# The version range of the dependency -versionRange="${forge_version_range}" #mandatory -# An ordering relationship for the dependency - BEFORE or AFTER required if the dependency is not mandatory -# BEFORE - This mod is loaded BEFORE the dependency -# AFTER - This mod is loaded AFTER the dependency -ordering="NONE" -# Side this dependency is applied on - BOTH, CLIENT, or SERVER -side="BOTH" -# Here's another dependency -[[dependencies.${libzontreck_id}]] -modId="${libzontreck_id}" -mandatory=true -versionRange="${libzontreck_range}" -ordering="NONE" -side="BOTH" +[[mods]] +modId = "ariasessentials" +version = "${version}" +displayName = "Aria's Essentials" +authors = "Me!" +description = ''' +A mod including features and functions to enhance the game. +''' +#logoFile = "" -[[dependencies.${mod_id}]] -modId="minecraft" -mandatory=true -# This version range declares a minimum of the current minecraft version up to but not including the next major version -versionRange="${minecraft_version_range}" -ordering="NONE" -side="BOTH" +[[mods]] +modId = "libzontreck" +version = "${version}" +displayName = "Aria's Library" +authors = "Me!" +description = ''' +A mod including features and functions to enhance the game. +''' +#logoFile = "" + +[[dependencies.ariasessentials]] +modId = "forge" +mandatory = true +versionRange = "[43,)" +ordering = "NONE" +side = "BOTH" + +[[dependencies.ariasessentials]] +modId = "minecraft" +mandatory = true +versionRange = "[1.19.2,1.20)" +ordering = "NONE" +side = "BOTH" diff --git a/src/main/resources/ariasessentials.mixins.json b/src/main/resources/ariasessentials.mixins.json new file mode 100644 index 0000000..a0b11f2 --- /dev/null +++ b/src/main/resources/ariasessentials.mixins.json @@ -0,0 +1,13 @@ +{ + "required": true, + "package": "com.zontreck.mixin", + "compatibilityLevel": "JAVA_17", + "minVersion": "0.8", + "client": [ + ], + "mixins": [ + ], + "injectors": { + "defaultRequire": 1 + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/blood_red.json b/src/main/resources/assets/ariasessentials/blockstates/blood_red.json new file mode 100644 index 0000000..60f3882 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/blood_red.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/blood_red" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/blue_pool_light.json b/src/main/resources/assets/ariasessentials/blockstates/blue_pool_light.json new file mode 100644 index 0000000..fb8e20c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/blue_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/blue_pool_light" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/blue_pool_tile.json b/src/main/resources/assets/ariasessentials/blockstates/blue_pool_tile.json new file mode 100644 index 0000000..640935c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/blue_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/blue_pool_tile" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/blue_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/blockstates/blue_pool_tile_slab.json new file mode 100644 index 0000000..00562c3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/blue_pool_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "ariasessentials:block/blue_pool_tile_slab" + }, + "type=double": { + "model": "ariasessentials:block/blue_pool_tile" + }, + "type=top": { + "model": "ariasessentials:block/blue_pool_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/blue_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/blue_pool_tile_stairs.json new file mode 100644 index 0000000..35b901f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/blue_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/blue_pool_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/blue_pool_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/blue_pool_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/blue_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/blue_pool_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/blue_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/blue_pool_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/blue_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/blue_pool_tile_wall.json b/src/main/resources/assets/ariasessentials/blockstates/blue_pool_tile_wall.json new file mode 100644 index 0000000..eb89578 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/blue_pool_tile_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/blue_pool_tile_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/blue_pool_tile_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/blue_pool_tile_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/blue_pool_tile_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/blue_pool_tile_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/blue_pool_tile_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/blue_pool_tile_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/blue_pool_tile_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/blue_pool_tile_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/clear_glass_block.json b/src/main/resources/assets/ariasessentials/blockstates/clear_glass_block.json new file mode 100644 index 0000000..c2c5c03 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/clear_glass_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/deprecated" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_block.json b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_block.json new file mode 100644 index 0000000..abf1a37 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_block.json @@ -0,0 +1,30 @@ +{ + "variants": { + "": [ + { + "model": "ariasessentials:block/clinker_brick_block_model0" + }, + { + "model": "ariasessentials:block/clinker_brick_block_model1" + }, + { + "model": "ariasessentials:block/clinker_brick_block_model2" + }, + { + "model": "ariasessentials:block/clinker_brick_block_model3" + }, + { + "model": "ariasessentials:block/clinker_brick_block_model4" + }, + { + "model": "ariasessentials:block/clinker_brick_block_model5" + }, + { + "model": "ariasessentials:block/clinker_brick_block_model6" + }, + { + "model": "ariasessentials:block/clinker_brick_block_model7" + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_recessed.json b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_recessed.json deleted file mode 100644 index 51a849f..0000000 --- a/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_recessed.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "variants": { - "facing=north": { - "model": "ariasessentials:block/engineersdecor/brick/clinker_brick_recessed_model" - }, - "facing=south": { - "model": "ariasessentials:block/engineersdecor/brick/clinker_brick_recessed_model", - "y": 180 - }, - "facing=west": { - "model": "ariasessentials:block/engineersdecor/brick/clinker_brick_recessed_model", - "y": 270 - }, - "facing=east": { - "model": "ariasessentials:block/engineersdecor/brick/clinker_brick_recessed_model", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_sastor_corner_block.json b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_sastor_corner_block.json deleted file mode 100644 index 8cf0fe0..0000000 --- a/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_sastor_corner_block.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "variants": { - "facing=north": { - "model": "ariasessentials:block/engineersdecor/brick/clinker_brick_sastor_corner_model" - }, - "facing=south": { - "model": "ariasessentials:block/engineersdecor/brick/clinker_brick_sastor_corner_model", - "y": 180 - }, - "facing=west": { - "model": "ariasessentials:block/engineersdecor/brick/clinker_brick_sastor_corner_model", - "y": 270 - }, - "facing=east": { - "model": "ariasessentials:block/engineersdecor/brick/clinker_brick_sastor_corner_model", - "y": 90 - }, - "facing=up": { - "model": "ariasessentials:block/engineersdecor/brick/clinker_brick_sastor_up_model" - }, - "facing=down": { - "model": "ariasessentials:block/engineersdecor/brick/clinker_brick_sastor_down_model" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_slab.json b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_slab.json new file mode 100644 index 0000000..bab23ad --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_slab.json @@ -0,0 +1,160 @@ +{ + "variants": { + "type=bottom,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model7_bottom" + } + ], + "type=bottom,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model7_bottom" + } + ], + "type=double,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_slab_model0_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model1_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model2_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model3_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model4_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model5_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model6_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model7_double" + } + ], + "type=double,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_slab_model0_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model1_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model2_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model3_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model4_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model5_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model6_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model7_double" + } + ], + "type=top,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_slab_model0_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model1_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model2_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model3_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model4_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model5_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model6_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model7_top" + } + ], + "type=top,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_slab_model0_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model1_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model2_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model3_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model4_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model5_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model6_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model7_top" + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_stained_block.json b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_stained_block.json new file mode 100644 index 0000000..2602152 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_stained_block.json @@ -0,0 +1,30 @@ +{ + "variants": { + "": [ + { + "model": "ariasessentials:block/clinker_brick_stained_block_model0" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_block_model1" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_block_model2" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_block_model3" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_block_model4" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_block_model5" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_block_model6" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_block_model7" + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_stained_slab.json b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_stained_slab.json new file mode 100644 index 0000000..d10f82d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_stained_slab.json @@ -0,0 +1,160 @@ +{ + "variants": { + "type=bottom,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model7_bottom" + } + ], + "type=bottom,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model7_bottom" + } + ], + "type=double,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model0_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model1_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model2_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model3_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model4_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model5_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model6_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model7_double" + } + ], + "type=double,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model0_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model1_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model2_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model3_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model4_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model5_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model6_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model7_double" + } + ], + "type=top,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model0_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model1_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model2_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model3_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model4_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model5_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model6_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model7_top" + } + ], + "type=top,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model0_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model1_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model2_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model3_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model4_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model5_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model6_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model7_top" + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_stained_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_stained_stairs.json new file mode 100644 index 0000000..219383c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_stained_stairs.json @@ -0,0 +1,3444 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7" + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_stairs.json new file mode 100644 index 0000000..13e551f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_stairs.json @@ -0,0 +1,3444 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7" + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_vertically_slit.json b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_vertically_slit.json deleted file mode 100644 index 1413761..0000000 --- a/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_vertically_slit.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "variants": { - "facing=north": { - "model": "ariasessentials:block/engineersdecor/brick/clinker_brick_vertically_slit_model" - }, - "facing=south": { - "model": "ariasessentials:block/engineersdecor/brick/clinker_brick_vertically_slit_model", - "y": 180 - }, - "facing=west": { - "model": "ariasessentials:block/engineersdecor/brick/clinker_brick_vertically_slit_model", - "y": 270 - }, - "facing=east": { - "model": "ariasessentials:block/engineersdecor/brick/clinker_brick_vertically_slit_model", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_wall.json b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_wall.json new file mode 100644 index 0000000..a4976c1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/clinker_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/clinker_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/clinker_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/clinker_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/clinker_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/clinker_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/clinker_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/clinker_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/clinker_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/cobalt_block.json b/src/main/resources/assets/ariasessentials/blockstates/cobalt_block.json new file mode 100644 index 0000000..5425928 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/cobalt_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/cobalt_block" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/cobalt_ore.json b/src/main/resources/assets/ariasessentials/blockstates/cobalt_ore.json new file mode 100644 index 0000000..15e902e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/cobalt_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/cobalt_ore" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/compressed_obsidian_block.json b/src/main/resources/assets/ariasessentials/blockstates/compressed_obsidian_block.json new file mode 100644 index 0000000..dcd27fd --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/compressed_obsidian_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/compressed_obsidian_block" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/compression_chamber.json b/src/main/resources/assets/ariasessentials/blockstates/compression_chamber.json new file mode 100644 index 0000000..28d55e9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/compression_chamber.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=north": { + "model": "ariasessentials:block/compression_chamber" + }, + "facing=east": { + "model": "ariasessentials:block/compression_chamber", + "y": 90 + }, + "facing=south": { + "model": "ariasessentials:block/compression_chamber", + "y": 180 + }, + "facing=west": { + "model": "ariasessentials:block/compression_chamber", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/cyan.json b/src/main/resources/assets/ariasessentials/blockstates/cyan.json new file mode 100644 index 0000000..1140857 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/cyan.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/cyan" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/cyan_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/cyan_stairs.json new file mode 100644 index 0000000..92a3b8d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/cyan_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/cyan_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/cyan_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/cyan_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/cyan_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/cyan_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/cyan_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/cyan_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/cyan_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/cyan_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/cyan_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/cyan_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/cyan_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/cyan_tile.json b/src/main/resources/assets/ariasessentials/blockstates/cyan_tile.json new file mode 100644 index 0000000..9392d78 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/cyan_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/cyan_tile" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/cyan_tile_br.json b/src/main/resources/assets/ariasessentials/blockstates/cyan_tile_br.json new file mode 100644 index 0000000..4ff391d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/cyan_tile_br.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "ariasessentials:block/cyan_tile_br", + "y": 90 + }, + "facing=north": { + "model": "ariasessentials:block/cyan_tile_br" + }, + "facing=south": { + "model": "ariasessentials:block/cyan_tile_br", + "y": 180 + }, + "facing=west": { + "model": "ariasessentials:block/cyan_tile_br", + "y": 270 + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/cyan_tile_to_wall.json b/src/main/resources/assets/ariasessentials/blockstates/cyan_tile_to_wall.json new file mode 100644 index 0000000..18664ad --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/cyan_tile_to_wall.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/cyan_tile_to_wall" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/cyan_wall_variant_1.json b/src/main/resources/assets/ariasessentials/blockstates/cyan_wall_variant_1.json new file mode 100644 index 0000000..9db9859 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/cyan_wall_variant_1.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/cyan_wall_variant_1" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/cyan_wall_variant_2.json b/src/main/resources/assets/ariasessentials/blockstates/cyan_wall_variant_2.json new file mode 100644 index 0000000..c19d42c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/cyan_wall_variant_2.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/cyan_wall_variant_2" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/dark_pool_light.json b/src/main/resources/assets/ariasessentials/blockstates/dark_pool_light.json new file mode 100644 index 0000000..1c52dc6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dark_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dark_pool_light" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dark_pool_tile.json b/src/main/resources/assets/ariasessentials/blockstates/dark_pool_tile.json new file mode 100644 index 0000000..a275c44 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dark_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dark_pool_tile" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dark_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/blockstates/dark_pool_tile_slab.json new file mode 100644 index 0000000..3b81bd2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dark_pool_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "ariasessentials:block/dark_pool_tile_slab" + }, + "type=double": { + "model": "ariasessentials:block/dark_pool_tile" + }, + "type=top": { + "model": "ariasessentials:block/dark_pool_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dark_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/dark_pool_tile_stairs.json new file mode 100644 index 0000000..b1d4e4d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dark_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/dark_pool_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/dark_pool_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/dark_pool_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/dark_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/dark_pool_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/dark_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/dark_pool_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/dark_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dark_red_bed.json b/src/main/resources/assets/ariasessentials/blockstates/dark_red_bed.json new file mode 100644 index 0000000..6577c90 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dark_red_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dark_red_carpet.json b/src/main/resources/assets/ariasessentials/blockstates/dark_red_carpet.json new file mode 100644 index 0000000..7b947a7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dark_red_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dark_red_carpet" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dark_red_shulker_box.json b/src/main/resources/assets/ariasessentials/blockstates/dark_red_shulker_box.json new file mode 100644 index 0000000..076cb31 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dark_red_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dark_red_shulker_box" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dark_red_wool.json b/src/main/resources/assets/ariasessentials/blockstates/dark_red_wool.json new file mode 100644 index 0000000..412496d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dark_red_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dark_red_wool" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/deepslate_eternium_ore_block.json b/src/main/resources/assets/ariasessentials/blockstates/deepslate_eternium_ore_block.json new file mode 100644 index 0000000..aa984f4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/deepslate_eternium_ore_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/deepslate_eternium_ore_block" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/deepslate_ilusium_ore_block.json b/src/main/resources/assets/ariasessentials/blockstates/deepslate_ilusium_ore_block.json new file mode 100644 index 0000000..e09d2fd --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/deepslate_ilusium_ore_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/deprecated" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_light.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_light.json new file mode 100644 index 0000000..a899860 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dirty_blue_pool_light" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile.json new file mode 100644 index 0000000..777f905 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dirty_blue_pool_tile" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_slab.json new file mode 100644 index 0000000..6c39f66 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "ariasessentials:block/dirty_blue_pool_tile_slab" + }, + "type=double": { + "model": "ariasessentials:block/dirty_blue_pool_tile" + }, + "type=top": { + "model": "ariasessentials:block/dirty_blue_pool_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_stairs.json new file mode 100644 index 0000000..ed6b1d2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_wall.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_wall.json new file mode 100644 index 0000000..4412e55 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/dirty_blue_pool_tile_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_blue_pool_tile_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_blue_pool_tile_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_blue_pool_tile_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_blue_pool_tile_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_blue_pool_tile_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_blue_pool_tile_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_blue_pool_tile_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_blue_pool_tile_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_light.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_light.json new file mode 100644 index 0000000..e3a46d7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dirty_green_pool_light" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile.json new file mode 100644 index 0000000..0a4862e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dirty_green_pool_tile" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_slab.json new file mode 100644 index 0000000..475582f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "ariasessentials:block/dirty_green_pool_tile_slab" + }, + "type=double": { + "model": "ariasessentials:block/dirty_green_pool_tile" + }, + "type=top": { + "model": "ariasessentials:block/dirty_green_pool_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_stairs.json new file mode 100644 index 0000000..7afe9fc --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_wall.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_wall.json new file mode 100644 index 0000000..23182e9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/dirty_green_pool_tile_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_green_pool_tile_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_green_pool_tile_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_green_pool_tile_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_green_pool_tile_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_green_pool_tile_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_green_pool_tile_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_green_pool_tile_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_green_pool_tile_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_light.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_light.json new file mode 100644 index 0000000..39fb67b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dirty_pool_light" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_tile.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_tile.json new file mode 100644 index 0000000..04a7908 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dirty_pool_tile" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_tile_slab.json new file mode 100644 index 0000000..2f1b5b6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "ariasessentials:block/dirty_pool_tile_slab" + }, + "type=double": { + "model": "ariasessentials:block/dirty_pool_tile" + }, + "type=top": { + "model": "ariasessentials:block/dirty_pool_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_tile_stairs.json new file mode 100644 index 0000000..9c344d4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_pool_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_pool_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_pool_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_pool_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_pool_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_tile_wall.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_tile_wall.json new file mode 100644 index 0000000..e769d48 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_tile_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/dirty_pool_tile_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_pool_tile_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_pool_tile_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_pool_tile_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_pool_tile_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_pool_tile_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_pool_tile_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_pool_tile_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_pool_tile_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_light.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_light.json new file mode 100644 index 0000000..a3621c2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dirty_red_pool_light" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile.json new file mode 100644 index 0000000..463ad22 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dirty_red_pool_tile" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_slab.json new file mode 100644 index 0000000..7a10e52 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "ariasessentials:block/dirty_red_pool_tile_slab" + }, + "type=double": { + "model": "ariasessentials:block/dirty_red_pool_tile" + }, + "type=top": { + "model": "ariasessentials:block/dirty_red_pool_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_stairs.json new file mode 100644 index 0000000..1560aaf --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_wall.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_wall.json new file mode 100644 index 0000000..1dd59bd --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/dirty_red_pool_tile_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_red_pool_tile_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_red_pool_tile_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_red_pool_tile_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_red_pool_tile_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_red_pool_tile_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_red_pool_tile_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_red_pool_tile_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_red_pool_tile_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/eternium_block.json b/src/main/resources/assets/ariasessentials/blockstates/eternium_block.json new file mode 100644 index 0000000..3cf3d7a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/eternium_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/eternium_block" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/eternium_ore_block.json b/src/main/resources/assets/ariasessentials/blockstates/eternium_ore_block.json new file mode 100644 index 0000000..200aca7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/eternium_ore_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/eternium_ore_block" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/filthy_blue_pool_light.json b/src/main/resources/assets/ariasessentials/blockstates/filthy_blue_pool_light.json new file mode 100644 index 0000000..eb45c06 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/filthy_blue_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/filthy_blue_pool_light" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/filthy_green_pool_light.json b/src/main/resources/assets/ariasessentials/blockstates/filthy_green_pool_light.json new file mode 100644 index 0000000..56ea249 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/filthy_green_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/filthy_green_pool_light" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/filthy_pool_light.json b/src/main/resources/assets/ariasessentials/blockstates/filthy_pool_light.json new file mode 100644 index 0000000..eaf2bff --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/filthy_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/filthy_pool_light" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/filthy_red_pool_light.json b/src/main/resources/assets/ariasessentials/blockstates/filthy_red_pool_light.json new file mode 100644 index 0000000..6c66181 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/filthy_red_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/filthy_red_pool_light" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/green_pool_light.json b/src/main/resources/assets/ariasessentials/blockstates/green_pool_light.json new file mode 100644 index 0000000..5b4d3b0 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/green_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/green_pool_light" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/green_pool_tile.json b/src/main/resources/assets/ariasessentials/blockstates/green_pool_tile.json new file mode 100644 index 0000000..f20c044 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/green_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/green_pool_tile" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/green_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/blockstates/green_pool_tile_slab.json new file mode 100644 index 0000000..a4d9c0f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/green_pool_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "ariasessentials:block/green_pool_tile_slab" + }, + "type=double": { + "model": "ariasessentials:block/green_pool_tile" + }, + "type=top": { + "model": "ariasessentials:block/green_pool_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/green_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/green_pool_tile_stairs.json new file mode 100644 index 0000000..a9fbe82 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/green_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/green_pool_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/green_pool_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/green_pool_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/green_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/green_pool_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/green_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/green_pool_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/green_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/green_pool_tile_wall.json b/src/main/resources/assets/ariasessentials/blockstates/green_pool_tile_wall.json new file mode 100644 index 0000000..78f64c4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/green_pool_tile_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/green_pool_tile_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/green_pool_tile_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/green_pool_tile_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/green_pool_tile_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/green_pool_tile_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/green_pool_tile_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/green_pool_tile_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/green_pool_tile_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/green_pool_tile_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/nether_vault_steel_ore_block.json b/src/main/resources/assets/ariasessentials/blockstates/nether_vault_steel_ore_block.json new file mode 100644 index 0000000..cfb17f7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/nether_vault_steel_ore_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/nether_vault_steel_ore_block" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/old_industrial_wood_door.json b/src/main/resources/assets/ariasessentials/blockstates/old_industrial_wood_door.json new file mode 100644 index 0000000..42563b0 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/old_industrial_wood_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/old_industrial_wood_planks.json b/src/main/resources/assets/ariasessentials/blockstates/old_industrial_wood_planks.json new file mode 100644 index 0000000..5419f88 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/old_industrial_wood_planks.json @@ -0,0 +1,18 @@ +{ + "variants": { + "": [ + { + "model": "ariasessentials:block/old_industrial_wood_planks_model0" + }, + { + "model": "ariasessentials:block/old_industrial_wood_planks_model1" + }, + { + "model": "ariasessentials:block/old_industrial_wood_planks_model2" + }, + { + "model": "ariasessentials:block/old_industrial_wood_planks_model3" + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/old_industrial_wood_slab.json b/src/main/resources/assets/ariasessentials/blockstates/old_industrial_wood_slab.json new file mode 100644 index 0000000..bff1e69 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/old_industrial_wood_slab.json @@ -0,0 +1,88 @@ +{ + "variants": { + "type=bottom,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model3_bottom" + } + ], + "type=bottom,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model3_bottom" + } + ], + "type=double,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_slab_model0_double" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model1_double" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model2_double" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model3_double" + } + ], + "type=double,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_slab_model0_double" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model1_double" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model2_double" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model3_double" + } + ], + "type=top,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_slab_model0_top" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model1_top" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model2_top" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model3_top" + } + ], + "type=top,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_slab_model0_top" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model1_top" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model2_top" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model3_top" + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/old_industrial_wood_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/old_industrial_wood_stairs.json new file mode 100644 index 0000000..d689f7f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/old_industrial_wood_stairs.json @@ -0,0 +1,1804 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner" + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner" + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer" + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3" + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner" + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner" + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer" + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer" + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/panzerglass_block.json b/src/main/resources/assets/ariasessentials/blockstates/panzerglass_block.json new file mode 100644 index 0000000..428aee3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/panzerglass_block.json @@ -0,0 +1,18 @@ +{ + "variants": { + "": [ + { + "model": "ariasessentials:block/panzerglass_block_model0" + }, + { + "model": "ariasessentials:block/panzerglass_block_model1" + }, + { + "model": "ariasessentials:block/panzerglass_block_model2" + }, + { + "model": "ariasessentials:block/panzerglass_block_model3" + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/panzerglass_slab.json b/src/main/resources/assets/ariasessentials/blockstates/panzerglass_slab.json new file mode 100644 index 0000000..35035f2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/panzerglass_slab.json @@ -0,0 +1,88 @@ +{ + "variants": { + "type=bottom,waterlogged=false": [ + { + "model": "ariasessentials:block/panzerglass_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model3_bottom" + } + ], + "type=bottom,waterlogged=true": [ + { + "model": "ariasessentials:block/panzerglass_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model3_bottom" + } + ], + "type=double,waterlogged=false": [ + { + "model": "ariasessentials:block/panzerglass_slab_model0_double" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model1_double" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model2_double" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model3_double" + } + ], + "type=double,waterlogged=true": [ + { + "model": "ariasessentials:block/panzerglass_slab_model0_double" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model1_double" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model2_double" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model3_double" + } + ], + "type=top,waterlogged=false": [ + { + "model": "ariasessentials:block/panzerglass_slab_model0_top" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model1_top" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model2_top" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model3_top" + } + ], + "type=top,waterlogged=true": [ + { + "model": "ariasessentials:block/panzerglass_slab_model0_top" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model1_top" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model2_top" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model3_top" + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/pool_light.json b/src/main/resources/assets/ariasessentials/blockstates/pool_light.json new file mode 100644 index 0000000..2e4139f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/pool_light" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/pool_tile.json b/src/main/resources/assets/ariasessentials/blockstates/pool_tile.json new file mode 100644 index 0000000..7c84b59 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/pool_tile" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/pool_tile_slab.json b/src/main/resources/assets/ariasessentials/blockstates/pool_tile_slab.json new file mode 100644 index 0000000..b06dc83 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/pool_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "ariasessentials:block/pool_tile_slab" + }, + "type=double": { + "model": "ariasessentials:block/pool_tile" + }, + "type=top": { + "model": "ariasessentials:block/pool_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/pool_tile_stairs.json new file mode 100644 index 0000000..23fd6c1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/pool_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/pool_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/pool_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/pool_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/pool_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/pool_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/pool_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/pool_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/pool_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/pool_tile_wall.json b/src/main/resources/assets/ariasessentials/blockstates/pool_tile_wall.json new file mode 100644 index 0000000..6fd26fe --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/pool_tile_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/pool_tile_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/pool_tile_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/pool_tile_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/pool_tile_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/pool_tile_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/pool_tile_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/pool_tile_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/pool_tile_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/pool_tile_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/raw_cobalt_ore.json b/src/main/resources/assets/ariasessentials/blockstates/raw_cobalt_ore.json new file mode 100644 index 0000000..93f5f3d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/raw_cobalt_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/raw_cobalt_ore" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete.json b/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete.json new file mode 100644 index 0000000..7012fe4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete.json @@ -0,0 +1,30 @@ +{ + "variants": { + "": [ + { + "model": "ariasessentials:block/rebar_concrete_model0" + }, + { + "model": "ariasessentials:block/rebar_concrete_model1" + }, + { + "model": "ariasessentials:block/rebar_concrete_model2" + }, + { + "model": "ariasessentials:block/rebar_concrete_model3" + }, + { + "model": "ariasessentials:block/rebar_concrete_model4" + }, + { + "model": "ariasessentials:block/rebar_concrete_model5" + }, + { + "model": "ariasessentials:block/rebar_concrete_model6" + }, + { + "model": "ariasessentials:block/rebar_concrete_model7" + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_slab.json b/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_slab.json new file mode 100644 index 0000000..7468bbe --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_slab.json @@ -0,0 +1,160 @@ +{ + "variants": { + "type=bottom,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model7_bottom" + } + ], + "type=bottom,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model7_bottom" + } + ], + "type=double,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_slab_model0_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model1_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model2_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model3_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model4_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model5_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model6_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model7_double" + } + ], + "type=double,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_slab_model0_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model1_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model2_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model3_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model4_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model5_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model6_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model7_double" + } + ], + "type=top,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_slab_model0_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model1_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model2_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model3_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model4_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model5_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model6_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model7_top" + } + ], + "type=top,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_slab_model0_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model1_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model2_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model3_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model4_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model5_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model6_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model7_top" + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_stairs.json new file mode 100644 index 0000000..bb03138 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_stairs.json @@ -0,0 +1,3444 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7" + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_tile.json b/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_tile.json new file mode 100644 index 0000000..5c1db84 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_tile.json @@ -0,0 +1,30 @@ +{ + "variants": { + "": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_model0" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_model1" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_model2" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_model3" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_model4" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_model5" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_model6" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_model7" + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_tile_slab.json b/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_tile_slab.json new file mode 100644 index 0000000..d4ce6d0 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_tile_slab.json @@ -0,0 +1,160 @@ +{ + "variants": { + "type=bottom,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model7_bottom" + } + ], + "type=bottom,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model7_bottom" + } + ], + "type=double,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model0_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model1_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model2_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model3_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model4_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model5_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model6_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model7_double" + } + ], + "type=double,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model0_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model1_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model2_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model3_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model4_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model5_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model6_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model7_double" + } + ], + "type=top,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model0_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model1_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model2_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model3_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model4_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model5_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model6_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model7_top" + } + ], + "type=top,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model0_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model1_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model2_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model3_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model4_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model5_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model6_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model7_top" + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_tile_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_tile_stairs.json new file mode 100644 index 0000000..c0e5399 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_tile_stairs.json @@ -0,0 +1,3444 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7" + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_wall.json b/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_wall.json new file mode 100644 index 0000000..87da187 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/rebar_concrete_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/rebar_concrete_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/rebar_concrete_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/rebar_concrete_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/rebar_concrete_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/rebar_concrete_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/rebar_concrete_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/rebar_concrete_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/rebar_concrete_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/red_pool_light.json b/src/main/resources/assets/ariasessentials/blockstates/red_pool_light.json new file mode 100644 index 0000000..a29ae57 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/red_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/red_pool_light" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/red_pool_tile.json b/src/main/resources/assets/ariasessentials/blockstates/red_pool_tile.json new file mode 100644 index 0000000..a555bcd --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/red_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/red_pool_tile" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/red_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/blockstates/red_pool_tile_slab.json new file mode 100644 index 0000000..cf0eac2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/red_pool_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "ariasessentials:block/red_pool_tile_slab" + }, + "type=double": { + "model": "ariasessentials:block/red_pool_tile" + }, + "type=top": { + "model": "ariasessentials:block/red_pool_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/red_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/red_pool_tile_stairs.json new file mode 100644 index 0000000..90760ed --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/red_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/red_pool_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/red_pool_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/red_pool_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/red_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/red_pool_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/red_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/red_pool_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/red_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/red_pool_tile_wall.json b/src/main/resources/assets/ariasessentials/blockstates/red_pool_tile_wall.json new file mode 100644 index 0000000..15f8a13 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/red_pool_tile_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/red_pool_tile_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/red_pool_tile_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/red_pool_tile_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/red_pool_tile_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/red_pool_tile_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/red_pool_tile_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/red_pool_tile_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/red_pool_tile_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/red_pool_tile_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/red_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/red_stairs.json new file mode 100644 index 0000000..2078bf3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/red_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/red_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/red_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/red_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/red_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/red_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/red_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/red_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/red_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/red_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/red_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/red_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/red_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/red_tile.json b/src/main/resources/assets/ariasessentials/blockstates/red_tile.json new file mode 100644 index 0000000..128ecac --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/red_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/red_tile" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/red_tile_br.json b/src/main/resources/assets/ariasessentials/blockstates/red_tile_br.json new file mode 100644 index 0000000..5984fc4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/red_tile_br.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "ariasessentials:block/red_tile_br", + "y": 90 + }, + "facing=north": { + "model": "ariasessentials:block/red_tile_br" + }, + "facing=south": { + "model": "ariasessentials:block/red_tile_br", + "y": 180 + }, + "facing=west": { + "model": "ariasessentials:block/red_tile_br", + "y": 270 + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/red_tile_to_wall.json b/src/main/resources/assets/ariasessentials/blockstates/red_tile_to_wall.json new file mode 100644 index 0000000..d9c4f1b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/red_tile_to_wall.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/red_tile_to_wall" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/red_wall_variant_1.json b/src/main/resources/assets/ariasessentials/blockstates/red_wall_variant_1.json new file mode 100644 index 0000000..deabbc2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/red_wall_variant_1.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/red_wall_variant_1" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/red_wall_variant_2.json b/src/main/resources/assets/ariasessentials/blockstates/red_wall_variant_2.json new file mode 100644 index 0000000..08ccfe9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/red_wall_variant_2.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/red_wall_variant_2" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/slag_brick_block.json b/src/main/resources/assets/ariasessentials/blockstates/slag_brick_block.json new file mode 100644 index 0000000..0efb300 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/slag_brick_block.json @@ -0,0 +1,30 @@ +{ + "variants": { + "": [ + { + "model": "ariasessentials:block/slag_brick_block_model0" + }, + { + "model": "ariasessentials:block/slag_brick_block_model1" + }, + { + "model": "ariasessentials:block/slag_brick_block_model2" + }, + { + "model": "ariasessentials:block/slag_brick_block_model3" + }, + { + "model": "ariasessentials:block/slag_brick_block_model4" + }, + { + "model": "ariasessentials:block/slag_brick_block_model5" + }, + { + "model": "ariasessentials:block/slag_brick_block_model6" + }, + { + "model": "ariasessentials:block/slag_brick_block_model7" + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/slag_brick_slab.json b/src/main/resources/assets/ariasessentials/blockstates/slag_brick_slab.json new file mode 100644 index 0000000..3418db0 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/slag_brick_slab.json @@ -0,0 +1,160 @@ +{ + "variants": { + "type=bottom,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model7_bottom" + } + ], + "type=bottom,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model7_bottom" + } + ], + "type=double,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_slab_model0_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model1_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model2_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model3_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model4_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model5_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model6_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model7_double" + } + ], + "type=double,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_slab_model0_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model1_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model2_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model3_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model4_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model5_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model6_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model7_double" + } + ], + "type=top,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_slab_model0_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model1_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model2_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model3_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model4_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model5_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model6_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model7_top" + } + ], + "type=top,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_slab_model0_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model1_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model2_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model3_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model4_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model5_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model6_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model7_top" + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/slag_brick_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/slag_brick_stairs.json new file mode 100644 index 0000000..a88b91e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/slag_brick_stairs.json @@ -0,0 +1,3444 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7" + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/slag_brick_wall.json b/src/main/resources/assets/ariasessentials/blockstates/slag_brick_wall.json new file mode 100644 index 0000000..d9428b0 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/slag_brick_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/slag_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/slag_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/slag_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/slag_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/slag_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/slag_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/slag_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/slag_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/slag_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/stable_singularity.json b/src/main/resources/assets/ariasessentials/blockstates/stable_singularity.json new file mode 100644 index 0000000..a0b6595 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/stable_singularity.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/stable_singularity" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk.json b/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk.json new file mode 100644 index 0000000..86405c8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/steel_catwalk" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_block.json b/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_block.json new file mode 100644 index 0000000..ea65aec --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/steel_catwalk_block" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_stairs.json new file mode 100644 index 0000000..bee5822 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_stairs.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "ariasessentials:block/steel_catwalk_stairs", + "y": 90 + }, + "facing=north": { + "model": "ariasessentials:block/steel_catwalk_stairs" + }, + "facing=south": { + "model": "ariasessentials:block/steel_catwalk_stairs", + "y": 180 + }, + "facing=west": { + "model": "ariasessentials:block/steel_catwalk_stairs", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_stairs_dr.json b/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_stairs_dr.json new file mode 100644 index 0000000..d15acf8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_stairs_dr.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "ariasessentials:block/steel_catwalk_stairs_dr", + "y": 90 + }, + "facing=north": { + "model": "ariasessentials:block/steel_catwalk_stairs_dr" + }, + "facing=south": { + "model": "ariasessentials:block/steel_catwalk_stairs_dr", + "y": 180 + }, + "facing=west": { + "model": "ariasessentials:block/steel_catwalk_stairs_dr", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_stairs_lr.json b/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_stairs_lr.json new file mode 100644 index 0000000..3f51057 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_stairs_lr.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "ariasessentials:block/steel_catwalk_stairs_lr", + "y": 90 + }, + "facing=north": { + "model": "ariasessentials:block/steel_catwalk_stairs_lr" + }, + "facing=south": { + "model": "ariasessentials:block/steel_catwalk_stairs_lr", + "y": 180 + }, + "facing=west": { + "model": "ariasessentials:block/steel_catwalk_stairs_lr", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_stairs_rr.json b/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_stairs_rr.json new file mode 100644 index 0000000..eb2f94c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_stairs_rr.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "ariasessentials:block/steel_catwalk_stairs_rr", + "y": 90 + }, + "facing=north": { + "model": "ariasessentials:block/steel_catwalk_stairs_rr" + }, + "facing=south": { + "model": "ariasessentials:block/steel_catwalk_stairs_rr", + "y": 180 + }, + "facing=west": { + "model": "ariasessentials:block/steel_catwalk_stairs_rr", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_top.json b/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_top.json new file mode 100644 index 0000000..8f1b5f1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_top.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/steel_catwalk_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/steel_floor_grating.json b/src/main/resources/assets/ariasessentials/blockstates/steel_floor_grating.json new file mode 100644 index 0000000..7ef2258 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/steel_floor_grating.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/steel_floor_grating" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/steel_floor_grating_top.json b/src/main/resources/assets/ariasessentials/blockstates/steel_floor_grating_top.json new file mode 100644 index 0000000..c5d3a30 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/steel_floor_grating_top.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/steel_floor_grating_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/steel_railing.json b/src/main/resources/assets/ariasessentials/blockstates/steel_railing.json new file mode 100644 index 0000000..601a976 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/steel_railing.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "ariasessentials:block/steel_railing", + "y": 90 + }, + "facing=north": { + "model": "ariasessentials:block/steel_railing" + }, + "facing=south": { + "model": "ariasessentials:block/steel_railing", + "y": 180 + }, + "facing=west": { + "model": "ariasessentials:block/steel_railing", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/steel_table.json b/src/main/resources/assets/ariasessentials/blockstates/steel_table.json new file mode 100644 index 0000000..dc85544 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/steel_table.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/steel_table" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/tflipflop.json b/src/main/resources/assets/ariasessentials/blockstates/tflipflop.json new file mode 100644 index 0000000..fcf17b7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/tflipflop.json @@ -0,0 +1,64 @@ +{ + "variants": { + "facing=east,inputpower=false,powered=false": { + "model": "ariasessentials:block/tflipflop", + "y": 90 + }, + "facing=east,inputpower=false,powered=true": { + "model": "ariasessentials:block/tflipflop", + "y": 90 + }, + "facing=east,inputpower=true,powered=false": { + "model": "ariasessentials:block/tflipflop", + "y": 90 + }, + "facing=east,inputpower=true,powered=true": { + "model": "ariasessentials:block/tflipflop", + "y": 90 + }, + "facing=north,inputpower=false,powered=false": { + "model": "ariasessentials:block/tflipflop" + }, + "facing=north,inputpower=false,powered=true": { + "model": "ariasessentials:block/tflipflop" + }, + "facing=north,inputpower=true,powered=false": { + "model": "ariasessentials:block/tflipflop" + }, + "facing=north,inputpower=true,powered=true": { + "model": "ariasessentials:block/tflipflop" + }, + "facing=south,inputpower=false,powered=false": { + "model": "ariasessentials:block/tflipflop", + "y": 180 + }, + "facing=south,inputpower=false,powered=true": { + "model": "ariasessentials:block/tflipflop", + "y": 180 + }, + "facing=south,inputpower=true,powered=false": { + "model": "ariasessentials:block/tflipflop", + "y": 180 + }, + "facing=south,inputpower=true,powered=true": { + "model": "ariasessentials:block/tflipflop", + "y": 180 + }, + "facing=west,inputpower=false,powered=false": { + "model": "ariasessentials:block/tflipflop", + "y": 270 + }, + "facing=west,inputpower=false,powered=true": { + "model": "ariasessentials:block/tflipflop", + "y": 270 + }, + "facing=west,inputpower=true,powered=false": { + "model": "ariasessentials:block/tflipflop", + "y": 270 + }, + "facing=west,inputpower=true,powered=true": { + "model": "ariasessentials:block/tflipflop", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/uncrafter.json b/src/main/resources/assets/ariasessentials/blockstates/uncrafter.json new file mode 100644 index 0000000..5ece9cf --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/uncrafter.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "ariasessentials:block/uncrafter", + "y": 90 + }, + "facing=north": { + "model": "ariasessentials:block/uncrafter" + }, + "facing=south": { + "model": "ariasessentials:block/uncrafter", + "y": 180 + }, + "facing=west": { + "model": "ariasessentials:block/uncrafter", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/vault_steel_ore_block.json b/src/main/resources/assets/ariasessentials/blockstates/vault_steel_ore_block.json new file mode 100644 index 0000000..f5fbccf --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/vault_steel_ore_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/vault_steel_ore_block" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/void.json b/src/main/resources/assets/ariasessentials/blockstates/void.json new file mode 100644 index 0000000..171175b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/void.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/void" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/whiteout.json b/src/main/resources/assets/ariasessentials/blockstates/whiteout.json new file mode 100644 index 0000000..4e4afee --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/whiteout.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/whiteout" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/lang/en_us.json b/src/main/resources/assets/ariasessentials/lang/en_us.json index 260d8c2..f2da4d7 100644 --- a/src/main/resources/assets/ariasessentials/lang/en_us.json +++ b/src/main/resources/assets/ariasessentials/lang/en_us.json @@ -1,50 +1,165 @@ { - "itemGroup.tabs.ariasessentials": "Aria's Essentials", - "item.ariasessentials.tiab": "Time in a Bottle", - "item.ariasessentials.eiab": "Energy in a Bottle", - "item.ariasessentials.metal_bar": "Metal Bar", + + "key.ariasessentials.open_vault": "Opens Vault 0", + "key.category.ariasessentials": "Aria's Essentials", + + "itemGroup.ariasessentials": "Aria's Essentials", + + "item.minecraft.splash_potion.effect.flight": "Splash Potion of Flight", + "item.minecraft.lingering_potion.effect.flight": "Lingering Potion of Flight", + "item.minecraft.potion.effect.flight": "Potion of Flight", + + "item.minecraft.splash_potion.effect.flight_awkward": "Awkward Splash Potion of Flight", + "item.minecraft.lingering_potion.effect.flight_awkward": "Awkward Lingering Potion of Flight", + "item.minecraft.potion.effect.flight_awkward": "Awkward Potion of Flight", + + "item.minecraft.splash_potion.effect.flight_basic": "Thick Splash Potion of Flight", + "item.minecraft.lingering_potion.effect.flight_basic": "Thick Lingering Potion of Flight", + "item.minecraft.potion.effect.flight_basic": "Thick Potion of Flight", - "block.ariasessentials.clinker_brick_block": "Clinker Brick Block", - "block.ariasessentials.clinker_brick_wall": "Clinker Brick Wall", - "block.ariasessentials.clinker_brick_recessed": "Recessed Clinker Brick", - "block.ariasessentials.clinker_brick_vertically_slit": "Vertically Slit Clinker Bricks", - "block.ariasessentials.clinker_brick_slab": "Clinker Brick Slab", - "block.ariasessentials.clinker_brick_stairs": "Clinker Brick Stairs", - "block.ariasessentials.clinker_brick_stained_block": "Stained Clinker Brick Block", - "block.ariasessentials.clinker_brick_stained_slab": "Stained Clinker Brick Slab", - "block.ariasessentials.clinker_brick_stained_stairs": "Stained Clinker Brick Stairs", - "block.ariasessentials.clinker_brick_sastor_corner_block": "Sandstone Ornated Clinker Brick", - "block.ariasessentials.slag_brick_block": "Slag Brick Block", - "block.ariasessentials.slag_brick_slab": "Slag Brick Slab", - "block.ariasessentials.slag_brick_stairs": "Slag Brick Stairs", - "block.ariasessentials.slag_brick_wall": "Slag Brick Wall", - "block.ariasessentials.rebar_concrete": "Rebar Concrete Block", + "item.ariasessentials.eternium_ore": "Raw Eternium Ore", + "item.ariasessentials.ihan_crystal": "Ihan Crystal", + "item.ariasessentials.ihan_crystal.levels": "Stored XP: ", + "item.ariasessentials.ihan_crystal.empty": "* Crystal Is Empty *", + "item.ariasessentials.ihan_crystal.need_repair": "Ihan Crystal must now be repaired", + "item.ariasessentials.ihan_crystal.durability": "Durability: ", + "item.ariasessentials.eternium_dust": "Eternium Dust", + "item.ariasessentials.eternium_ingot": "Eternium Ingot", + "item.ariasessentials.eternium_rod": "Eternium Rod", + "item.ariasessentials.singularity": "Unstable Singularity", + "item.ariasessentials.scrubber_frame_piece": "Scrubber Frame Component", + "item.ariasessentials.scrubber_frame": "Scrubber Frame", + "item.ariasessentials.mob_capture_ball": "Mob Capture Ball", + "item.ariasessentials.empty_spawn_egg": "Empty Spawn Egg", + "item.ariasessentials.compressed_obsidian_sheet": "Sheet of Compressed Obsidian", + "item.ariasessentials.layered_compressed_obsidian_sheet": "Layered Sheet of Compressed Obsidian", + "item.ariasessentials.encased_singularity": "Encased Singularity", + "item.ariasessentials.encased_singularity.desc": "A singularity encased in stone, ready to be further compressed into bedrock", + "item.ariasessentials.deprecated": "Deprecated Item", + "item.ariasessentials.white_brick": "White Brick", + "item.ariasessentials.blue_brick": "Blue Brick", + "item.ariasessentials.light_blue_brick": "Light Blue Brick", + "item.ariasessentials.cyan_brick": "Cyan Brick", + "item.ariasessentials.dark_red_dye": "Dark Red Dye", + "item.ariasessentials.red_brick": "Red Brick", + "item.ariasessentials.dark_red_brick": "Dark Red Brick", + "item.ariasessentials.lime_brick": "Lime Brick", + "item.ariasessentials.green_brick": "Green Brick", + "item.ariasessentials.partial_item": "Partial Item", + "item.ariasessentials.magma_powder": "Magma Powder", + + + + "block.ariasessentials.eternium_ore_block": "Eternium Ore", + "block.ariasessentials.deepslate_eternium_ore_block": "Deepslate Eternium Ore", + "block.ariasessentials.clear_glass_block": "Clear Glass Block", + "block.ariasessentials.eternium_block": "Block of Eternium", + "block.ariasessentials.void": "Void", + "block.ariasessentials.whiteout": "White", + "block.ariasessentials.blood_red": "Blood Red", + "block.ariasessentials.red_tile": "Red Tile", + "block.ariasessentials.red_tile_br": "Blood Red Tile Transition", + "block.ariasessentials.red_stairs": "Blood Red Stairs", + "block.ariasessentials.red_tile_to_wall": "Red Floor To Wall Transition", + "block.ariasessentials.red_wall_variant_1": "Red Wall", + "block.ariasessentials.red_wall_variant_2": "Red Wall", + "block.ariasessentials.cyan": "Cyan", + "block.ariasessentials.cyan_tile": "Cyan Tile", + "block.ariasessentials.cyan_tile_br": "Cyan Tile Transition", + "block.ariasessentials.cyan_stairs": "Cyan Stairs", + "block.ariasessentials.cyan_tile_to_wall": "Cyan Floor To Wall Transition", + "block.ariasessentials.cyan_wall_variant_1": "Cyan Wall", + "block.ariasessentials.cyan_wall_variant_2": "Cyan Wall", + "block.ariasessentials.pool_light": "Pool Light", + "block.ariasessentials.dirty_pool_light": "Dirty Pool Light", + "block.ariasessentials.filthy_pool_light": "Filthy Pool Light", + "block.ariasessentials.dark_pool_light": "Dark Pool Light", + "block.ariasessentials.blue_pool_light": "Blue Pool Light", + "block.ariasessentials.dirty_red_pool_light": "Dirty Red Pool Light", + "block.ariasessentials.filthy_red_pool_light": "Filthy Red Pool Light", + "block.ariasessentials.filthy_blue_pool_light": "Filthy Blue Pool Light", + "block.ariasessentials.pool_tile": "Pool Tiles", + "block.ariasessentials.pool_tile_stairs": "Pool Tile Stairs", + "block.ariasessentials.pool_tile_slab": "Pool Tile Slab", + "block.ariasessentials.pool_tile_wall": "Pool Tile Wall", + "block.ariasessentials.dirty_pool_tile": "Dirty Pool Tiles", + "block.ariasessentials.dirty_pool_tile_stairs": "Dirty Pool Tile Stairs", + "block.ariasessentials.dirty_pool_tile_slab": "Dirty Pool Tile Slab", + "block.ariasessentials.dirty_pool_tile_wall": "Dirty Pool Tile Wall", + "block.ariasessentials.dark_pool_tile": "Dark Pool Tiles", + "block.ariasessentials.dark_pool_tile_stairs": "Dark Pool Tile Stairs", + "block.ariasessentials.dark_pool_tile_slab": "Dark Pool Tile Slab", + "block.ariasessentials.blue_pool_tile": "Blue Pool Tiles", + "block.ariasessentials.blue_pool_tile_stairs": "Blue Pool Tile Stairs", + "block.ariasessentials.blue_pool_tile_slab": "Blue Pool Tile Slab", + "block.ariasessentials.blue_pool_tile_wall": "Blue Pool Tile Wall", + "block.ariasessentials.dirty_blue_pool_tile": "Dirty Blue Pool Tiles", + "block.ariasessentials.dirty_blue_pool_tile_stairs": "Dirty Blue Pool Tile Stairs", + "block.ariasessentials.dirty_blue_pool_tile_slab": "Dirty Blue Pool Tile Slab", + "block.ariasessentials.dirty_blue_pool_tile_wall": "Dirty Blue Pool Tile Wall", + "block.ariasessentials.dirty_blue_pool_light": "Dirty Blue Pool Light", + "block.ariasessentials.red_pool_tile": "Red Pool Tiles", + "block.ariasessentials.red_pool_tile_stairs": "Red Pool Tile Stairs", + "block.ariasessentials.red_pool_tile_slab": "Red Pool Tile Slab", + "block.ariasessentials.red_pool_tile_wall": "Red Pool Tile Wall", + "block.ariasessentials.red_pool_light": "Red Pool Light", + "block.ariasessentials.dirty_red_pool_tile": "Dirty Red Pool Tile", + "block.ariasessentials.dirty_red_pool_tile_stairs": "Dirty Red Pool Tile Stairs", + "block.ariasessentials.dirty_red_pool_tile_slab": "Dirty Red Pool Tile Slab", + "block.ariasessentials.dirty_red_pool_tile_wall": "Dirty Red Pool Tile Wall", + "block.ariasessentials.dark_red_wool": "Dark Red Wool", + "block.ariasessentials.dark_red_carpet": "Dark Red Carpet", + "block.ariasessentials.green_pool_tile": "Green Pool Tiles", + "block.ariasessentials.green_pool_tile_stairs": "Green Pool Tile Stairs", + "block.ariasessentials.green_pool_tile_slab": "Green Pool Tile Slab", + "block.ariasessentials.green_pool_tile_wall": "Green Pool Tile Wall", + "block.ariasessentials.green_pool_light": "Green Pool Light", + "block.ariasessentials.dirty_green_pool_tile": "Dirty Green Pool Tile", + "block.ariasessentials.dirty_green_pool_tile_stairs": "Dirty Green Pool Tile Stairs", + "block.ariasessentials.dirty_green_pool_tile_slab": "Dirty Green Pool Tile Slab", + "block.ariasessentials.dirty_green_pool_tile_wall": "Dirty Green Pool Tile Wall", + "block.ariasessentials.dirty_green_pool_light": "Dirty Green Pool Light", + "block.ariasessentials.filthy_green_pool_light": "Filthy Green Pool Light", + "block.ariasessentials.uncrafter": "Uncrafter", + "block.ariasessentials.rebar_concrete": "Rebar Concrete", "block.ariasessentials.rebar_concrete_slab": "Rebar Concrete Slab", "block.ariasessentials.rebar_concrete_stairs": "Rebar Concrete Stairs", - "block.ariasessentials.rebar_concrete_tile": "Rebar Concrete Tile", - "block.ariasessentials.rebar_concrete_tile_slab": "Rebar Concrete Tile Slab", - "block.ariasessentials.rebar_concrete_tile_stairs": "Rebar Concrete Tile Stairs", "block.ariasessentials.rebar_concrete_wall": "Rebar Concrete Wall", - "block.ariasessentials.panzerglass_block": "Panzer Glass Block", - "block.ariasessentials.panzerglass_slab": "Panzer Glass Slab", - "block.ariasessentials.old_industrial_wood_door": "Old Industrial Wood Door", - "block.ariasessentials.old_industrial_wood_planks": "Old Industrial Wood Planks", - "block.ariasessentials.old_industrial_wood_slab": "Old Industrial Wood Slab", - "block.ariasessentials.old_industrial_wood_stairs": "Old Industrial Wood Stairs", - "block.ariasessentials.steel_floor_grating": "Steel Floor Grating", - "block.ariasessentials.steel_table": "Steel Table", - "block.ariasessentials.steel_catwalk": "Steel Catwalk", - "block.ariasessentials.steel_catwalk_top": "Top Oriented Steel Catwalk", - "block.ariasessentials.steel_railing": "Steel Railing", - "block.ariasessentials.steel_catwalk_stairs": "Steel Catwalk Stairs", - "block.ariasessentials.steel_catwalk_stairs_lr": "Steel Catwalk Left Rail", - "block.ariasessentials.steel_catwalk_stairs_rr": "Steel Catwalk Right Rail", - "block.ariasessentials.steel_catwalk_stairs_dr": "Steel Catwalk Double Rail", - "block.ariasessentials.steel_catwalk_block": "Steel Catwalk Block", - "block.ariasessentials.tflipflop": "T-Flip Flop (WIP)", + "block.ariasessentials.panzerglass_block": "Panzerglass", - "key.category.ariasessentials": "Aria's Essentials", - "key.ariasessentials.autowalk": "Auto Walk" -} \ No newline at end of file + + + "enchantment.ariasessentials.mob_egging": "Mob Egging", + "enchantment.ariasessentials.player_flight": "Flight", + "enchantment.ariasessentials.mob_egging.desc": "Chance of mob spawn eggs to drop", + "enchantment.ariasessentials.flight.desc": "Allows you to fly!", + "enchantment.ariasessentials.borrowed_protection": "Borrowed Protection", + "enchantment.ariasessentials.borrowed_protection.desc": "Borrows protection from any nearby player.", + "enchantment.ariasessentials.night_vision": "Night Vision", + "enchantment.ariasessentials.night_vision.desc": "See in the dark!", + "enchantment.ariasessentials.water_breathing": "Water Breathing", + "enchantment.ariasessentials.water_breathing.desc": "Become one with the fishy", + "enchantment.ariasessentials.consumption_mending": "Scrap Mending", + "enchantment.ariasessentials.consumption_mending.desc": "Consumes scrap items to repair durability. May consume curses.", + "enchantment.ariasessentials.extra_strength": "WIP Damage Increaser", + "enchantment.ariasessentials.extra_strength.desc": "Exponentially increases the damage dealt to enemies to even the odds", + "enchantment.ariasessentials.vampiric_mend": "Vampiric Mending", + "enchantment.ariasessentials.vampiric_mend.desc": "Exchanges half a heart of HP in exchange for 50 durability every 5 seconds. Caution: May kill you...repeatedly", + + "effect.ariasessentials.flight": "Flight", + + + "dev.zontreck.ariasessentials.msgs.only_player": "§cOnly players are allowed to execute this command", + + "dev.zontreck.ariasessentials.msgs.command_cooling_down": "This command is currently on cooldown. You must wait for ", + "dev.zontreck.ariasessentials.msgs.command_cooling_down_seconds": "seconds.", + + "dev.zontreck.ariasessentials.msgs.warps.set.success": "Warp successfully created", + "dev.zontreck.ariasessentials.msgs.warps.del.success": "Warp successfully deleted", + "dev.zontreck.ariasessentials.msgs.warps.set.fail": "Failed to create warp", + "dev.zontreck.ariasessentials.msgs.warps.del.fail": "Failed to delete warp", + + "death.attack.vampiric_mend": "%1$s's health was drained by a Vampiric item" +} diff --git a/src/main/resources/assets/ariasessentials/models/block/blood_red.json b/src/main/resources/assets/ariasessentials/models/block/blood_red.json new file mode 100644 index 0000000..c54b731 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/blood_red.json @@ -0,0 +1,6 @@ +{ + "parent": "ariasessentials:block/fb/cube", + "textures": { + "all": "ariasessentials:block/thresholds/blood_red" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/blue_pool_light.json b/src/main/resources/assets/ariasessentials/models/block/blue_pool_light.json new file mode 100644 index 0000000..14a2016 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/blue_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/blue_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile.json b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile.json new file mode 100644 index 0000000..5113788 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_slab.json new file mode 100644 index 0000000..93be66c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/blue_pool_tile", + "side": "ariasessentials:block/blue_pool_tile", + "top": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_slab_top.json b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_slab_top.json new file mode 100644 index 0000000..926613b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/blue_pool_tile", + "side": "ariasessentials:block/blue_pool_tile", + "top": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs.json new file mode 100644 index 0000000..9b82c86 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/blue_pool_tile", + "side": "ariasessentials:block/blue_pool_tile", + "top": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs_inner.json b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs_inner.json new file mode 100644 index 0000000..df7ce35 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/blue_pool_tile", + "side": "ariasessentials:block/blue_pool_tile", + "top": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs_outer.json b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs_outer.json new file mode 100644 index 0000000..2afe8a7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/blue_pool_tile", + "side": "ariasessentials:block/blue_pool_tile", + "top": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_inventory.json b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_inventory.json new file mode 100644 index 0000000..39b93ed --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_post.json b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_post.json new file mode 100644 index 0000000..aa9f228 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_side.json b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_side.json new file mode 100644 index 0000000..29c8e53 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_side_tall.json b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_side_tall.json new file mode 100644 index 0000000..65ed440 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model0.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model0.json new file mode 100644 index 0000000..5639f9e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model1.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model1.json new file mode 100644 index 0000000..7b24bb9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model2.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model2.json new file mode 100644 index 0000000..d9c7e35 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model3.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model3.json new file mode 100644 index 0000000..7ed0853 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model4.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model4.json new file mode 100644 index 0000000..bfb1fce --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model4.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model5.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model5.json new file mode 100644 index 0000000..90018f0 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model5.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model6.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model6.json new file mode 100644 index 0000000..abc1a0c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model6.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model7.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model7.json new file mode 100644 index 0000000..248faac --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model7.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_bottom.json new file mode 100644 index 0000000..4f1294a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_double.json new file mode 100644 index 0000000..5639f9e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_top.json new file mode 100644 index 0000000..3046906 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_bottom.json new file mode 100644 index 0000000..04d6bec --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_double.json new file mode 100644 index 0000000..7b24bb9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_top.json new file mode 100644 index 0000000..9c08f8e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_bottom.json new file mode 100644 index 0000000..7549029 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_double.json new file mode 100644 index 0000000..d9c7e35 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_top.json new file mode 100644 index 0000000..9802deb --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_bottom.json new file mode 100644 index 0000000..459b533 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_double.json new file mode 100644 index 0000000..7ed0853 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_top.json new file mode 100644 index 0000000..c7c04a4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_bottom.json new file mode 100644 index 0000000..7386123 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_double.json new file mode 100644 index 0000000..bfb1fce --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_top.json new file mode 100644 index 0000000..4057d97 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_bottom.json new file mode 100644 index 0000000..14ade17 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_double.json new file mode 100644 index 0000000..90018f0 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_top.json new file mode 100644 index 0000000..5724b69 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_bottom.json new file mode 100644 index 0000000..57c5265 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_double.json new file mode 100644 index 0000000..abc1a0c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_top.json new file mode 100644 index 0000000..88f360f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_bottom.json new file mode 100644 index 0000000..24c30f2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_double.json new file mode 100644 index 0000000..248faac --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_top.json new file mode 100644 index 0000000..572e869 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model0.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model0.json new file mode 100644 index 0000000..73fd6a5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model1.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model1.json new file mode 100644 index 0000000..6a6b419 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model2.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model2.json new file mode 100644 index 0000000..3ae29d7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model3.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model3.json new file mode 100644 index 0000000..1f8a32d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model4.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model4.json new file mode 100644 index 0000000..c6c2ec9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model4.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model5.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model5.json new file mode 100644 index 0000000..65f0007 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model5.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model6.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model6.json new file mode 100644 index 0000000..6a2f947 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model6.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model7.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model7.json new file mode 100644 index 0000000..8c03333 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model7.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_bottom.json new file mode 100644 index 0000000..7cfb79d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_double.json new file mode 100644 index 0000000..73fd6a5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_top.json new file mode 100644 index 0000000..8e13360 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_bottom.json new file mode 100644 index 0000000..47f8fee --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_double.json new file mode 100644 index 0000000..6a6b419 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_top.json new file mode 100644 index 0000000..7aee18d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_bottom.json new file mode 100644 index 0000000..313173f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_double.json new file mode 100644 index 0000000..3ae29d7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_top.json new file mode 100644 index 0000000..e7a64da --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_bottom.json new file mode 100644 index 0000000..7d87bbc --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_double.json new file mode 100644 index 0000000..1f8a32d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_top.json new file mode 100644 index 0000000..bd66adf --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_bottom.json new file mode 100644 index 0000000..3708403 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_double.json new file mode 100644 index 0000000..c6c2ec9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_top.json new file mode 100644 index 0000000..6100109 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_bottom.json new file mode 100644 index 0000000..3e95198 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_double.json new file mode 100644 index 0000000..65f0007 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_top.json new file mode 100644 index 0000000..b3d9261 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_bottom.json new file mode 100644 index 0000000..8777c3c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_double.json new file mode 100644 index 0000000..6a2f947 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_top.json new file mode 100644 index 0000000..70f6da3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_bottom.json new file mode 100644 index 0000000..ed88fb3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_double.json new file mode 100644 index 0000000..8c03333 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_top.json new file mode 100644 index 0000000..e868cfe --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0.json new file mode 100644 index 0000000..ab70c9b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0_inner.json new file mode 100644 index 0000000..3bc8f18 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0_outer.json new file mode 100644 index 0000000..fb41a7b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1.json new file mode 100644 index 0000000..88482c1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1_inner.json new file mode 100644 index 0000000..34fa07b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1_outer.json new file mode 100644 index 0000000..76f0ee4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2.json new file mode 100644 index 0000000..6ce14aa --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2_inner.json new file mode 100644 index 0000000..83a46db --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2_outer.json new file mode 100644 index 0000000..985759e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3.json new file mode 100644 index 0000000..72b8b28 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3_inner.json new file mode 100644 index 0000000..f150b0a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3_outer.json new file mode 100644 index 0000000..428a4c8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4.json new file mode 100644 index 0000000..ce81f14 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4_inner.json new file mode 100644 index 0000000..3810fc1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4_outer.json new file mode 100644 index 0000000..6dee365 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5.json new file mode 100644 index 0000000..0c39ff1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5_inner.json new file mode 100644 index 0000000..057026a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5_outer.json new file mode 100644 index 0000000..dd427ce --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6.json new file mode 100644 index 0000000..1fa7c47 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6_inner.json new file mode 100644 index 0000000..136aea6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6_outer.json new file mode 100644 index 0000000..141192a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7.json new file mode 100644 index 0000000..5df05af --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7_inner.json new file mode 100644 index 0000000..f23ffa9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7_outer.json new file mode 100644 index 0000000..b0bdbe2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0.json new file mode 100644 index 0000000..77fbaf6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0_inner.json new file mode 100644 index 0000000..d0cb471 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0_outer.json new file mode 100644 index 0000000..b1156a6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1.json new file mode 100644 index 0000000..ed5e7f2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1_inner.json new file mode 100644 index 0000000..6d8da06 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1_outer.json new file mode 100644 index 0000000..f320bca --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2.json new file mode 100644 index 0000000..b647a42 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2_inner.json new file mode 100644 index 0000000..8855303 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2_outer.json new file mode 100644 index 0000000..d2d0faa --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3.json new file mode 100644 index 0000000..b95c490 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3_inner.json new file mode 100644 index 0000000..47b0205 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3_outer.json new file mode 100644 index 0000000..73a0f5d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4.json new file mode 100644 index 0000000..e807d4d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4_inner.json new file mode 100644 index 0000000..cce4e39 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4_outer.json new file mode 100644 index 0000000..43885ae --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5.json new file mode 100644 index 0000000..dde4209 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5_inner.json new file mode 100644 index 0000000..ab10146 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5_outer.json new file mode 100644 index 0000000..8c13a9c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6.json new file mode 100644 index 0000000..18bcaec --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6_inner.json new file mode 100644 index 0000000..1d94fb2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6_outer.json new file mode 100644 index 0000000..6239b79 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7.json new file mode 100644 index 0000000..9fa6a6d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7_inner.json new file mode 100644 index 0000000..d473aac --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7_outer.json new file mode 100644 index 0000000..5654273 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_wall_inventory.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_wall_inventory.json new file mode 100644 index 0000000..998224c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_wall0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_wall_post.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_wall_post.json new file mode 100644 index 0000000..1d2eb0e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_wall0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_wall_side.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_wall_side.json new file mode 100644 index 0000000..e424210 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_wall0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_wall_side_tall.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_wall_side_tall.json new file mode 100644 index 0000000..fba05de --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_wall0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/cobalt_block.json b/src/main/resources/assets/ariasessentials/models/block/cobalt_block.json new file mode 100644 index 0000000..860301c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/cobalt_block.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "ariasessentials:block/cobalt_block" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/cobalt_ore.json b/src/main/resources/assets/ariasessentials/models/block/cobalt_ore.json new file mode 100644 index 0000000..2c8a99e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/cobalt_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "ariasessentials:block/cobalt_ore" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/compressed_obsidian_block.json b/src/main/resources/assets/ariasessentials/models/block/compressed_obsidian_block.json new file mode 100644 index 0000000..7ed6a8f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/compressed_obsidian_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/compressed_obsidian_block" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/compression_chamber.bbmodel b/src/main/resources/assets/ariasessentials/models/block/compression_chamber.bbmodel new file mode 100644 index 0000000..b0b54aa --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/compression_chamber.bbmodel @@ -0,0 +1 @@ +{"meta":{"format_version":"4.9","model_format":"java_block","box_uv":false},"name":"compression_chamber","parent":"","ambientocclusion":true,"front_gui_light":false,"visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"unhandled_root_fields":{},"resolution":{"width":32,"height":32},"elements":[{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[0,0,0],"to":[16,1,16],"autouv":0,"color":2,"origin":[0,0,0],"faces":{"north":{"uv":[16,0,32,1],"texture":0},"east":{"uv":[16,1,32,2],"texture":0},"south":{"uv":[16,2,32,3],"texture":0},"west":{"uv":[16,3,32,4],"texture":0},"up":{"uv":[16,16,0,0],"texture":0},"down":{"uv":[16,16,0,32],"texture":0}},"type":"cube","uuid":"4127c454-2fb0-e622-cd35-4a2c275b298f"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,1,1],"to":[9,6,3],"autouv":0,"color":6,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,4,10],"texture":1},"east":{"uv":[4,0,8,10],"texture":1},"south":{"uv":[8,0,12,10],"texture":1},"west":{"uv":[0,10,4,20],"texture":1},"up":{"uv":[8,14,4,10],"texture":1},"down":{"uv":[12,10,8,14],"texture":1}},"type":"cube","uuid":"7bc5e172-8d51-da52-0e60-48eac09d9203"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[4,4,0],"to":[12,12,1],"autouv":0,"color":9,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,8,8],"texture":2},"east":{"uv":[8,0,9,8],"texture":2},"south":{"uv":[0,8,8,16],"texture":2},"west":{"uv":[8,8,9,16],"texture":2},"up":{"uv":[17,1,9,0],"texture":2},"down":{"uv":[17,1,9,2],"texture":2}},"type":"cube","uuid":"87d3380c-cc92-97ea-e2a3-dea8c3ce0025"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,9,1],"to":[9,13,3],"autouv":1,"color":9,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,2,4],"texture":1},"east":{"uv":[0,0,2,4],"texture":1},"south":{"uv":[0,0,2,4],"texture":1},"west":{"uv":[0,0,2,4],"texture":1},"up":{"uv":[0,0,2,2],"texture":1},"down":{"uv":[0,0,2,2],"texture":1}},"type":"cube","uuid":"2e475703-1b35-858d-1de6-0f6b3a6aeb76"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[2,12,3],"to":[14,13,14],"autouv":0,"color":8,"origin":[0,0,0],"faces":{"north":{"uv":[12,0,24,1],"texture":3},"east":{"uv":[12,2,23,3],"texture":3},"south":{"uv":[12,1,24,2],"texture":3},"west":{"uv":[12,3,23,4],"texture":3},"up":{"uv":[12,11,0,0],"texture":3},"down":{"uv":[12,11,0,22],"texture":3}},"type":"cube","uuid":"b072854b-3c04-b74c-1e47-adfc7053010c"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[3,11,4],"to":[13,12,13],"autouv":0,"color":9,"origin":[0,0,0],"faces":{"north":{"uv":[10,0,20,1],"texture":4},"east":{"uv":[10,2,19,3],"texture":4},"south":{"uv":[10,1,20,2],"texture":4},"west":{"uv":[10,3,19,4],"texture":4},"up":{"uv":[10,9,0,0],"texture":4},"down":{"uv":[10,9,0,18],"texture":4}},"type":"cube","uuid":"360080b1-c9b3-4c12-b661-fe227ae36bef"}],"outliner":["4127c454-2fb0-e622-cd35-4a2c275b298f","7bc5e172-8d51-da52-0e60-48eac09d9203","87d3380c-cc92-97ea-e2a3-dea8c3ce0025","2e475703-1b35-858d-1de6-0f6b3a6aeb76","b072854b-3c04-b74c-1e47-adfc7053010c","360080b1-c9b3-4c12-b661-fe227ae36bef"],"textures":[{"path":"/run/media/Data/repos/ariasessentials/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/bottom_plate.png","name":"bottom_plate.png","folder":"block/compression_chamber","namespace":"ariasessentials","id":"0","width":32,"height":32,"uv_width":32,"uv_height":32,"particle":true,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"446d560e-6c53-bb37-b2e0-562f133d895b","relative_path":"../../../textures/block/compression_chamber/bottom_plate.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAAtSURBVFhH7dBBEQAAAAFB+pcWw2cVOLPNeT334wABAgQIECBAgAABAgQIECAwGj8AIejuUf0AAAAASUVORK5CYII="},{"path":"/run/media/Data/repos/ariasessentials/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/support0.png","name":"support0.png","folder":"block/compression_chamber","namespace":"ariasessentials","id":"1","width":16,"height":16,"uv_width":16,"uv_height":16,"particle":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"dd634ad9-68a4-2a75-8e32-98fdb796f845","relative_path":"../../../textures/block/compression_chamber/support0.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAABCSURBVDhPY2RgYPgPxNgAIw5xFGGQolED0MIgOLEEHEhr5/eQF4iUGECUjehRixyNA2cAMQkOpxqynI1s2qgBDAwAqOwQEUe/LPwAAAAASUVORK5CYII="},{"path":"/run/media/Data/repos/ariasessentials/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/power.png","name":"power.png","folder":"block/compression_chamber","namespace":"ariasessentials","id":"2","width":32,"height":32,"uv_width":32,"uv_height":32,"particle":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"f846ff90-44c8-f33b-5a11-250e4f88f4cc","relative_path":"../../../textures/block/compression_chamber/power.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAAtSURBVFhH7dBBEQAAAAFB+pcWw2cVOLPNeT334wABAgQIECBAgAABAgQIECAwGj8AIejuUf0AAAAASUVORK5CYII="},{"path":"/run/media/Data/repos/ariasessentials/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/compression_lid.png","name":"compression_lid.png","folder":"block/compression_chamber","namespace":"ariasessentials","id":"3","width":32,"height":32,"uv_width":32,"uv_height":32,"particle":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"57fc6276-bd58-2b5b-9acc-035539406251","relative_path":"../../../textures/block/compression_chamber/compression_lid.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAAtSURBVFhH7dBBEQAAAAFB+pcWw2cVOLPNeT334wABAgQIECBAgAABAgQIECAwGj8AIejuUf0AAAAASUVORK5CYII="},{"path":"/run/media/Data/repos/ariasessentials/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/compressor.png","name":"compressor.png","folder":"block/compression_chamber","namespace":"ariasessentials","id":"4","width":32,"height":32,"uv_width":32,"uv_height":32,"particle":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"dc15fa22-ccdf-8758-02e1-18f284260a8a","relative_path":"../../../textures/block/compression_chamber/compressor.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAABtSURBVFhHY2RgYPgPxASBDj9BJWAFVz4yMBKnEqIKpHj4OIBU31M9BGjqAGh0kRK9RKklOg2MOmD4hgCwgCGqHCAnhROTChlHHTAaAqMhMBoCxBQWtFRDUvOJFg4ZdcBoCIyGwGgIjIbAaAgAAGxQLCEftT89AAAAAElFTkSuQmCC"}]} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/compression_chamber.json b/src/main/resources/assets/ariasessentials/models/block/compression_chamber.json new file mode 100644 index 0000000..7fa4b0d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/compression_chamber.json @@ -0,0 +1,86 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [32, 32], + "textures": { + "0": "ariasessentials:block/compression_chamber/bottom_plate", + "1": "ariasessentials:block/compression_chamber/support0", + "2": "ariasessentials:block/compression_chamber/power", + "3": "ariasessentials:block/compression_chamber/compression_lid", + "4": "ariasessentials:block/compression_chamber/compressor", + "particle": "ariasessentials:block/compression_chamber/bottom_plate" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [16, 1, 16], + "faces": { + "north": {"uv": [8, 0, 16, 0.5], "texture": "#0"}, + "east": {"uv": [8, 0.5, 16, 1], "texture": "#0"}, + "south": {"uv": [8, 1, 16, 1.5], "texture": "#0"}, + "west": {"uv": [8, 1.5, 16, 2], "texture": "#0"}, + "up": {"uv": [8, 8, 0, 0], "texture": "#0"}, + "down": {"uv": [8, 8, 0, 16], "texture": "#0"} + } + }, + { + "from": [7, 1, 1], + "to": [9, 6, 3], + "faces": { + "north": {"uv": [0, 0, 2, 5], "texture": "#1"}, + "east": {"uv": [2, 0, 4, 5], "texture": "#1"}, + "south": {"uv": [4, 0, 6, 5], "texture": "#1"}, + "west": {"uv": [0, 5, 2, 10], "texture": "#1"}, + "up": {"uv": [4, 7, 2, 5], "texture": "#1"}, + "down": {"uv": [6, 5, 4, 7], "texture": "#1"} + } + }, + { + "from": [4, 4, 0], + "to": [12, 12, 1], + "faces": { + "north": {"uv": [0, 0, 4, 4], "texture": "#2"}, + "east": {"uv": [4, 0, 4.5, 4], "texture": "#2"}, + "south": {"uv": [0, 4, 4, 8], "texture": "#2"}, + "west": {"uv": [4, 4, 4.5, 8], "texture": "#2"}, + "up": {"uv": [8.5, 0.5, 4.5, 0], "texture": "#2"}, + "down": {"uv": [8.5, 0.5, 4.5, 1], "texture": "#2"} + } + }, + { + "from": [7, 9, 1], + "to": [9, 13, 3], + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#1"}, + "east": {"uv": [0, 0, 1, 2], "texture": "#1"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#1"}, + "west": {"uv": [0, 0, 1, 2], "texture": "#1"}, + "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#1"} + } + }, + { + "from": [2, 12, 3], + "to": [14, 13, 14], + "faces": { + "north": {"uv": [6, 0, 12, 0.5], "texture": "#3"}, + "east": {"uv": [6, 1, 11.5, 1.5], "texture": "#3"}, + "south": {"uv": [6, 0.5, 12, 1], "texture": "#3"}, + "west": {"uv": [6, 1.5, 11.5, 2], "texture": "#3"}, + "up": {"uv": [6, 5.5, 0, 0], "texture": "#3"}, + "down": {"uv": [6, 5.5, 0, 11], "texture": "#3"} + } + }, + { + "from": [3, 11, 4], + "to": [13, 12, 13], + "faces": { + "north": {"uv": [5, 0, 10, 0.5], "texture": "#4"}, + "east": {"uv": [5, 1, 9.5, 1.5], "texture": "#4"}, + "south": {"uv": [5, 0.5, 10, 1], "texture": "#4"}, + "west": {"uv": [5, 1.5, 9.5, 2], "texture": "#4"}, + "up": {"uv": [5, 4.5, 0, 0], "texture": "#4"}, + "down": {"uv": [5, 4.5, 0, 9], "texture": "#4"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/custommodel/uncrafter.bbmodel b/src/main/resources/assets/ariasessentials/models/block/custommodel/uncrafter.bbmodel new file mode 100644 index 0000000..5351868 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/custommodel/uncrafter.bbmodel @@ -0,0 +1 @@ +{"meta":{"format_version":"4.9","model_format":"java_block","box_uv":false},"name":"uncrafter","parent":"","ambientocclusion":true,"front_gui_light":false,"visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"unhandled_root_fields":{},"resolution":{"width":16,"height":16},"elements":[{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[0,0,0],"to":[16,16,16],"autouv":0,"color":7,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,16,16],"texture":1},"east":{"uv":[0,0,16,16],"texture":1},"south":{"uv":[0,0,16,16],"texture":1},"west":{"uv":[0,0,16,16],"texture":1},"up":{"uv":[0,0,16,16],"texture":2},"down":{"uv":[0,0,16,16],"texture":0}},"type":"cube","uuid":"ac9de27a-27bc-3953-347e-b633ca2f05d9"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5,11,-0.5],"to":[11,12,16.5],"autouv":0,"color":7,"origin":[0,0,0],"faces":{"north":{"uv":[6,11,11,12],"rotation":270,"texture":1},"east":{"uv":[6,11,11,12],"texture":1},"south":{"uv":[6,11,11,12],"rotation":90,"texture":1},"west":{"uv":[6,11,11,12],"rotation":180,"texture":1},"up":{"uv":[6,11,11,12],"rotation":90,"texture":1},"down":{"uv":[6,11,11,12],"rotation":90,"texture":1}},"type":"cube","uuid":"1dafc799-0573-2936-1311-5277bbe2652e"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[-0.5,4,5],"to":[16.5,5,11],"autouv":0,"color":9,"origin":[0,0,0],"faces":{"north":{"uv":[6,11,11,12],"rotation":180,"texture":1},"east":{"uv":[6,11,11,12],"rotation":270,"texture":1},"south":{"uv":[6,11,11,12],"texture":1},"west":{"uv":[6,11,11,12],"rotation":90,"texture":1},"up":{"uv":[6,11,11,12],"rotation":180,"texture":1},"down":{"uv":[6,11,11,12],"texture":1}},"type":"cube","uuid":"2f4b6eed-62e5-6d7b-6707-516136a671e5"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[-0.5,11,5],"to":[16.5,12,11],"autouv":0,"color":6,"origin":[0,0,0],"faces":{"north":{"uv":[6,11,11,12],"rotation":180,"texture":1},"east":{"uv":[6,11,11,12],"rotation":270,"texture":1},"south":{"uv":[6,11,11,12],"texture":1},"west":{"uv":[6,11,11,12],"rotation":90,"texture":1},"up":{"uv":[6,11,11,12],"rotation":180,"texture":1},"down":{"uv":[6,11,11,12],"texture":1}},"type":"cube","uuid":"b98f4fbb-737c-74a9-c960-584b01b39472"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[-0.5,4,4],"to":[16.5,12,5],"autouv":0,"color":3,"origin":[0,0,0],"faces":{"north":{"uv":[6,11,11,12],"texture":1},"east":{"uv":[6,11,11,12],"texture":1},"south":{"uv":[6,11,11,12],"texture":1},"west":{"uv":[6,11,11,12],"texture":1},"up":{"uv":[6,11,11,12],"texture":1},"down":{"uv":[6,11,11,12],"texture":1}},"type":"cube","uuid":"9de6a778-9dd2-a194-cfc0-105d9bae615b"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[-0.5,4,11],"to":[16.5,12,12],"autouv":0,"color":1,"origin":[0,0,0],"faces":{"north":{"uv":[6,11,11,12],"texture":1},"east":{"uv":[6,11,11,12],"texture":1},"south":{"uv":[6,11,11,12],"texture":1},"west":{"uv":[6,11,11,12],"texture":1},"up":{"uv":[6,11,11,12],"texture":1},"down":{"uv":[6,11,11,12],"texture":1}},"type":"cube","uuid":"374756cf-fb4a-8aba-5a77-76c655b5952e"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[11,4,-0.5],"to":[12,12,16.5],"autouv":0,"color":2,"origin":[0,0,0],"faces":{"north":{"uv":[6,11,11,12],"texture":1},"east":{"uv":[6,11,11,12],"texture":1},"south":{"uv":[6,11,11,12],"texture":1},"west":{"uv":[6,11,11,12],"texture":1},"up":{"uv":[6,11,11,12],"rotation":270,"texture":1},"down":{"uv":[6,11,11,12],"rotation":90,"texture":1}},"type":"cube","uuid":"e835d294-407d-2f80-4174-02eee646252f"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5,4,-0.5],"to":[11,5,16.5],"autouv":0,"color":3,"origin":[0,0,0],"faces":{"north":{"uv":[6,11,11,12],"rotation":270,"texture":1},"east":{"uv":[6,11,11,12],"texture":1},"south":{"uv":[6,11,11,12],"rotation":90,"texture":1},"west":{"uv":[6,11,11,12],"rotation":180,"texture":1},"up":{"uv":[6,11,11,12],"rotation":90,"texture":1},"down":{"uv":[6,11,11,12],"rotation":90,"texture":1}},"type":"cube","uuid":"1d8996ea-5e9b-79a1-e32b-ca8f20eda51c"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[4,4,-0.5],"to":[5,12,16.5],"autouv":0,"color":8,"origin":[0,0,0],"faces":{"north":{"uv":[6,11,11,12],"texture":1},"east":{"uv":[6,11,11,12],"texture":1},"south":{"uv":[6,11,11,12],"texture":1},"west":{"uv":[6,11,11,12],"texture":1},"up":{"uv":[6,11,11,12],"rotation":270,"texture":1},"down":{"uv":[6,11,11,12],"rotation":90,"texture":1}},"type":"cube","uuid":"7d422c33-810a-d373-3d84-a13bb8f5cc87"},{"name":"grid","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[2,16,2],"to":[14,16.75,14],"autouv":0,"color":7,"origin":[0,0,0],"faces":{"north":{"uv":[3,3,13,4],"texture":2},"east":{"uv":[3,3,13,4],"texture":2},"south":{"uv":[3,3,13,4],"texture":2},"west":{"uv":[3,3,13,4],"texture":2},"up":{"uv":[2,2,14,14],"texture":2},"down":{"uv":[0,0,12,12]}},"type":"cube","uuid":"32a37783-fda2-d727-cf9c-d99e2878a7e8"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6,12,-0.5],"to":[10,13,16.5],"autouv":0,"color":6,"origin":[0,0,0],"faces":{"north":{"uv":[6,3,10,4],"texture":1},"east":{"uv":[6,3,7,4],"texture":1},"south":{"uv":[6,3,10,4],"texture":1},"west":{"uv":[6,3,7,4],"texture":1},"up":{"uv":[0,0,8,16]},"down":{"uv":[6,3,10,4],"texture":1}},"type":"cube","uuid":"46ecc3cc-7916-4bcd-28e2-eb941d684855"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[3,15,-0.5],"to":[13,16.5,16.5],"autouv":0,"color":6,"origin":[0,0,0],"faces":{"north":{"uv":[3,0,13,2],"texture":2},"east":{"uv":[3,0,13,2],"texture":2},"south":{"uv":[3,0,13,2],"texture":2},"west":{"uv":[3,0,13,2],"texture":2},"up":{"uv":[3,0,13,2],"texture":2},"down":{"uv":[3,0,13,2],"texture":2}},"type":"cube","uuid":"172385de-76db-6ec1-a312-45a3690ec58d"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[4,14,-0.5],"to":[12,15,16.5],"autouv":0,"color":1,"origin":[0,0,0],"faces":{"north":{"uv":[4,1,12,2],"texture":1},"east":{"uv":[4,1,5,2],"texture":1},"south":{"uv":[4,1,12,2],"texture":1},"west":{"uv":[4,1,5,2],"texture":1},"up":{"uv":[0,0,8,16]},"down":{"uv":[4,1,12,2],"texture":1}},"type":"cube","uuid":"a2c5a217-698e-37df-618c-e853252d2d01"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5,13,-0.5],"to":[11,14,16.5],"autouv":0,"color":1,"origin":[0,0,0],"faces":{"north":{"uv":[5,2,11,3],"texture":1},"east":{"uv":[5,2,6,3],"texture":1},"south":{"uv":[5,2,11,3],"texture":1},"west":{"uv":[5,2,6,3],"texture":1},"up":{"uv":[0,0,8,16]},"down":{"uv":[5,2,11,3],"texture":1}},"type":"cube","uuid":"04c55b72-16de-230f-76a4-a4ae7a5a3ca2"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[-0.5,12,6],"to":[16.5,13,10],"autouv":0,"color":7,"origin":[0,0,0],"faces":{"north":{"uv":[6,3,7,4],"texture":1},"east":{"uv":[6,3,10,4],"texture":1},"south":{"uv":[6,3,7,4],"texture":1},"west":{"uv":[6,3,10,4],"texture":1},"up":{"uv":[0,0,8,16],"rotation":270},"down":{"uv":[6,3,10,4],"rotation":90,"texture":1}},"type":"cube","uuid":"dc42b1da-d91b-bc2b-115b-f250a445652c"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[-0.5,15,3],"to":[16.5,16.5,13],"autouv":0,"color":9,"origin":[0,0,0],"faces":{"north":{"uv":[3,0,13,2],"texture":2},"east":{"uv":[3,0,13,2],"texture":2},"south":{"uv":[3,0,13,2],"texture":2},"west":{"uv":[3,0,13,2],"texture":2},"up":{"uv":[3,0,13,2],"rotation":270,"texture":2},"down":{"uv":[3,0,13,2],"rotation":90,"texture":2}},"type":"cube","uuid":"a408a185-b0f6-84f3-ecb1-793a2b11fbb5"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[-0.5,14,4],"to":[16.5,15,12],"autouv":0,"color":6,"origin":[0,0,0],"faces":{"north":{"uv":[4,1,5,2],"texture":1},"east":{"uv":[4,1,12,2],"texture":1},"south":{"uv":[4,1,5,2],"texture":1},"west":{"uv":[4,1,12,2],"texture":1},"up":{"uv":[0,0,8,16],"rotation":270},"down":{"uv":[4,1,12,2],"rotation":90,"texture":1}},"type":"cube","uuid":"dbb7dbc7-b9db-0fcc-0582-442ea86f6b55"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[-0.5,13,5],"to":[16.5,14,11],"autouv":0,"color":6,"origin":[0,0,0],"faces":{"north":{"uv":[5,2,6,3],"texture":1},"east":{"uv":[5,2,11,3],"texture":1},"south":{"uv":[5,2,6,3],"texture":1},"west":{"uv":[5,2,11,3],"texture":1},"up":{"uv":[0,0,8,16],"rotation":270},"down":{"uv":[5,2,11,3],"rotation":90,"texture":1}},"type":"cube","uuid":"564a8245-c5cf-32cc-523c-a493d3c84175"}],"outliner":["ac9de27a-27bc-3953-347e-b633ca2f05d9",{"name":"connection_slots","origin":[0,0,0],"color":0,"uuid":"b714af95-2528-cdd1-2a58-be2ebce94bd9","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["1dafc799-0573-2936-1311-5277bbe2652e","2f4b6eed-62e5-6d7b-6707-516136a671e5","b98f4fbb-737c-74a9-c960-584b01b39472","9de6a778-9dd2-a194-cfc0-105d9bae615b","374756cf-fb4a-8aba-5a77-76c655b5952e","e835d294-407d-2f80-4174-02eee646252f","1d8996ea-5e9b-79a1-e32b-ca8f20eda51c","7d422c33-810a-d373-3d84-a13bb8f5cc87"]},"32a37783-fda2-d727-cf9c-d99e2878a7e8",{"name":"group","origin":[0,0,0],"color":0,"uuid":"2cd47851-5d22-a7c5-c742-179ec7b7ffe8","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["46ecc3cc-7916-4bcd-28e2-eb941d684855","172385de-76db-6ec1-a312-45a3690ec58d","a2c5a217-698e-37df-618c-e853252d2d01","04c55b72-16de-230f-76a4-a4ae7a5a3ca2"]},{"name":"group","origin":[0,0,0],"color":0,"uuid":"66b65636-382c-d904-0f28-0005d296751a","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["dc42b1da-d91b-bc2b-115b-f250a445652c","a408a185-b0f6-84f3-ecb1-793a2b11fbb5","dbb7dbc7-b9db-0fcc-0582-442ea86f6b55","564a8245-c5cf-32cc-523c-a493d3c84175"]}],"textures":[{"path":"/run/media/Backups/repos/ariasessentials/src/main/resources/assets/ariasessentials/textures/block/uncrafter_bottom.png","name":"uncrafter_bottom.png","folder":"block","namespace":"ariasessentials","id":"0","width":16,"height":16,"uv_width":16,"uv_height":16,"particle":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"edabc1e0-d543-629f-6193-ef1589f8cd5a","relative_path":"../../../../textures/block/uncrafter_bottom.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAGvSURBVDhPXVO7TgJREJ1FFtzloaJAIBpDpyGxsaGlsvEzNNHC2Jj4bf4BjY2JiY0xqMHwlofgsguYM+RsLk6z93JnzpwzZ7CqF5fLaTQqiC3Pk89kSs+56URi87m4gS+1fFF/O+m25Wk3K19uUiqthtSTabHKN7fL5509qTbeNSk986TpJtbAevFNfUNhYTLWLwJnq3B3v8Ql4/1Kyp/pA2JkxwSFSC73O+EZjVqOG94tSgAdIoMeo5YraqfD8VBBwZbdkR8yQAJATttN8SMRGcTjeqdeAlEGQFBjVa6uVQKSIcPUCyaUwjc2whegOkRoNztQ89F3TxK+Lx3HEScIlDr0749HYi8W8pjNrwDYFQkooq24o/BlOxM6ACal4UBlwnKdAXSdfbypbjBBkAUKzEB3BHIhb20PQO+/HC4MmpzXX8WdBzLZWC3ej21LaKM5LFjFhaGFkGJuLBgg1AXQBuXjfldpPRyUFABBCQTFjDATuqIAtBD7DxkIDNa0DDm4I8wtDV3ggrAjAZCMuQCALtFO5IQMTLosMLcO7+aqA3htBrSK2s0/EaWQHRvg/gfDmTZgal/FbwAAAABJRU5ErkJggg=="},{"path":"/run/media/Backups/repos/ariasessentials/src/main/resources/assets/ariasessentials/textures/block/uncrafter_side.png","name":"uncrafter_side.png","folder":"block","namespace":"ariasessentials","id":"1","width":16,"height":16,"uv_width":16,"uv_height":16,"particle":true,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"e4e3cf2c-1109-a760-fc62-0831300ff7a0","relative_path":"../../../../textures/block/uncrafter_side.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAHvSURBVDhPfVNLLwNRFP5Gqx5VjEcrERuPtvFMEKIVQkJEbLHxIyy6ZcHWwk7sJcLaQiLxWGCjEkKZekSCRpuGKmXVjHtu515TwZdM5s69c77znXO+q2B2XofA3Ixc/ruYnZfHChE4bzWo6TReLBYMrKzg8o9oL9vfnQ7I02hxCRTXdECnBZGURh8R7hnEpKFEEFEgYc3I7D7c5v8RFF9vt45iFbmxCPZGx0GHRRYr0ptbWTrsoyO4LqvgSrWGRriSr+AK+jtb9QtvK5SKKpScBxHe2pGBbcbqxETlnJpCrNbDFXMFHRMT+r3NhmrtFBH/MKKLCyisAXJy2WPLfuIHABHwQJaQv6kHevyJ1+9QKxFcX0e+ywj8QfJ8BLD/URc+w427+VtB0NvCayr9TEFbXoJNNWU2kSROAffQAF6bOkBJuQImSVftDiQK7FyFtroKq/2HfIMkSWNhk6D6s0qgbkqwEf5WP+2932Z6QMFSQfvIkH7c1fftA2MKv5F83Gd6IHxDRLwEGgv1gFhjzIn/wmRj2QNiMpdhdpowjHh7rkLcSAJ8jPRBDaS7QGoI/hCzT14B9uvcUh0lqn+4Q7y8kjedOzHrNhq0ostESki4qmVGodS3vYGDwbEMgScawUvqTV4mIZeIhCLaI5hLpb0vjgfXWl4BbX4AAAAASUVORK5CYII="},{"path":"/run/media/Backups/repos/ariasessentials/src/main/resources/assets/ariasessentials/textures/block/uncrafter.png","name":"uncrafter.png","folder":"block","namespace":"ariasessentials","id":"2","width":16,"height":512,"uv_width":16,"uv_height":16,"particle":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":20,"frame_order_type":"loop","frame_order":"","frame_interpolate":true,"visible":true,"internal":true,"saved":true,"uuid":"0b952e7d-256f-d0eb-1170-89403985b747","relative_path":"../../../../textures/block/uncrafter.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAIACAYAAACLuuzTAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAANNSURBVHhe7Z0xTsMwFIbNQZi5A2JEYmFj4DQwwGkY2FiQGBF3YOYg0DRtCWlsP7/nENv5KiFVbfhTx/4/Pz/byYm7f/x2+9fD3eFt8M394+Hrk63Ax3v/wdurTODyqj/u/MIdBG6l/7w7xVMnshVwbluE283fl+z87nRz3NPu2COB7svu1YmF3s8nICkFRehrp6Ra2HlB35SzmMlsZ7MAPPhDJDNQsvLg7LqX+3w5xpvITCqBrEWohcrwgPjAHUco5fJgbO1kHogF4IHkCvTH/Ia6xAeMFyaAImlK4lh5aGGxnYdIUwlkLYLv14ivgUogvQjEB8QHxAedb+bN4qiItADS4AE8gAfz8MDHAHGIYxYgPmB+ITanMJx3EA2+Vamw9JY4mmMxe8EssMoiEB+0GB+E8ukiHpgFVmmmBpAGD1rngWquLTTcFQEFHjhnjlDMAum1AA/WxIOSR64NdK4NFAEewIOJfOICPVPATKq5Nl9cJGZieucKDzKZyby80CzQ1vpEs53NAlnNpMpokgKR1MF4xTTxQSakbYCiX/Sde/+C2c5mAUlbDK7FMdvZLJC1CLVkceABPKhqvDCOFbxTpmXxoJYQBx7AA3gwz3ok8yYQs0B6iAMP4EGRPDB7wSyQbqbRsM/8C8wC6UWABy3ywLzw3SyQ3hIbMFMDRYAHrfNANVnn65n+b7LO3DeaBVaJNHiwJh6Ik3GYSUKDuW9vtEAtwIOWeeBr1Ps9T9H9TAj4uVDBRZRA7e+sLzxokgc34Zbw9Rzr2hBwp/VfA3jAfufhfme696q79/14QV2N8AAe+O5/MGwb4lDXB5eowPBsU806KmD2AgISGrBeeXuVuN/6Qnf6Ts5oqvtGeAAPHM9fiD5zoWsl4t45drMlb0JS0haD+xew8++95dVMTK8F8olN5hN3DUFt5wVmujyLeaaGOUlIyy4wHgoVPEkDD8gfxBiQZKaY2PzxgfoXmJE2FPAZq/AQBx7Ag5iB4EHvkuiYKd1MghBHldVlvBCpi6N04P548get5Q9ieItG62qBbDxQT9JMhThJQEkvAvkD8gfFP38hFPpXxoMpOpVUBHgAD+BB14/O+3ymWpAGD+ABPIAH/cgiw6NIl36e6w/NB6pXl3BUBQAAAABJRU5ErkJggg=="}],"display":{"thirdperson_righthand":{"scale":[0.5,0.5,0.5]},"thirdperson_lefthand":{"scale":[0.5,0.5,0.5]},"firstperson_righthand":{"scale":[0.5,0.5,0.5]},"firstperson_lefthand":{"scale":[0.5,0.5,0.5]},"ground":{"scale":[0.25,0.25,0.25]},"gui":{"rotation":[59,-39,-3],"scale":[0.5,0.5,0.5]},"head":{"scale":[0.95,0.95,0.95]},"fixed":{"rotation":[-90,0,0],"scale":[0.5,0.5,0.5]}}} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/custommodel/uncrafter.json b/src/main/resources/assets/ariasessentials/models/block/custommodel/uncrafter.json new file mode 100644 index 0000000..7d70c9e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/custommodel/uncrafter.json @@ -0,0 +1,278 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "0": "ariasessentials:block/uncrafter_bottom", + "1": "ariasessentials:block/uncrafter_side", + "2": "ariasessentials:block/uncrafter", + "particle": "ariasessentials:block/uncrafter_side" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#0"} + } + }, + { + "from": [5, 11, -0.5], + "to": [11, 12, 16.5], + "faces": { + "north": {"uv": [6, 11, 11, 12], "rotation": 270, "texture": "#1"}, + "east": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "south": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"}, + "west": {"uv": [6, 11, 11, 12], "rotation": 180, "texture": "#1"}, + "up": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"}, + "down": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-0.5, 4, 5], + "to": [16.5, 5, 11], + "faces": { + "north": {"uv": [6, 11, 11, 12], "rotation": 180, "texture": "#1"}, + "east": {"uv": [6, 11, 11, 12], "rotation": 270, "texture": "#1"}, + "south": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "west": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"}, + "up": {"uv": [6, 11, 11, 12], "rotation": 180, "texture": "#1"}, + "down": {"uv": [6, 11, 11, 12], "texture": "#1"} + } + }, + { + "from": [-0.5, 11, 5], + "to": [16.5, 12, 11], + "faces": { + "north": {"uv": [6, 11, 11, 12], "rotation": 180, "texture": "#1"}, + "east": {"uv": [6, 11, 11, 12], "rotation": 270, "texture": "#1"}, + "south": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "west": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"}, + "up": {"uv": [6, 11, 11, 12], "rotation": 180, "texture": "#1"}, + "down": {"uv": [6, 11, 11, 12], "texture": "#1"} + } + }, + { + "from": [-0.5, 4, 4], + "to": [16.5, 12, 5], + "faces": { + "north": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "east": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "south": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "west": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "up": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "down": {"uv": [6, 11, 11, 12], "texture": "#1"} + } + }, + { + "from": [-0.5, 4, 11], + "to": [16.5, 12, 12], + "faces": { + "north": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "east": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "south": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "west": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "up": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "down": {"uv": [6, 11, 11, 12], "texture": "#1"} + } + }, + { + "from": [11, 4, -0.5], + "to": [12, 12, 16.5], + "faces": { + "north": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "east": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "south": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "west": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "up": {"uv": [6, 11, 11, 12], "rotation": 270, "texture": "#1"}, + "down": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [5, 4, -0.5], + "to": [11, 5, 16.5], + "faces": { + "north": {"uv": [6, 11, 11, 12], "rotation": 270, "texture": "#1"}, + "east": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "south": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"}, + "west": {"uv": [6, 11, 11, 12], "rotation": 180, "texture": "#1"}, + "up": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"}, + "down": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 4, -0.5], + "to": [5, 12, 16.5], + "faces": { + "north": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "east": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "south": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "west": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "up": {"uv": [6, 11, 11, 12], "rotation": 270, "texture": "#1"}, + "down": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"} + } + }, + { + "name": "grid", + "from": [2, 16, 2], + "to": [14, 16.75, 14], + "faces": { + "north": {"uv": [3, 3, 13, 4], "texture": "#2"}, + "east": {"uv": [3, 3, 13, 4], "texture": "#2"}, + "south": {"uv": [3, 3, 13, 4], "texture": "#2"}, + "west": {"uv": [3, 3, 13, 4], "texture": "#2"}, + "up": {"uv": [2, 2, 14, 14], "texture": "#2"}, + "down": {"uv": [0, 0, 12, 12], "texture": "#missing"} + } + }, + { + "from": [6, 12, -0.5], + "to": [10, 13, 16.5], + "faces": { + "north": {"uv": [6, 3, 10, 4], "texture": "#1"}, + "east": {"uv": [6, 3, 7, 4], "texture": "#1"}, + "south": {"uv": [6, 3, 10, 4], "texture": "#1"}, + "west": {"uv": [6, 3, 7, 4], "texture": "#1"}, + "up": {"uv": [0, 0, 8, 16], "texture": "#missing"}, + "down": {"uv": [6, 3, 10, 4], "texture": "#1"} + } + }, + { + "from": [3, 15, -0.5], + "to": [13, 16.5, 16.5], + "faces": { + "north": {"uv": [3, 0, 13, 2], "texture": "#2"}, + "east": {"uv": [3, 0, 13, 2], "texture": "#2"}, + "south": {"uv": [3, 0, 13, 2], "texture": "#2"}, + "west": {"uv": [3, 0, 13, 2], "texture": "#2"}, + "up": {"uv": [3, 0, 13, 2], "texture": "#2"}, + "down": {"uv": [3, 0, 13, 2], "texture": "#2"} + } + }, + { + "from": [4, 14, -0.5], + "to": [12, 15, 16.5], + "faces": { + "north": {"uv": [4, 1, 12, 2], "texture": "#1"}, + "east": {"uv": [4, 1, 5, 2], "texture": "#1"}, + "south": {"uv": [4, 1, 12, 2], "texture": "#1"}, + "west": {"uv": [4, 1, 5, 2], "texture": "#1"}, + "up": {"uv": [0, 0, 8, 16], "texture": "#missing"}, + "down": {"uv": [4, 1, 12, 2], "texture": "#1"} + } + }, + { + "from": [5, 13, -0.5], + "to": [11, 14, 16.5], + "faces": { + "north": {"uv": [5, 2, 11, 3], "texture": "#1"}, + "east": {"uv": [5, 2, 6, 3], "texture": "#1"}, + "south": {"uv": [5, 2, 11, 3], "texture": "#1"}, + "west": {"uv": [5, 2, 6, 3], "texture": "#1"}, + "up": {"uv": [0, 0, 8, 16], "texture": "#missing"}, + "down": {"uv": [5, 2, 11, 3], "texture": "#1"} + } + }, + { + "from": [-0.5, 12, 6], + "to": [16.5, 13, 10], + "faces": { + "north": {"uv": [6, 3, 7, 4], "texture": "#1"}, + "east": {"uv": [6, 3, 10, 4], "texture": "#1"}, + "south": {"uv": [6, 3, 7, 4], "texture": "#1"}, + "west": {"uv": [6, 3, 10, 4], "texture": "#1"}, + "up": {"uv": [0, 0, 8, 16], "rotation": 270, "texture": "#missing"}, + "down": {"uv": [6, 3, 10, 4], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-0.5, 15, 3], + "to": [16.5, 16.5, 13], + "faces": { + "north": {"uv": [3, 0, 13, 2], "texture": "#2"}, + "east": {"uv": [3, 0, 13, 2], "texture": "#2"}, + "south": {"uv": [3, 0, 13, 2], "texture": "#2"}, + "west": {"uv": [3, 0, 13, 2], "texture": "#2"}, + "up": {"uv": [3, 0, 13, 2], "rotation": 270, "texture": "#2"}, + "down": {"uv": [3, 0, 13, 2], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [-0.5, 14, 4], + "to": [16.5, 15, 12], + "faces": { + "north": {"uv": [4, 1, 5, 2], "texture": "#1"}, + "east": {"uv": [4, 1, 12, 2], "texture": "#1"}, + "south": {"uv": [4, 1, 5, 2], "texture": "#1"}, + "west": {"uv": [4, 1, 12, 2], "texture": "#1"}, + "up": {"uv": [0, 0, 8, 16], "rotation": 270, "texture": "#missing"}, + "down": {"uv": [4, 1, 12, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-0.5, 13, 5], + "to": [16.5, 14, 11], + "faces": { + "north": {"uv": [5, 2, 6, 3], "texture": "#1"}, + "east": {"uv": [5, 2, 11, 3], "texture": "#1"}, + "south": {"uv": [5, 2, 6, 3], "texture": "#1"}, + "west": {"uv": [5, 2, 11, 3], "texture": "#1"}, + "up": {"uv": [0, 0, 8, 16], "rotation": 270, "texture": "#missing"}, + "down": {"uv": [5, 2, 11, 3], "rotation": 90, "texture": "#1"} + } + } + ], + "display": { + "thirdperson_righthand": { + "scale": [0.5, 0.5, 0.5] + }, + "thirdperson_lefthand": { + "scale": [0.5, 0.5, 0.5] + }, + "firstperson_righthand": { + "scale": [0.5, 0.5, 0.5] + }, + "firstperson_lefthand": { + "scale": [0.5, 0.5, 0.5] + }, + "ground": { + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [59, -39, -3], + "scale": [0.5, 0.5, 0.5] + }, + "head": { + "scale": [0.95, 0.95, 0.95] + }, + "fixed": { + "rotation": [-90, 0, 0], + "scale": [0.5, 0.5, 0.5] + } + }, + "groups": [ + 0, + { + "name": "connection_slots", + "origin": [0, 0, 0], + "color": 0, + "children": [1, 2, 3, 4, 5, 6, 7, 8] + }, + 9, + { + "name": "group", + "origin": [0, 0, 0], + "color": 0, + "children": [10, 11, 12, 13] + }, + { + "name": "group", + "origin": [0, 0, 0], + "color": 0, + "children": [14, 15, 16, 17] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/cyan.json b/src/main/resources/assets/ariasessentials/models/block/cyan.json new file mode 100644 index 0000000..4c841a8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/cyan.json @@ -0,0 +1,6 @@ +{ + "parent": "ariasessentials:block/fb/cube", + "textures": { + "all": "ariasessentials:block/thresholds/cyan" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/cyan_stairs.json b/src/main/resources/assets/ariasessentials/models/block/cyan_stairs.json new file mode 100644 index 0000000..d54fd27 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/cyan_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/thresholds/cyan", + "side": "ariasessentials:block/thresholds/cyan", + "top": "ariasessentials:block/thresholds/cyan" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/cyan_stairs_inner.json b/src/main/resources/assets/ariasessentials/models/block/cyan_stairs_inner.json new file mode 100644 index 0000000..8f551bf --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/cyan_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/thresholds/cyan", + "side": "ariasessentials:block/thresholds/cyan", + "top": "ariasessentials:block/thresholds/cyan" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/cyan_stairs_outer.json b/src/main/resources/assets/ariasessentials/models/block/cyan_stairs_outer.json new file mode 100644 index 0000000..9ecf19c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/cyan_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/thresholds/cyan", + "side": "ariasessentials:block/thresholds/cyan", + "top": "ariasessentials:block/thresholds/cyan" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/cyan_tile.json b/src/main/resources/assets/ariasessentials/models/block/cyan_tile.json new file mode 100644 index 0000000..8371b93 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/cyan_tile.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/top", + "textures": { + "top": "ariasessentials:block/thresholds/hallway/floor/tiles/cyan_tile_w_circle", + "side": "ariasessentials:block/thresholds/cyan" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/cyan_tile_br.json b/src/main/resources/assets/ariasessentials/models/block/cyan_tile_br.json new file mode 100644 index 0000000..ce0032b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/cyan_tile_br.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/sided", + "textures": { + "top": "ariasessentials:block/thresholds/hallway/floor/tiles/cyan_tile_transition", + "side": "ariasessentials:block/thresholds/cyan" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/cyan_tile_to_wall.json b/src/main/resources/assets/ariasessentials/models/block/cyan_tile_to_wall.json new file mode 100644 index 0000000..9466361 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/cyan_tile_to_wall.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/sided", + "textures": { + "side": "ariasessentials:block/thresholds/hallway/wall/cyan_floor_to_wall", + "top": "ariasessentials:block/thresholds/cyan" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/cyan_wall_variant_1.json b/src/main/resources/assets/ariasessentials/models/block/cyan_wall_variant_1.json new file mode 100644 index 0000000..206347a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/cyan_wall_variant_1.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/sided", + "textures": { + "side": "ariasessentials:block/thresholds/hallway/wall/cyan_wall", + "top": "ariasessentials:block/thresholds/cyan" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/cyan_wall_variant_2.json b/src/main/resources/assets/ariasessentials/models/block/cyan_wall_variant_2.json new file mode 100644 index 0000000..1e45786 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/cyan_wall_variant_2.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/sided", + "textures": { + "side": "ariasessentials:block/thresholds/hallway/wall/cyan_wall2", + "top": "ariasessentials:block/thresholds/cyan" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/dark_pool_light.json b/src/main/resources/assets/ariasessentials/models/block/dark_pool_light.json new file mode 100644 index 0000000..06a6e23 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dark_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dark_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile.json b/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile.json new file mode 100644 index 0000000..9cd3bf3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dark_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_slab.json new file mode 100644 index 0000000..29ceb08 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/dark_pool_tile", + "side": "ariasessentials:block/dark_pool_tile", + "top": "ariasessentials:block/dark_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_slab_top.json b/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_slab_top.json new file mode 100644 index 0000000..41e6017 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/dark_pool_tile", + "side": "ariasessentials:block/dark_pool_tile", + "top": "ariasessentials:block/dark_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs.json new file mode 100644 index 0000000..a12ed67 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/dark_pool_tile", + "side": "ariasessentials:block/dark_pool_tile", + "top": "ariasessentials:block/dark_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs_inner.json b/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs_inner.json new file mode 100644 index 0000000..c794fa9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/dark_pool_tile", + "side": "ariasessentials:block/dark_pool_tile", + "top": "ariasessentials:block/dark_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs_outer.json b/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs_outer.json new file mode 100644 index 0000000..61019c2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/dark_pool_tile", + "side": "ariasessentials:block/dark_pool_tile", + "top": "ariasessentials:block/dark_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dark_red_bed.json b/src/main/resources/assets/ariasessentials/models/block/dark_red_bed.json new file mode 100644 index 0000000..6577c90 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dark_red_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dark_red_carpet.json b/src/main/resources/assets/ariasessentials/models/block/dark_red_carpet.json new file mode 100644 index 0000000..3567748 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dark_red_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "ariasessentials:block/dark_red_wool" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dark_red_shulker_box.json b/src/main/resources/assets/ariasessentials/models/block/dark_red_shulker_box.json new file mode 100644 index 0000000..c35d870 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dark_red_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "ariasessentials:block/dark_red_shulker_box" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dark_red_wool.json b/src/main/resources/assets/ariasessentials/models/block/dark_red_wool.json new file mode 100644 index 0000000..a1c3b22 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dark_red_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dark_red_wool" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/deepslate_eternium_ore_block.json b/src/main/resources/assets/ariasessentials/models/block/deepslate_eternium_ore_block.json new file mode 100644 index 0000000..fcd2a82 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/deepslate_eternium_ore_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/deepslate_eternium_ore_block" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/deprecated.json b/src/main/resources/assets/ariasessentials/models/block/deprecated.json new file mode 100644 index 0000000..8970a27 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/deprecated.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "ariasessentials:block/deprecated" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_light.json b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_light.json new file mode 100644 index 0000000..6b2dacd --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dirty_blue_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile.json b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile.json new file mode 100644 index 0000000..293a975 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_slab.json new file mode 100644 index 0000000..9aa4f75 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/dirty_blue_pool_tile", + "side": "ariasessentials:block/dirty_blue_pool_tile", + "top": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_slab_top.json b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_slab_top.json new file mode 100644 index 0000000..45189ca --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/dirty_blue_pool_tile", + "side": "ariasessentials:block/dirty_blue_pool_tile", + "top": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs.json new file mode 100644 index 0000000..74bff36 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_blue_pool_tile", + "side": "ariasessentials:block/dirty_blue_pool_tile", + "top": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs_inner.json b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs_inner.json new file mode 100644 index 0000000..191a772 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_blue_pool_tile", + "side": "ariasessentials:block/dirty_blue_pool_tile", + "top": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs_outer.json b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs_outer.json new file mode 100644 index 0000000..785db09 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_blue_pool_tile", + "side": "ariasessentials:block/dirty_blue_pool_tile", + "top": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_inventory.json b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_inventory.json new file mode 100644 index 0000000..8530b2b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_post.json b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_post.json new file mode 100644 index 0000000..79e39ec --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_side.json b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_side.json new file mode 100644 index 0000000..15b5e7b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_side_tall.json b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_side_tall.json new file mode 100644 index 0000000..0675885 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_light.json b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_light.json new file mode 100644 index 0000000..5db84f0 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dirty_green_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile.json b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile.json new file mode 100644 index 0000000..57508a9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_slab.json new file mode 100644 index 0000000..5344b8e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/dirty_green_pool_tile", + "side": "ariasessentials:block/dirty_green_pool_tile", + "top": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_slab_top.json b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_slab_top.json new file mode 100644 index 0000000..d19fdd7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/dirty_green_pool_tile", + "side": "ariasessentials:block/dirty_green_pool_tile", + "top": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs.json new file mode 100644 index 0000000..dec0a2b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_green_pool_tile", + "side": "ariasessentials:block/dirty_green_pool_tile", + "top": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs_inner.json b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs_inner.json new file mode 100644 index 0000000..9f7a4f5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_green_pool_tile", + "side": "ariasessentials:block/dirty_green_pool_tile", + "top": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs_outer.json b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs_outer.json new file mode 100644 index 0000000..4abc9a5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_green_pool_tile", + "side": "ariasessentials:block/dirty_green_pool_tile", + "top": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_inventory.json b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_inventory.json new file mode 100644 index 0000000..ea0ec22 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_post.json b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_post.json new file mode 100644 index 0000000..f0ee243 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_side.json b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_side.json new file mode 100644 index 0000000..05355a5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_side_tall.json b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_side_tall.json new file mode 100644 index 0000000..c809e63 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_pool_light.json b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_light.json new file mode 100644 index 0000000..de379b2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dirty_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile.json b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile.json new file mode 100644 index 0000000..f5b2f5d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_slab.json new file mode 100644 index 0000000..31b5751 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/dirty_pool_tile", + "side": "ariasessentials:block/dirty_pool_tile", + "top": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_slab_top.json b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_slab_top.json new file mode 100644 index 0000000..98fc188 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/dirty_pool_tile", + "side": "ariasessentials:block/dirty_pool_tile", + "top": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs.json new file mode 100644 index 0000000..68ee419 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_pool_tile", + "side": "ariasessentials:block/dirty_pool_tile", + "top": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs_inner.json b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs_inner.json new file mode 100644 index 0000000..146e9ce --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_pool_tile", + "side": "ariasessentials:block/dirty_pool_tile", + "top": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs_outer.json b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs_outer.json new file mode 100644 index 0000000..f3e00fc --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_pool_tile", + "side": "ariasessentials:block/dirty_pool_tile", + "top": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_inventory.json b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_inventory.json new file mode 100644 index 0000000..0eaa596 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_post.json b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_post.json new file mode 100644 index 0000000..c6152f9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_side.json b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_side.json new file mode 100644 index 0000000..9129b3c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_side_tall.json b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_side_tall.json new file mode 100644 index 0000000..66ada0b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_light.json b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_light.json new file mode 100644 index 0000000..082b731 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dirty_red_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile.json b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile.json new file mode 100644 index 0000000..7adfed2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_slab.json new file mode 100644 index 0000000..303cbec --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/dirty_red_pool_tile", + "side": "ariasessentials:block/dirty_red_pool_tile", + "top": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_slab_top.json b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_slab_top.json new file mode 100644 index 0000000..d16f47b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/dirty_red_pool_tile", + "side": "ariasessentials:block/dirty_red_pool_tile", + "top": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs.json new file mode 100644 index 0000000..8db8504 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_red_pool_tile", + "side": "ariasessentials:block/dirty_red_pool_tile", + "top": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs_inner.json b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs_inner.json new file mode 100644 index 0000000..62ddc44 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_red_pool_tile", + "side": "ariasessentials:block/dirty_red_pool_tile", + "top": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs_outer.json b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs_outer.json new file mode 100644 index 0000000..5ba1eac --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_red_pool_tile", + "side": "ariasessentials:block/dirty_red_pool_tile", + "top": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_inventory.json b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_inventory.json new file mode 100644 index 0000000..0f74614 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_post.json b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_post.json new file mode 100644 index 0000000..f5e43f6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_side.json b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_side.json new file mode 100644 index 0000000..aa025b4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_side_tall.json b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_side_tall.json new file mode 100644 index 0000000..2ec7d04 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/eternium_block.json b/src/main/resources/assets/ariasessentials/models/block/eternium_block.json new file mode 100644 index 0000000..ec2aeb6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/eternium_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/eternium_block" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/eternium_ore_block.json b/src/main/resources/assets/ariasessentials/models/block/eternium_ore_block.json new file mode 100644 index 0000000..4d4e3fe --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/eternium_ore_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/eternium_ore_block" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/fb/cube.json b/src/main/resources/assets/ariasessentials/models/block/fb/cube.json new file mode 100644 index 0000000..c3d3147 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/fb/cube.json @@ -0,0 +1,11 @@ +{ + "parent": "ariasessentials:block/fb/fullbright", + "textures": { + "north": "#all", + "south": "#all", + "west": "#all", + "east": "#all", + "up": "#all", + "down": "#all" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/fb/fullbright.json b/src/main/resources/assets/ariasessentials/models/block/fb/fullbright.json new file mode 100644 index 0000000..a86d0c7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/fb/fullbright.json @@ -0,0 +1,22 @@ +{ + "parent": "block/block", + "ambientocclusion" : false, + "textures": { + "particle": "#up" + }, + "elements": [ + { + "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "shade": false, + "faces": { + "down": { "texture": "#down", "cullface": "down" }, + "up": { "texture": "#up", "cullface": "up" }, + "north": { "texture": "#north", "cullface": "north" }, + "south": { "texture": "#south", "cullface": "south" }, + "west": { "texture": "#west", "cullface": "west" }, + "east": { "texture": "#east", "cullface": "east" } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/fb/rotatable.json b/src/main/resources/assets/ariasessentials/models/block/fb/rotatable.json new file mode 100644 index 0000000..907f570 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/fb/rotatable.json @@ -0,0 +1,12 @@ +{ + "parent": "ariasessentials:block/fb/fullbright", + "textures": { + "particle": "#side", + "down": "#side", + "up": "#side", + "north": "#front", + "east": "#side", + "south": "#side", + "west": "#side" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/fb/sided.json b/src/main/resources/assets/ariasessentials/models/block/fb/sided.json new file mode 100644 index 0000000..52fda95 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/fb/sided.json @@ -0,0 +1,12 @@ +{ + "parent": "ariasessentials:block/fb/cube", + "textures": { + "particle": "#side", + "down": "#top", + "up": "#top", + "north": "#side", + "east": "#side", + "south": "#side", + "west": "#side" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/fb/top.json b/src/main/resources/assets/ariasessentials/models/block/fb/top.json new file mode 100644 index 0000000..902d85d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/fb/top.json @@ -0,0 +1,11 @@ +{ + "parent": "ariasessentials:block/fb/fullbright", + "textures": { + "north": "#side", + "south": "#side", + "west": "#side", + "east": "#side", + "up": "#top", + "down": "#side" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/filthy_blue_pool_light.json b/src/main/resources/assets/ariasessentials/models/block/filthy_blue_pool_light.json new file mode 100644 index 0000000..ee08e8d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/filthy_blue_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/filthy_blue_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/filthy_green_pool_light.json b/src/main/resources/assets/ariasessentials/models/block/filthy_green_pool_light.json new file mode 100644 index 0000000..7d27681 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/filthy_green_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/filthy_green_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/filthy_pool_light.json b/src/main/resources/assets/ariasessentials/models/block/filthy_pool_light.json new file mode 100644 index 0000000..6f9d8e7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/filthy_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/filthy_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/filthy_red_pool_light.json b/src/main/resources/assets/ariasessentials/models/block/filthy_red_pool_light.json new file mode 100644 index 0000000..7604167 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/filthy_red_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/filthy_red_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/green_pool_light.json b/src/main/resources/assets/ariasessentials/models/block/green_pool_light.json new file mode 100644 index 0000000..7d9622b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/green_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/green_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/green_pool_tile.json b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile.json new file mode 100644 index 0000000..a3f17f1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_slab.json new file mode 100644 index 0000000..9451373 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/green_pool_tile", + "side": "ariasessentials:block/green_pool_tile", + "top": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_slab_top.json b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_slab_top.json new file mode 100644 index 0000000..f28596f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/green_pool_tile", + "side": "ariasessentials:block/green_pool_tile", + "top": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_stairs.json new file mode 100644 index 0000000..c9378c7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/green_pool_tile", + "side": "ariasessentials:block/green_pool_tile", + "top": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_stairs_inner.json b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_stairs_inner.json new file mode 100644 index 0000000..9d8df48 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/green_pool_tile", + "side": "ariasessentials:block/green_pool_tile", + "top": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_stairs_outer.json b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_stairs_outer.json new file mode 100644 index 0000000..2bd2431 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/green_pool_tile", + "side": "ariasessentials:block/green_pool_tile", + "top": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_wall_inventory.json b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_wall_inventory.json new file mode 100644 index 0000000..6b9ffba --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_wall_post.json b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_wall_post.json new file mode 100644 index 0000000..4fc4b1b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_wall_side.json b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_wall_side.json new file mode 100644 index 0000000..63b766d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_wall_side_tall.json b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_wall_side_tall.json new file mode 100644 index 0000000..90af621 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/item_scrubber.json b/src/main/resources/assets/ariasessentials/models/block/item_scrubber.json new file mode 100644 index 0000000..8907215 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/item_scrubber.json @@ -0,0 +1,274 @@ +{ + "credit": "Made with Blockbench", + "render_type": "minecraft:translucent", + "texture_size": [64, 64], + "textures": { + "0": "ariasessentials:block/scrubber/scrubber_top", + "1": "ariasessentials:block/scrubber/scrubber_old_internal_cube", + "particle": "ariasessentials:block/scrubber/scrubber_old_internal_cube" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [2, 2, 2], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#0"} + } + }, + { + "from": [0, 0, 14], + "to": [2, 2, 16], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#0"} + } + }, + { + "from": [0, 14, 0], + "to": [2, 16, 2], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#0"} + } + }, + { + "from": [0, 14, 14], + "to": [2, 16, 16], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#0"} + } + }, + { + "from": [0, 2, 0], + "to": [1, 14, 1], + "faces": { + "north": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 2, 15], + "to": [1, 14, 16], + "faces": { + "north": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 0, 2], + "to": [1, 1, 14], + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "east": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "west": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 12], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 12], "texture": "#0"} + } + }, + { + "from": [0, 15, 2], + "to": [1, 16, 14], + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "east": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "west": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 12], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 12], "texture": "#0"} + } + }, + { + "from": [14, 0, 14], + "to": [16, 2, 16], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [14, 0, 0], + "to": [16, 2, 2], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [14, 14, 14], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [14, 14, 0], + "to": [16, 16, 2], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [15, 2, 15], + "to": [16, 14, 16], + "faces": { + "north": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 1], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [2, 0, 15], + "to": [14, 1, 16], + "faces": { + "north": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "south": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "up": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [2, 15, 15], + "to": [14, 16, 16], + "faces": { + "north": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "south": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "up": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [2, 15, 0], + "to": [14, 16, 1], + "faces": { + "north": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "south": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "up": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [2, 0, 0], + "to": [14, 1, 1], + "faces": { + "north": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "south": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "up": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [15, 2, 0], + "to": [16, 14, 1], + "faces": { + "north": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 1], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [15, 0, 2], + "to": [16, 1, 14], + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "east": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "west": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 12], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 1, 12], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [15, 15, 2], + "to": [16, 16, 14], + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "east": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "west": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 12], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 1, 12], "rotation": 180, "texture": "#0"} + } + }, + { + "name": "internal", + "from": [2, 2, 2], + "to": [14, 14, 14], + "faces": { + "north": {"uv": [0, 0, 3, 3], "texture": "#1"}, + "east": {"uv": [0, 3, 3, 6], "texture": "#1"}, + "south": {"uv": [3, 0, 6, 3], "texture": "#1"}, + "west": {"uv": [3, 3, 6, 6], "texture": "#1"}, + "up": {"uv": [3, 9, 0, 6], "texture": "#1"}, + "down": {"uv": [9, 0, 6, 3], "texture": "#1"} + } + } + ], + "groups": [ + { + "name": "scrubber", + "origin": [0, 0, 0], + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19] + }, + 20 + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/item_scrubber.json.old b/src/main/resources/assets/ariasessentials/models/block/item_scrubber.json.old new file mode 100644 index 0000000..39edd04 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/item_scrubber.json.old @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "down": "ariasessentials:block/scrubber/scrubber_bottom", + "up": "ariasessentials:block/scrubber/scrubber_top", + "south": "ariasessentials:block/scrubber/scrubber_front", + "west": "ariasessentials:block/scrubber/scrubber_left", + "north": "ariasessentials:block/scrubber/scrubber_back", + "east": "ariasessentials:block/scrubber/scrubber_right" + } + } + \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/layered_compressed_obsidian_block.json b/src/main/resources/assets/ariasessentials/models/block/layered_compressed_obsidian_block.json new file mode 100644 index 0000000..62e220a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/layered_compressed_obsidian_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/layered_compressed_obsidian_block" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/logicgates/redstone_tflipflop.bbmodel b/src/main/resources/assets/ariasessentials/models/block/logicgates/redstone_tflipflop.bbmodel deleted file mode 100644 index 43b17fc..0000000 --- a/src/main/resources/assets/ariasessentials/models/block/logicgates/redstone_tflipflop.bbmodel +++ /dev/null @@ -1 +0,0 @@ -{"meta":{"format_version":"4.9","model_format":"java_block","box_uv":false},"name":"tflipflop_a3","parent":"","ambientocclusion":true,"front_gui_light":false,"visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"unhandled_root_fields":{},"resolution":{"width":16,"height":16},"elements":[{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[0,0,0],"to":[16,0.25,16],"autouv":0,"color":4,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,16,16],"texture":0},"east":{"uv":[0,0,16,16],"texture":0},"south":{"uv":[0,0,16,16],"texture":0},"west":{"uv":[0,0,16,16],"texture":0},"up":{"uv":[0,0,16,16],"rotation":270,"texture":0},"down":{"uv":[16,0,0,16],"rotation":90,"texture":0}},"type":"cube","uuid":"6ee87a67-7b5b-776a-921d-31996e4fc4b1"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[0.25,0.25,0.25],"to":[15.75,0.5,15.75],"autouv":1,"color":3,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,15.5,0.25],"texture":0},"east":{"uv":[0,0,15.5,0.25],"texture":0},"south":{"uv":[0,0,15.5,0.25],"texture":0},"west":{"uv":[0,0,15.5,0.25],"texture":0},"up":{"uv":[0,0,15.5,15.5],"rotation":270,"texture":1},"down":{"uv":[0,0,15.5,15.5],"rotation":90,"texture":null}},"type":"cube","uuid":"70cdfb63-6983-46ac-c64f-5d139ee02b56"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[0,0,0],"to":[16,1,16],"autouv":1,"color":0,"visibility":false,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,16,1]},"east":{"uv":[0,0,16,1]},"south":{"uv":[0,0,16,1]},"west":{"uv":[0,0,16,1]},"up":{"uv":[0,0,16,16]},"down":{"uv":[0,0,16,16]}},"type":"cube","uuid":"1f338881-e5fc-53c8-fedb-910930605af6"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.45,0.5,14],"to":[9.2,3,14.75],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[6,6,9.75,14.5],"texture":3},"east":{"uv":[6,6,9.75,14.5],"texture":3},"south":{"uv":[6,6,9.75,14.5],"texture":3},"west":{"uv":[6,6,9.75,14.5],"texture":3},"up":{"uv":[0,0,0,0],"texture":null},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"50950f94-42c2-35ab-b6fb-fedb87b2395d"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.1,2.9999999999999996,14],"to":[9.549999999999999,3.7499999999999996,14.75],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[4,0,11.75,5.5],"texture":3},"east":{"uv":[0,0,0,0],"texture":null},"south":{"uv":[4,0,11.75,5.5],"texture":4},"west":{"uv":[0,0,0,0],"texture":null},"up":{"uv":[0,0,0,0],"texture":null},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"0063735d-5cf6-9c67-3f27-bed7e2727e0f"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.45,2.9999999999999996,13.65],"to":[9.2,3.7499999999999996,15.1],"autouv":0,"color":0,"origin":[8.825,3.375,14.375],"faces":{"north":{"uv":[0,0,0,0],"texture":null},"east":{"uv":[4,0,11.75,5.5],"texture":4},"south":{"uv":[0,0,0,0],"texture":null},"west":{"uv":[4,0,11.75,5.5],"texture":3},"up":{"uv":[0,0,0,0],"rotation":270,"texture":null},"down":{"uv":[0,0,0,0],"rotation":90,"texture":null}},"type":"cube","uuid":"58793944-9320-7334-09bf-db1b54cb9ee3"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.45,3.475,14],"to":[9.2,3.475,14.75],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,0,0],"texture":null},"east":{"uv":[0,0,0,0],"texture":null},"south":{"uv":[0,0,0,0],"texture":null},"west":{"uv":[0,0,0,0],"texture":null},"up":{"uv":[6,3,10,6],"texture":4},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"99632aba-4240-459b-2f50-b493b19d736a"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.45,2.9999999999999996,3.6500000000000012],"to":[9.2,3.7499999999999996,5.100000000000001],"autouv":0,"color":0,"origin":[8.825,3.375,14.375],"faces":{"north":{"uv":[0,0,0,0],"texture":null},"east":{"uv":[4,0,11.75,5.5],"texture":4},"south":{"uv":[0,0,0,0],"texture":null},"west":{"uv":[4,0,11.75,5.5],"texture":3},"up":{"uv":[0,0,0,0],"rotation":270,"texture":null},"down":{"uv":[0,0,0,0],"rotation":90,"texture":null}},"type":"cube","uuid":"72c4438f-97e0-daf7-bdeb-2d407d7e10f0"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.45,3.475,4],"to":[9.2,3.475,4.75],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,0,0],"texture":null},"east":{"uv":[0,0,0,0],"texture":null},"south":{"uv":[0,0,0,0],"texture":null},"west":{"uv":[0,0,0,0],"texture":null},"up":{"uv":[6,3,10,6],"texture":4},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"3c957cbf-f24a-3cea-f5ec-adf23ca7b13a"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.1,2.9999999999999996,4],"to":[9.549999999999999,3.7499999999999996,4.75],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[4,0,11.75,5.5],"texture":3},"east":{"uv":[0,0,0,0],"texture":null},"south":{"uv":[4,0,11.75,5.5],"texture":4},"west":{"uv":[0,0,0,0],"texture":null},"up":{"uv":[0,0,0,0],"texture":null},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"9988af10-7d03-de99-6ce1-848daf21060e"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.45,0.5,4],"to":[9.2,3,4.75],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[6,6,9.75,14.5],"texture":3},"east":{"uv":[6,6,9.75,14.5],"texture":3},"south":{"uv":[6,6,9.75,14.5],"texture":3},"west":{"uv":[6,6,9.75,14.5],"texture":3},"up":{"uv":[0,0,0,0],"texture":null},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"0cb29969-f4dc-85fc-d05d-7e99798645e3"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.45,0.5,0.7999999999999992],"to":[9.2,3,1.5500000000000012],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[6,6,9.75,14.5],"texture":3},"east":{"uv":[6,6,9.75,14.5],"texture":3},"south":{"uv":[6,6,9.75,14.5],"texture":3},"west":{"uv":[6,6,9.75,14.5],"texture":3},"up":{"uv":[0,0,0,0],"texture":null},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"080f4854-60e7-f6e0-5338-3ea9a130e7bc"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.1,2.9999999999999996,0.7999999999999992],"to":[9.549999999999999,3.7499999999999996,1.5500000000000012],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[4,0,11.75,5.5],"texture":4},"east":{"uv":[0,0,0,0],"texture":null},"south":{"uv":[4,0,11.75,5.5],"texture":4},"west":{"uv":[0,0,0,0],"texture":null},"up":{"uv":[0,0,0,0],"texture":null},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"e1db51fc-226b-674e-d348-d25f4a1aa922"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.45,3.475,0.7999999999999992],"to":[9.2,3.475,1.5500000000000012],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,0,0],"texture":null},"east":{"uv":[0,0,0,0],"texture":null},"south":{"uv":[0,0,0,0],"texture":null},"west":{"uv":[0,0,0,0],"texture":null},"up":{"uv":[6,3,10,6],"texture":4},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"16a39391-83a7-8925-71ae-966f1cc2621a"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.45,2.9999999999999996,0.4500000000000002],"to":[9.2,3.7499999999999996,1.9000000000000035],"autouv":0,"color":0,"origin":[8.825,3.375,14.375],"faces":{"north":{"uv":[0,0,0,0],"texture":null},"east":{"uv":[4,0,11.75,5.5],"texture":4},"south":{"uv":[0,0,0,0],"texture":null},"west":{"uv":[4,0,11.75,5.5],"texture":4},"up":{"uv":[0,0,0,0],"rotation":270,"texture":null},"down":{"uv":[0,0,0,0],"rotation":90,"texture":null}},"type":"cube","uuid":"3029845f-7d2a-b01b-32fd-6cff43f268cf"}],"outliner":[{"name":"base","origin":[0,0,0],"color":0,"nbt":"{}","uuid":"08890b43-7b79-31ac-b4ae-af59395020c5","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["70cdfb63-6983-46ac-c64f-5d139ee02b56","6ee87a67-7b5b-776a-921d-31996e4fc4b1"]},{"name":"input","origin":[0,0,0],"color":0,"nbt":"{}","uuid":"fce1f3ca-f703-4418-f950-f2fddb1d35d7","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["50950f94-42c2-35ab-b6fb-fedb87b2395d","0063735d-5cf6-9c67-3f27-bed7e2727e0f","99632aba-4240-459b-2f50-b493b19d736a","58793944-9320-7334-09bf-db1b54cb9ee3"]},{"name":"state","origin":[0,0,0],"color":0,"nbt":"{}","uuid":"8fd3a6eb-cf3b-05b3-e33b-76c89aaff656","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["0cb29969-f4dc-85fc-d05d-7e99798645e3","9988af10-7d03-de99-6ce1-848daf21060e","3c957cbf-f24a-3cea-f5ec-adf23ca7b13a","72c4438f-97e0-daf7-bdeb-2d407d7e10f0"]},{"name":"state","origin":[0,0,0],"color":0,"nbt":"{}","uuid":"3e88a852-6489-cc81-d9ff-d46768d979b4","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["080f4854-60e7-f6e0-5338-3ea9a130e7bc","e1db51fc-226b-674e-d348-d25f4a1aa922","16a39391-83a7-8925-71ae-966f1cc2621a","3029845f-7d2a-b01b-32fd-6cff43f268cf"]},{"name":"VoxelShapes","origin":[8,8,8],"color":0,"nbt":"{}","uuid":"cabc1e95-9318-0ad0-037a-7acb1f6d1fa4","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":false,"autouv":0,"children":["1f338881-e5fc-53c8-fedb-910930605af6"]}],"textures":[{"path":"/media/tara/Data/DevEnv/Minecraft/Mods/Arias-Essentials/src/main/resources/assets/ariasessentials/textures/block/logicgates/logic_gate.png","name":"logic_gate.png","folder":"block/logicgates","namespace":"ariasessentials","id":"0","width":16,"height":16,"uv_width":32,"uv_height":32,"particle":true,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"fc146ff8-eb63-70f5-b4c1-f6e9c0a3d522","relative_path":"../../../../textures/block/logicgates/logic_gate.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAQRJREFUOE91k9uKhTAMRRv1q31QBFFEP1ntsDOzJCfjKQTb2qzuXGrjONau60rbtoWv5k3TFEattciu6yrneT6mtU3TVOUAQI6am5mbRgYAcsA8z1VOMilgDkDOGvd9u0mBHDFblsUBckA68rUHgBAEwVlz27atchsg1gAIARURYvu+u0YdBkDyvgGiGjuO4zfIUv5lXkDdFvOQ1XwAYtZRhUPMRYQ4gJ9P4f9KlxVQ0lhazwHENwUK4W1wqVchK2CNAsJ5A9m6ro+CGHdsJJTlr59XJ0YFlI6y6l/si6jG9/UWMuDNIffJc2YYhg9A7EZamr38ThzS970DiI+XmEH5lQL7AYuQKCQQq/dmAAAAAElFTkSuQmCC"},{"path":"/media/tara/Data/DevEnv/Minecraft/Mods/Arias-Essentials/src/main/resources/assets/ariasessentials/textures/block/logicgates/tflipflop.png","name":"tflipflop.png","folder":"block/logicgates","namespace":"ariasessentials","id":"1","width":16,"height":16,"uv_width":16,"uv_height":16,"particle":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"ad2c5c62-9aaf-8c8e-b419-d8a21cfc2b74","relative_path":"../../../../textures/block/logicgates/tflipflop.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAWtJREFUOE91kz1qw0AQhWdlVTmKEbh3nb/GuPFNbLBxISEQsmXpKDIGNwkktXujY6RPZWnDm+SJ1SZZGPZv5tu3s7MmSRIbhqGMRiNhj3EQBMJmrRVY27Zyu916w9ykaWoRQAACMTbGqKH5AIIUkGWZRRAMCjgmAMFoXdepQQECaSbPcwUggNIpH2sE8AqAMBhjUxSF5WkEcU4Ar0AVLsSUZaka4UwAk/cfwFVjqqr6vqSIAuq6lsViodIxx2luHnw1AwBOPB6Pcne5yHNVqaqX5VKeylIh1+u1f1oMxuOxKOB1tdINOJ5OJwU8Hg6qAHsPRSFv67V8TCYDQBRFojmgLDh9Tqcyn881AO1+v5f3zUb7pml+A/AKvCN2z+ezzGazPifIAZM8iP6ZmN1u1yugI4BuIbEi/V79UYmuAj4dn9WF/QXSv+AD3EKiKr9Oep84jgcAtxpZ0lzz/4lCttutAiiPP9EH+b+UsC+heB6jdMm9ewAAAABJRU5ErkJggg=="},{"path":"/media/tara/Data/DevEnv/Minecraft/Mods/Arias-Essentials/src/main/resources/assets/ariasessentials/textures/block/logicgates/locked_bar.png","name":"locked_bar.png","folder":"block/logicgates","namespace":"ariasessentials","id":"2","width":16,"height":16,"uv_width":16,"uv_height":16,"particle":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"b7624b75-7c1f-ec24-cb46-69865ce1f1d9","relative_path":"../../../../textures/block/logicgates/locked_bar.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAElJREFUOE9jVFdX/89AANy8eZMRlxJGqhigY+XLcOXYZgZ8NuF1AVUMWDu/B6c/8QUROAxALhg1YCDDgFAyJiRPVtwjGzoMDAAAj+cyEWdOocgAAAAASUVORK5CYII="},{"path":"/media/tara/Data/DevEnv/Minecraft/Mods/Arias-Essentials/src/main/resources/assets/ariasessentials/textures/block/logicgates/torch_off.png","name":"torch_off.png","folder":"block/logicgates","namespace":"ariasessentials","id":"3","width":16,"height":16,"uv_width":16,"uv_height":16,"particle":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"e424e05b-ce6b-2b7c-d1b3-9ecfcecf09a6","relative_path":"../../../../textures/block/logicgates/torch_off.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAKFJREFUOE/d070OQUEUBOCZ4yE0EsVNqNVK0Sg8KqKj1XoAIQqFxjswMndV/uLkdrbbZM+XM5Ms0fCw4Ty+AXrC3779Z2DQDjkfIVDA9lJfX87HDoadAkBGgM35lgNG3RDJGggA69M1B0yqAngqBCyPSWDaCwUIL+EOZvs00HqUWDqY5wEvXoYdZJEG+g/AEQzskhHGFSUQYYDE6pAEfv2ld1SuLxFu9BJNAAAAAElFTkSuQmCC"},{"path":"/media/tara/Data/DevEnv/Minecraft/Mods/Arias-Essentials/src/main/resources/assets/ariasessentials/textures/block/logicgates/torch_on.png","name":"torch_on.png","folder":"block/logicgates","namespace":"ariasessentials","id":"4","width":16,"height":16,"uv_width":16,"uv_height":16,"particle":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"64e004b0-acdb-af16-1327-e8ed2a4c1558","relative_path":"../../../../textures/block/logicgates/torch_on.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAQhJREFUOE+Vk7FKBDEQhr+JbAwWFoLYCBYHWltbio2FzyLX6fvYeoedtrY+gCgWFjaHreua9XZkNnuCt7dgpgkJM1/+/w8RBuoCdNN7PoCtGBmDrGpdeWiNY+91G/IBl6BlCJTOEYDP7tqyaaCquFpS0lNwHoLazC+gKKCuyQbM1h2x8MxRiDUbsaEEJlX159KegoWF95AA3zG26YWvfwIWSR/uOLVBQRGFh1m77dXgKxztJoA5sPX+rckDHO85FZEW4IC713ke4HSUADblFG5eMgFn+04dgomwDK6fsgFrXYgpg0k+wISnYTMyzQYcdACzYIDHTAsnI1FFcAYQ4fY5EzD0zZfPfwA8c2QRtqPBGAAAAABJRU5ErkJggg=="}],"display":{"thirdperson_righthand":{"translation":[0,4.5,0],"scale":[0.5,0.5,0.5]},"thirdperson_lefthand":{"translation":[0,4,0],"scale":[0.5,0.5,0.5]},"firstperson_righthand":{"translation":[0,3.5,0],"scale":[0.5,0.5,0.5]},"firstperson_lefthand":{"translation":[0,4.5,0],"scale":[0.5,0.5,0.5]},"ground":{"scale":[0.5,0.5,0.5]},"gui":{"rotation":[45,45,0],"translation":[0,-0.5,0],"scale":[0.5,0.5,0.5]},"head":{"translation":[0,14.25,0]},"fixed":{"rotation":[-90,0,0],"translation":[0,0,-3.75],"scale":[0.5,0.5,0.5]}}} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/logicgates/tflipflop.json b/src/main/resources/assets/ariasessentials/models/block/logicgates/tflipflop.json deleted file mode 100644 index 2453cba..0000000 --- a/src/main/resources/assets/ariasessentials/models/block/logicgates/tflipflop.json +++ /dev/null @@ -1,200 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "ariasessentials:block/logicgates/logic_gate", - "1": "ariasessentials:block/logicgates/tflipflop", - "3": "ariasessentials:block/logicgates/torch_off", - "particle": "ariasessentials:block/logicgates/logic_gate" - }, - "elements": [ - { - "from": [0.25, 0.25, 0.25], - "to": [15.75, 0.5, 15.75], - "faces": { - "north": {"uv": [0, 0, 15.5, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 15.5, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 15.5, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 15.5, 0.25], "texture": "#0"}, - "up": {"uv": [0, 0, 15.5, 15.5], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 0.25, 16], - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 270, "texture": "#0"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [8.45, 0.5, 14], - "to": [9.2, 3, 14.75], - "faces": { - "north": {"uv": [6, 6, 9.75, 14.5], "texture": "#3"}, - "east": {"uv": [6, 6, 9.75, 14.5], "texture": "#3"}, - "south": {"uv": [6, 6, 9.75, 14.5], "texture": "#3"}, - "west": {"uv": [6, 6, 9.75, 14.5], "texture": "#3"} - } - }, - { - "from": [8.1, 3, 14], - "to": [9.55, 3.75, 14.75], - "faces": { - "north": {"uv": [4, 0, 11.75, 5.5], "texture": "#3"}, - "south": {"uv": [4, 0, 11.75, 5.5], "texture": "#3"} - } - }, - { - "from": [8.45, 3.475, 14], - "to": [9.2, 3.475, 14.75], - "faces": { - "up": {"uv": [6, 3, 10, 6], "texture": "#3"} - } - }, - { - "from": [8.45, 3, 13.65], - "to": [9.2, 3.75, 15.1], - "rotation": {"angle": 0, "axis": "y", "origin": [8.825, 3.375, 14.375]}, - "faces": { - "east": {"uv": [4, 0, 11.75, 5.5], "texture": "#3"}, - "west": {"uv": [4, 0, 11.75, 5.5], "texture": "#3"} - } - }, - { - "from": [8.45, 0.5, 4], - "to": [9.2, 3, 4.75], - "faces": { - "north": {"uv": [6, 6, 9.75, 14.5], "texture": "#3"}, - "east": {"uv": [6, 6, 9.75, 14.5], "texture": "#3"}, - "south": {"uv": [6, 6, 9.75, 14.5], "texture": "#3"}, - "west": {"uv": [6, 6, 9.75, 14.5], "texture": "#3"} - } - }, - { - "from": [8.1, 3, 4], - "to": [9.55, 3.75, 4.75], - "faces": { - "north": {"uv": [4, 0, 11.75, 5.5], "texture": "#3"}, - "south": {"uv": [4, 0, 11.75, 5.5], "texture": "#3"} - } - }, - { - "from": [8.45, 3.475, 4], - "to": [9.2, 3.475, 4.75], - "faces": { - "up": {"uv": [6, 3, 10, 6], "texture": "#3"} - } - }, - { - "from": [8.45, 3, 3.65], - "to": [9.2, 3.75, 5.1], - "rotation": {"angle": 0, "axis": "y", "origin": [8.825, 3.375, 14.375]}, - "faces": { - "east": {"uv": [4, 0, 11.75, 5.5], "texture": "#3"}, - "west": {"uv": [4, 0, 11.75, 5.5], "texture": "#3"} - } - }, - { - "from": [8.45, 0.5, 0.8], - "to": [9.2, 3, 1.55], - "faces": { - "north": {"uv": [6, 6, 9.75, 14.5], "texture": "#3"}, - "east": {"uv": [6, 6, 9.75, 14.5], "texture": "#3"}, - "south": {"uv": [6, 6, 9.75, 14.5], "texture": "#3"}, - "west": {"uv": [6, 6, 9.75, 14.5], "texture": "#3"} - } - }, - { - "from": [8.1, 3, 0.8], - "to": [9.55, 3.75, 1.55], - "faces": { - "north": {"uv": [4, 0, 11.75, 5.5], "texture": "#3"}, - "south": {"uv": [4, 0, 11.75, 5.5], "texture": "#3"} - } - }, - { - "from": [8.45, 3.475, 0.8], - "to": [9.2, 3.475, 1.55], - "faces": { - "up": {"uv": [6, 3, 10, 6], "texture": "#3"} - } - }, - { - "from": [8.45, 3, 0.45], - "to": [9.2, 3.75, 1.9], - "rotation": {"angle": 0, "axis": "y", "origin": [8.825, 3.375, 14.375]}, - "faces": { - "east": {"uv": [4, 0, 11.75, 5.5], "texture": "#3"}, - "west": {"uv": [4, 0, 11.75, 5.5], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 4.5, 0], - "scale": [0.5, 0.5, 0.5] - }, - "thirdperson_lefthand": { - "translation": [0, 4, 0], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_righthand": { - "translation": [0, 3.5, 0], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "translation": [0, 4.5, 0], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [45, 45, 0], - "translation": [0, -0.5, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "translation": [0, 14.25, 0] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, -3.75], - "scale": [0.5, 0.5, 0.5] - } - }, - "groups": [ - { - "name": "base", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "children": [0, 1] - }, - { - "name": "input", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "children": [2, 3, 4, 5] - }, - { - "name": "state", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "children": [6, 7, 8, 9] - }, - { - "name": "state", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "children": [10, 11, 12, 13] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/magical_scrubber.json b/src/main/resources/assets/ariasessentials/models/block/magical_scrubber.json new file mode 100644 index 0000000..8b0b0bb --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/magical_scrubber.json @@ -0,0 +1,1489 @@ +{ + "credit": "Made with Blockbench", + "render_type": "minecraft:translucent", + "texture_size": [32, 32], + "textures": { + "0": "ariasessentials:block/scrubber/center_cube", + "1": "ariasessentials:block/scrubber/frame_bars", + "2": "ariasessentials:block/scrubber/inner_corner_cubes", + "3": "ariasessentials:block/scrubber/corner_cube", + "particle": "ariasessentials:block/scrubber/center_cube" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [1, 1, 3], + "faces": { + "north": {"uv": [1.5, 0.5, 2, 1], "texture": "#3"}, + "east": {"uv": [0, 0, 1.5, 0.5], "texture": "#3"}, + "south": {"uv": [2, 0.5, 2.5, 1], "texture": "#3"}, + "west": {"uv": [0, 0.5, 1.5, 1], "texture": "#3"}, + "up": {"uv": [0.5, 2.5, 0, 1], "texture": "#3"}, + "down": {"uv": [1, 1, 0.5, 2.5], "texture": "#3"} + } + }, + { + "from": [2, 0, 0], + "to": [3, 1, 3], + "faces": { + "north": {"uv": [3.5, 1, 4, 1.5], "texture": "#3"}, + "east": {"uv": [1, 1, 2.5, 1.5], "texture": "#3"}, + "south": {"uv": [3.5, 1.5, 4, 2], "texture": "#3"}, + "west": {"uv": [1.5, 0, 3, 0.5], "texture": "#3"}, + "up": {"uv": [1.5, 3, 1, 1.5], "texture": "#3"}, + "down": {"uv": [2, 1.5, 1.5, 3], "texture": "#3"} + } + }, + { + "from": [1, 0, 0], + "to": [2, 1, 1], + "faces": { + "north": {"uv": [2, 3.5, 2.5, 4], "texture": "#3"}, + "east": {"uv": [3.5, 2, 4, 2.5], "texture": "#3"}, + "south": {"uv": [2.5, 3.5, 3, 4], "texture": "#3"}, + "west": {"uv": [3.5, 2.5, 4, 3], "texture": "#3"}, + "up": {"uv": [4, 3.5, 3.5, 3], "texture": "#3"}, + "down": {"uv": [4, 3.5, 3.5, 4], "texture": "#3"} + } + }, + { + "from": [1, 0, 2], + "to": [2, 1, 3], + "faces": { + "north": {"uv": [4, 0, 4.5, 0.5], "texture": "#3"}, + "east": {"uv": [4, 0.5, 4.5, 1], "texture": "#3"}, + "south": {"uv": [1, 4, 1.5, 4.5], "texture": "#3"}, + "west": {"uv": [4, 1, 4.5, 1.5], "texture": "#3"}, + "up": {"uv": [2, 4.5, 1.5, 4], "texture": "#3"}, + "down": {"uv": [4.5, 1.5, 4, 2], "texture": "#3"} + } + }, + { + "from": [2, 1, 0], + "to": [3, 3, 1], + "faces": { + "north": {"uv": [2, 1.5, 2.5, 2.5], "texture": "#3"}, + "east": {"uv": [0, 2.5, 0.5, 3.5], "texture": "#3"}, + "south": {"uv": [0.5, 2.5, 1, 3.5], "texture": "#3"}, + "west": {"uv": [2.5, 0.5, 3, 1.5], "texture": "#3"}, + "up": {"uv": [2.5, 4.5, 2, 4], "texture": "#3"}, + "down": {"uv": [4.5, 2, 4, 2.5], "texture": "#3"} + } + }, + { + "from": [1, 2, 0], + "to": [2, 3, 1], + "faces": { + "north": {"uv": [2.5, 4, 3, 4.5], "texture": "#3"}, + "east": {"uv": [4, 2.5, 4.5, 3], "texture": "#3"}, + "south": {"uv": [3, 4, 3.5, 4.5], "texture": "#3"}, + "west": {"uv": [4, 3, 4.5, 3.5], "texture": "#3"}, + "up": {"uv": [4, 4.5, 3.5, 4], "texture": "#3"}, + "down": {"uv": [4.5, 3.5, 4, 4], "texture": "#3"} + } + }, + { + "from": [0, 1, 0], + "to": [1, 3, 1], + "faces": { + "north": {"uv": [2.5, 1.5, 3, 2.5], "texture": "#3"}, + "east": {"uv": [2, 2.5, 2.5, 3.5], "texture": "#3"}, + "south": {"uv": [2.5, 2.5, 3, 3.5], "texture": "#3"}, + "west": {"uv": [3, 0, 3.5, 1], "texture": "#3"}, + "up": {"uv": [4.5, 4.5, 4, 4], "texture": "#3"}, + "down": {"uv": [0.5, 4.5, 0, 5], "texture": "#3"} + } + }, + { + "from": [0, 1, 2], + "to": [1, 3, 3], + "faces": { + "north": {"uv": [1, 3, 1.5, 4], "texture": "#3"}, + "east": {"uv": [3, 1, 3.5, 2], "texture": "#3"}, + "south": {"uv": [1.5, 3, 2, 4], "texture": "#3"}, + "west": {"uv": [3, 2, 3.5, 3], "texture": "#3"}, + "up": {"uv": [5, 0.5, 4.5, 0], "texture": "#3"}, + "down": {"uv": [1, 4.5, 0.5, 5], "texture": "#3"} + } + }, + { + "from": [1, 2, 2], + "to": [2, 3, 3], + "faces": { + "north": {"uv": [4.5, 0.5, 5, 1], "texture": "#3"}, + "east": {"uv": [1, 4.5, 1.5, 5], "texture": "#3"}, + "south": {"uv": [4.5, 1, 5, 1.5], "texture": "#3"}, + "west": {"uv": [1.5, 4.5, 2, 5], "texture": "#3"}, + "up": {"uv": [5, 2, 4.5, 1.5], "texture": "#3"}, + "down": {"uv": [2.5, 4.5, 2, 5], "texture": "#3"} + } + }, + { + "from": [2, 2, 1], + "to": [3, 3, 2], + "faces": { + "north": {"uv": [4.5, 2, 5, 2.5], "texture": "#3"}, + "east": {"uv": [2.5, 4.5, 3, 5], "texture": "#3"}, + "south": {"uv": [4.5, 2.5, 5, 3], "texture": "#3"}, + "west": {"uv": [3, 4.5, 3.5, 5], "texture": "#3"}, + "up": {"uv": [5, 3.5, 4.5, 3], "texture": "#3"}, + "down": {"uv": [4, 4.5, 3.5, 5], "texture": "#3"} + } + }, + { + "from": [0, 2, 1], + "to": [1, 3, 2], + "faces": { + "north": {"uv": [4.5, 3.5, 5, 4], "texture": "#3"}, + "east": {"uv": [4, 4.5, 4.5, 5], "texture": "#3"}, + "south": {"uv": [4.5, 4, 5, 4.5], "texture": "#3"}, + "west": {"uv": [4.5, 4.5, 5, 5], "texture": "#3"}, + "up": {"uv": [0.5, 5.5, 0, 5], "texture": "#3"}, + "down": {"uv": [5.5, 0, 5, 0.5], "texture": "#3"} + } + }, + { + "from": [2, 1, 2], + "to": [3, 3, 3], + "faces": { + "north": {"uv": [3, 3, 3.5, 4], "texture": "#3"}, + "east": {"uv": [0, 3.5, 0.5, 4.5], "texture": "#3"}, + "south": {"uv": [3.5, 0, 4, 1], "texture": "#3"}, + "west": {"uv": [0.5, 3.5, 1, 4.5], "texture": "#3"}, + "up": {"uv": [1, 5.5, 0.5, 5], "texture": "#3"}, + "down": {"uv": [5.5, 0.5, 5, 1], "texture": "#3"} + } + }, + { + "from": [0, 0, 13], + "to": [1, 1, 16], + "faces": { + "north": {"uv": [5.5, 2.5, 6, 3], "texture": "#3"}, + "east": {"uv": [1, 5, 2.5, 5.5], "texture": "#3"}, + "south": {"uv": [6, 2.5, 6.5, 3], "texture": "#3"}, + "west": {"uv": [5, 1, 6.5, 1.5], "texture": "#3"}, + "up": {"uv": [5.5, 3, 5, 1.5], "texture": "#3"}, + "down": {"uv": [3, 5, 2.5, 6.5], "texture": "#3"} + } + }, + { + "from": [2, 0, 13], + "to": [3, 1, 16], + "faces": { + "north": {"uv": [6, 3.5, 6.5, 4], "texture": "#3"}, + "east": {"uv": [3, 5, 4.5, 5.5], "texture": "#3"}, + "south": {"uv": [6, 4, 6.5, 4.5], "texture": "#3"}, + "west": {"uv": [5, 3, 6.5, 3.5], "texture": "#3"}, + "up": {"uv": [5.5, 5, 5, 3.5], "texture": "#3"}, + "down": {"uv": [5, 5, 4.5, 6.5], "texture": "#3"} + } + }, + { + "from": [1, 0, 13], + "to": [2, 1, 14], + "faces": { + "north": {"uv": [6, 4.5, 6.5, 5], "texture": "#3"}, + "east": {"uv": [5, 6, 5.5, 6.5], "texture": "#3"}, + "south": {"uv": [6, 5, 6.5, 5.5], "texture": "#3"}, + "west": {"uv": [6, 5.5, 6.5, 6], "texture": "#3"}, + "up": {"uv": [6.5, 6.5, 6, 6], "texture": "#3"}, + "down": {"uv": [0.5, 6.5, 0, 7], "texture": "#3"} + } + }, + { + "from": [1, 0, 15], + "to": [2, 1, 16], + "faces": { + "north": {"uv": [6.5, 0, 7, 0.5], "texture": "#3"}, + "east": {"uv": [0.5, 6.5, 1, 7], "texture": "#3"}, + "south": {"uv": [6.5, 0.5, 7, 1], "texture": "#3"}, + "west": {"uv": [1, 6.5, 1.5, 7], "texture": "#3"}, + "up": {"uv": [7, 1.5, 6.5, 1], "texture": "#3"}, + "down": {"uv": [2, 6.5, 1.5, 7], "texture": "#3"} + } + }, + { + "from": [2, 1, 13], + "to": [3, 3, 14], + "faces": { + "north": {"uv": [5, 5, 5.5, 6], "texture": "#3"}, + "east": {"uv": [0, 5.5, 0.5, 6.5], "texture": "#3"}, + "south": {"uv": [5.5, 0, 6, 1], "texture": "#3"}, + "west": {"uv": [0.5, 5.5, 1, 6.5], "texture": "#3"}, + "up": {"uv": [7, 2, 6.5, 1.5], "texture": "#3"}, + "down": {"uv": [2.5, 6.5, 2, 7], "texture": "#3"} + } + }, + { + "from": [1, 2, 13], + "to": [2, 3, 14], + "faces": { + "north": {"uv": [6.5, 2, 7, 2.5], "texture": "#3"}, + "east": {"uv": [2.5, 6.5, 3, 7], "texture": "#3"}, + "south": {"uv": [6.5, 2.5, 7, 3], "texture": "#3"}, + "west": {"uv": [3, 6.5, 3.5, 7], "texture": "#3"}, + "up": {"uv": [7, 3.5, 6.5, 3], "texture": "#3"}, + "down": {"uv": [4, 6.5, 3.5, 7], "texture": "#3"} + } + }, + { + "from": [0, 1, 13], + "to": [1, 3, 14], + "faces": { + "north": {"uv": [1, 5.5, 1.5, 6.5], "texture": "#3"}, + "east": {"uv": [1.5, 5.5, 2, 6.5], "texture": "#3"}, + "south": {"uv": [5.5, 1.5, 6, 2.5], "texture": "#3"}, + "west": {"uv": [2, 5.5, 2.5, 6.5], "texture": "#3"}, + "up": {"uv": [7, 4, 6.5, 3.5], "texture": "#3"}, + "down": {"uv": [4.5, 6.5, 4, 7], "texture": "#3"} + } + }, + { + "from": [0, 1, 15], + "to": [1, 3, 16], + "faces": { + "north": {"uv": [3, 5.5, 3.5, 6.5], "texture": "#3"}, + "east": {"uv": [3.5, 5.5, 4, 6.5], "texture": "#3"}, + "south": {"uv": [5.5, 3.5, 6, 4.5], "texture": "#3"}, + "west": {"uv": [4, 5.5, 4.5, 6.5], "texture": "#3"}, + "up": {"uv": [7, 4.5, 6.5, 4], "texture": "#3"}, + "down": {"uv": [5, 6.5, 4.5, 7], "texture": "#3"} + } + }, + { + "from": [1, 2, 15], + "to": [2, 3, 16], + "faces": { + "north": {"uv": [6.5, 4.5, 7, 5], "texture": "#3"}, + "east": {"uv": [5, 6.5, 5.5, 7], "texture": "#3"}, + "south": {"uv": [6.5, 5, 7, 5.5], "texture": "#3"}, + "west": {"uv": [5.5, 6.5, 6, 7], "texture": "#3"}, + "up": {"uv": [7, 6, 6.5, 5.5], "texture": "#3"}, + "down": {"uv": [6.5, 6.5, 6, 7], "texture": "#3"} + } + }, + { + "from": [2, 2, 14], + "to": [3, 3, 15], + "faces": { + "north": {"uv": [6.5, 6, 7, 6.5], "texture": "#3"}, + "east": {"uv": [6.5, 6.5, 7, 7], "texture": "#3"}, + "south": {"uv": [0, 7, 0.5, 7.5], "texture": "#3"}, + "west": {"uv": [7, 0, 7.5, 0.5], "texture": "#3"}, + "up": {"uv": [1, 7.5, 0.5, 7], "texture": "#3"}, + "down": {"uv": [7.5, 0.5, 7, 1], "texture": "#3"} + } + }, + { + "from": [0, 2, 14], + "to": [1, 3, 15], + "faces": { + "north": {"uv": [1, 7, 1.5, 7.5], "texture": "#3"}, + "east": {"uv": [7, 1, 7.5, 1.5], "texture": "#3"}, + "south": {"uv": [1.5, 7, 2, 7.5], "texture": "#3"}, + "west": {"uv": [7, 1.5, 7.5, 2], "texture": "#3"}, + "up": {"uv": [2.5, 7.5, 2, 7], "texture": "#3"}, + "down": {"uv": [7.5, 2, 7, 2.5], "texture": "#3"} + } + }, + { + "from": [2, 1, 15], + "to": [3, 3, 16], + "faces": { + "north": {"uv": [5.5, 4.5, 6, 5.5], "texture": "#3"}, + "east": {"uv": [5.5, 5.5, 6, 6.5], "texture": "#3"}, + "south": {"uv": [6, 0, 6.5, 1], "texture": "#3"}, + "west": {"uv": [6, 1.5, 6.5, 2.5], "texture": "#3"}, + "up": {"uv": [3, 7.5, 2.5, 7], "texture": "#3"}, + "down": {"uv": [7.5, 2.5, 7, 3], "texture": "#3"} + } + }, + { + "from": [13, 0, 13], + "to": [14, 1, 16], + "faces": { + "north": {"uv": [7.5, 4.5, 8, 5], "texture": "#3"}, + "east": {"uv": [3, 7, 4.5, 7.5], "texture": "#3"}, + "south": {"uv": [7.5, 5.5, 8, 6], "texture": "#3"}, + "west": {"uv": [7, 3, 8.5, 3.5], "texture": "#3"}, + "up": {"uv": [7.5, 5, 7, 3.5], "texture": "#3"}, + "down": {"uv": [5, 7, 4.5, 8.5], "texture": "#3"} + } + }, + { + "from": [15, 0, 13], + "to": [16, 1, 16], + "faces": { + "north": {"uv": [6, 7.5, 6.5, 8], "texture": "#3"}, + "east": {"uv": [5, 7, 6.5, 7.5], "texture": "#3"}, + "south": {"uv": [7.5, 6, 8, 6.5], "texture": "#3"}, + "west": {"uv": [7, 5, 8.5, 5.5], "texture": "#3"}, + "up": {"uv": [7.5, 7, 7, 5.5], "texture": "#3"}, + "down": {"uv": [7, 7, 6.5, 8.5], "texture": "#3"} + } + }, + { + "from": [14, 0, 13], + "to": [15, 1, 14], + "faces": { + "north": {"uv": [7.5, 6.5, 8, 7], "texture": "#3"}, + "east": {"uv": [7.5, 7, 8, 7.5], "texture": "#3"}, + "south": {"uv": [7.5, 7.5, 8, 8], "texture": "#3"}, + "west": {"uv": [8, 0, 8.5, 0.5], "texture": "#3"}, + "up": {"uv": [8.5, 1, 8, 0.5], "texture": "#3"}, + "down": {"uv": [8.5, 1, 8, 1.5], "texture": "#3"} + } + }, + { + "from": [14, 0, 15], + "to": [15, 1, 16], + "faces": { + "north": {"uv": [8, 1.5, 8.5, 2], "texture": "#3"}, + "east": {"uv": [8, 2, 8.5, 2.5], "texture": "#3"}, + "south": {"uv": [8, 2.5, 8.5, 3], "texture": "#3"}, + "west": {"uv": [8, 3.5, 8.5, 4], "texture": "#3"}, + "up": {"uv": [8.5, 4.5, 8, 4], "texture": "#3"}, + "down": {"uv": [8.5, 4.5, 8, 5], "texture": "#3"} + } + }, + { + "from": [15, 1, 13], + "to": [16, 3, 14], + "faces": { + "north": {"uv": [7, 7, 7.5, 8], "texture": "#3"}, + "east": {"uv": [0, 7.5, 0.5, 8.5], "texture": "#3"}, + "south": {"uv": [7.5, 0, 8, 1], "texture": "#3"}, + "west": {"uv": [0.5, 7.5, 1, 8.5], "texture": "#3"}, + "up": {"uv": [8.5, 6, 8, 5.5], "texture": "#3"}, + "down": {"uv": [6.5, 8, 6, 8.5], "texture": "#3"} + } + }, + { + "from": [14, 2, 13], + "to": [15, 3, 14], + "faces": { + "north": {"uv": [8, 6, 8.5, 6.5], "texture": "#3"}, + "east": {"uv": [8, 6.5, 8.5, 7], "texture": "#3"}, + "south": {"uv": [7, 8, 7.5, 8.5], "texture": "#3"}, + "west": {"uv": [8, 7, 8.5, 7.5], "texture": "#3"}, + "up": {"uv": [8, 8.5, 7.5, 8], "texture": "#3"}, + "down": {"uv": [8.5, 7.5, 8, 8], "texture": "#3"} + } + }, + { + "from": [13, 1, 13], + "to": [14, 3, 14], + "faces": { + "north": {"uv": [1, 7.5, 1.5, 8.5], "texture": "#3"}, + "east": {"uv": [7.5, 1, 8, 2], "texture": "#3"}, + "south": {"uv": [1.5, 7.5, 2, 8.5], "texture": "#3"}, + "west": {"uv": [2, 7.5, 2.5, 8.5], "texture": "#3"}, + "up": {"uv": [8.5, 8.5, 8, 8], "texture": "#3"}, + "down": {"uv": [0.5, 8.5, 0, 9], "texture": "#3"} + } + }, + { + "from": [13, 1, 15], + "to": [14, 3, 16], + "faces": { + "north": {"uv": [7.5, 2, 8, 3], "texture": "#3"}, + "east": {"uv": [2.5, 7.5, 3, 8.5], "texture": "#3"}, + "south": {"uv": [3, 7.5, 3.5, 8.5], "texture": "#3"}, + "west": {"uv": [3.5, 7.5, 4, 8.5], "texture": "#3"}, + "up": {"uv": [9, 0.5, 8.5, 0], "texture": "#3"}, + "down": {"uv": [1, 8.5, 0.5, 9], "texture": "#3"} + } + }, + { + "from": [14, 2, 15], + "to": [15, 3, 16], + "faces": { + "north": {"uv": [8.5, 0.5, 9, 1], "texture": "#3"}, + "east": {"uv": [1, 8.5, 1.5, 9], "texture": "#3"}, + "south": {"uv": [8.5, 1, 9, 1.5], "texture": "#3"}, + "west": {"uv": [1.5, 8.5, 2, 9], "texture": "#3"}, + "up": {"uv": [9, 2, 8.5, 1.5], "texture": "#3"}, + "down": {"uv": [2.5, 8.5, 2, 9], "texture": "#3"} + } + }, + { + "from": [15, 2, 14], + "to": [16, 3, 15], + "faces": { + "north": {"uv": [8.5, 2, 9, 2.5], "texture": "#3"}, + "east": {"uv": [2.5, 8.5, 3, 9], "texture": "#3"}, + "south": {"uv": [8.5, 2.5, 9, 3], "texture": "#3"}, + "west": {"uv": [3, 8.5, 3.5, 9], "texture": "#3"}, + "up": {"uv": [9, 3.5, 8.5, 3], "texture": "#3"}, + "down": {"uv": [4, 8.5, 3.5, 9], "texture": "#3"} + } + }, + { + "from": [13, 2, 14], + "to": [14, 3, 15], + "faces": { + "north": {"uv": [8.5, 3.5, 9, 4], "texture": "#3"}, + "east": {"uv": [4, 8.5, 4.5, 9], "texture": "#3"}, + "south": {"uv": [8.5, 4, 9, 4.5], "texture": "#3"}, + "west": {"uv": [4.5, 8.5, 5, 9], "texture": "#3"}, + "up": {"uv": [9, 5, 8.5, 4.5], "texture": "#3"}, + "down": {"uv": [5.5, 8.5, 5, 9], "texture": "#3"} + } + }, + { + "from": [15, 1, 15], + "to": [16, 3, 16], + "faces": { + "north": {"uv": [7.5, 3.5, 8, 4.5], "texture": "#3"}, + "east": {"uv": [4, 7.5, 4.5, 8.5], "texture": "#3"}, + "south": {"uv": [5, 7.5, 5.5, 8.5], "texture": "#3"}, + "west": {"uv": [5.5, 7.5, 6, 8.5], "texture": "#3"}, + "up": {"uv": [9, 5.5, 8.5, 5], "texture": "#3"}, + "down": {"uv": [6, 8.5, 5.5, 9], "texture": "#3"} + } + }, + { + "from": [13, 0, 0], + "to": [14, 1, 3], + "faces": { + "north": {"uv": [8.5, 8, 9, 8.5], "texture": "#3"}, + "east": {"uv": [8.5, 5.5, 10, 6], "texture": "#3"}, + "south": {"uv": [9, 6, 9.5, 6.5], "texture": "#3"}, + "west": {"uv": [6, 8.5, 7.5, 9], "texture": "#3"}, + "up": {"uv": [9, 7.5, 8.5, 6], "texture": "#3"}, + "down": {"uv": [8, 8.5, 7.5, 10], "texture": "#3"} + } + }, + { + "from": [15, 0, 0], + "to": [16, 1, 3], + "faces": { + "north": {"uv": [6.5, 9, 7, 9.5], "texture": "#3"}, + "east": {"uv": [8.5, 7.5, 10, 8], "texture": "#3"}, + "south": {"uv": [9, 6.5, 9.5, 7], "texture": "#3"}, + "west": {"uv": [8, 8.5, 9.5, 9], "texture": "#3"}, + "up": {"uv": [0.5, 10.5, 0, 9], "texture": "#3"}, + "down": {"uv": [9.5, 0, 9, 1.5], "texture": "#3"} + } + }, + { + "from": [14, 0, 0], + "to": [15, 1, 1], + "faces": { + "north": {"uv": [7, 9, 7.5, 9.5], "texture": "#3"}, + "east": {"uv": [9, 7, 9.5, 7.5], "texture": "#3"}, + "south": {"uv": [8, 9, 8.5, 9.5], "texture": "#3"}, + "west": {"uv": [9, 8, 9.5, 8.5], "texture": "#3"}, + "up": {"uv": [9, 9.5, 8.5, 9], "texture": "#3"}, + "down": {"uv": [9.5, 9, 9, 9.5], "texture": "#3"} + } + }, + { + "from": [14, 0, 2], + "to": [15, 1, 3], + "faces": { + "north": {"uv": [9.5, 0, 10, 0.5], "texture": "#3"}, + "east": {"uv": [9.5, 0.5, 10, 1], "texture": "#3"}, + "south": {"uv": [9.5, 1, 10, 1.5], "texture": "#3"}, + "west": {"uv": [9.5, 1.5, 10, 2], "texture": "#3"}, + "up": {"uv": [10, 2.5, 9.5, 2], "texture": "#3"}, + "down": {"uv": [10, 2.5, 9.5, 3], "texture": "#3"} + } + }, + { + "from": [15, 1, 0], + "to": [16, 3, 1], + "faces": { + "north": {"uv": [0.5, 9, 1, 10], "texture": "#3"}, + "east": {"uv": [1, 9, 1.5, 10], "texture": "#3"}, + "south": {"uv": [1.5, 9, 2, 10], "texture": "#3"}, + "west": {"uv": [9, 1.5, 9.5, 2.5], "texture": "#3"}, + "up": {"uv": [10, 3.5, 9.5, 3], "texture": "#3"}, + "down": {"uv": [10, 3.5, 9.5, 4], "texture": "#3"} + } + }, + { + "from": [14, 2, 0], + "to": [15, 3, 1], + "faces": { + "north": {"uv": [9.5, 4, 10, 4.5], "texture": "#3"}, + "east": {"uv": [9.5, 4.5, 10, 5], "texture": "#3"}, + "south": {"uv": [9.5, 5, 10, 5.5], "texture": "#3"}, + "west": {"uv": [9.5, 6, 10, 6.5], "texture": "#3"}, + "up": {"uv": [7, 10, 6.5, 9.5], "texture": "#3"}, + "down": {"uv": [10, 6.5, 9.5, 7], "texture": "#3"} + } + }, + { + "from": [13, 1, 0], + "to": [14, 3, 1], + "faces": { + "north": {"uv": [2, 9, 2.5, 10], "texture": "#3"}, + "east": {"uv": [2.5, 9, 3, 10], "texture": "#3"}, + "south": {"uv": [9, 2.5, 9.5, 3.5], "texture": "#3"}, + "west": {"uv": [3, 9, 3.5, 10], "texture": "#3"}, + "up": {"uv": [7.5, 10, 7, 9.5], "texture": "#3"}, + "down": {"uv": [10, 7, 9.5, 7.5], "texture": "#3"} + } + }, + { + "from": [13, 1, 2], + "to": [14, 3, 3], + "faces": { + "north": {"uv": [3.5, 9, 4, 10], "texture": "#3"}, + "east": {"uv": [9, 3.5, 9.5, 4.5], "texture": "#3"}, + "south": {"uv": [4, 9, 4.5, 10], "texture": "#3"}, + "west": {"uv": [4.5, 9, 5, 10], "texture": "#3"}, + "up": {"uv": [8.5, 10, 8, 9.5], "texture": "#3"}, + "down": {"uv": [10, 8, 9.5, 8.5], "texture": "#3"} + } + }, + { + "from": [14, 2, 2], + "to": [15, 3, 3], + "faces": { + "north": {"uv": [8.5, 9.5, 9, 10], "texture": "#3"}, + "east": {"uv": [9.5, 8.5, 10, 9], "texture": "#3"}, + "south": {"uv": [9, 9.5, 9.5, 10], "texture": "#3"}, + "west": {"uv": [9.5, 9, 10, 9.5], "texture": "#3"}, + "up": {"uv": [10, 10, 9.5, 9.5], "texture": "#3"}, + "down": {"uv": [10.5, 0, 10, 0.5], "texture": "#3"} + } + }, + { + "from": [15, 2, 1], + "to": [16, 3, 2], + "faces": { + "north": {"uv": [0.5, 10, 1, 10.5], "texture": "#3"}, + "east": {"uv": [10, 0.5, 10.5, 1], "texture": "#3"}, + "south": {"uv": [1, 10, 1.5, 10.5], "texture": "#3"}, + "west": {"uv": [10, 1, 10.5, 1.5], "texture": "#3"}, + "up": {"uv": [2, 10.5, 1.5, 10], "texture": "#3"}, + "down": {"uv": [10.5, 1.5, 10, 2], "texture": "#3"} + } + }, + { + "from": [13, 2, 1], + "to": [14, 3, 2], + "faces": { + "north": {"uv": [2, 10, 2.5, 10.5], "texture": "#3"}, + "east": {"uv": [10, 2, 10.5, 2.5], "texture": "#3"}, + "south": {"uv": [2.5, 10, 3, 10.5], "texture": "#3"}, + "west": {"uv": [10, 2.5, 10.5, 3], "texture": "#3"}, + "up": {"uv": [3.5, 10.5, 3, 10], "texture": "#3"}, + "down": {"uv": [10.5, 3, 10, 3.5], "texture": "#3"} + } + }, + { + "from": [15, 1, 2], + "to": [16, 3, 3], + "faces": { + "north": {"uv": [9, 4.5, 9.5, 5.5], "texture": "#3"}, + "east": {"uv": [5, 9, 5.5, 10], "texture": "#3"}, + "south": {"uv": [5.5, 9, 6, 10], "texture": "#3"}, + "west": {"uv": [6, 9, 6.5, 10], "texture": "#3"}, + "up": {"uv": [4, 10.5, 3.5, 10], "texture": "#3"}, + "down": {"uv": [10.5, 3.5, 10, 4], "texture": "#3"} + } + }, + { + "from": [13, 13, 0], + "to": [14, 14, 3], + "faces": { + "north": {"uv": [3, 10.5, 3.5, 11], "texture": "#3"}, + "east": {"uv": [4, 10, 5.5, 10.5], "texture": "#3"}, + "south": {"uv": [10.5, 3, 11, 3.5], "texture": "#3"}, + "west": {"uv": [10, 4, 11.5, 4.5], "texture": "#3"}, + "up": {"uv": [10.5, 6, 10, 4.5], "texture": "#3"}, + "down": {"uv": [6, 10, 5.5, 11.5], "texture": "#3"} + } + }, + { + "from": [15, 13, 0], + "to": [16, 14, 3], + "faces": { + "north": {"uv": [3.5, 10.5, 4, 11], "texture": "#3"}, + "east": {"uv": [6, 10, 7.5, 10.5], "texture": "#3"}, + "south": {"uv": [10.5, 3.5, 11, 4], "texture": "#3"}, + "west": {"uv": [10, 6, 11.5, 6.5], "texture": "#3"}, + "up": {"uv": [10.5, 8, 10, 6.5], "texture": "#3"}, + "down": {"uv": [8, 10, 7.5, 11.5], "texture": "#3"} + } + }, + { + "from": [14, 13, 0], + "to": [15, 14, 1], + "faces": { + "north": {"uv": [4, 10.5, 4.5, 11], "texture": "#3"}, + "east": {"uv": [4.5, 10.5, 5, 11], "texture": "#3"}, + "south": {"uv": [10.5, 4.5, 11, 5], "texture": "#3"}, + "west": {"uv": [5, 10.5, 5.5, 11], "texture": "#3"}, + "up": {"uv": [11, 5.5, 10.5, 5], "texture": "#3"}, + "down": {"uv": [11, 5.5, 10.5, 6], "texture": "#3"} + } + }, + { + "from": [14, 13, 2], + "to": [15, 14, 3], + "faces": { + "north": {"uv": [6, 10.5, 6.5, 11], "texture": "#3"}, + "east": {"uv": [6.5, 10.5, 7, 11], "texture": "#3"}, + "south": {"uv": [10.5, 6.5, 11, 7], "texture": "#3"}, + "west": {"uv": [7, 10.5, 7.5, 11], "texture": "#3"}, + "up": {"uv": [11, 7.5, 10.5, 7], "texture": "#3"}, + "down": {"uv": [11, 7.5, 10.5, 8], "texture": "#3"} + } + }, + { + "from": [15, 14, 0], + "to": [16, 16, 1], + "faces": { + "north": {"uv": [8, 10, 8.5, 11], "texture": "#3"}, + "east": {"uv": [10, 8, 10.5, 9], "texture": "#3"}, + "south": {"uv": [8.5, 10, 9, 11], "texture": "#3"}, + "west": {"uv": [9, 10, 9.5, 11], "texture": "#3"}, + "up": {"uv": [11, 8.5, 10.5, 8], "texture": "#3"}, + "down": {"uv": [11, 8.5, 10.5, 9], "texture": "#3"} + } + }, + { + "from": [14, 15, 0], + "to": [15, 16, 1], + "faces": { + "north": {"uv": [10.5, 9, 11, 9.5], "texture": "#3"}, + "east": {"uv": [10.5, 9.5, 11, 10], "texture": "#3"}, + "south": {"uv": [10.5, 10, 11, 10.5], "texture": "#3"}, + "west": {"uv": [10.5, 10.5, 11, 11], "texture": "#3"}, + "up": {"uv": [11.5, 0.5, 11, 0], "texture": "#3"}, + "down": {"uv": [11.5, 0.5, 11, 1], "texture": "#3"} + } + }, + { + "from": [13, 14, 0], + "to": [14, 16, 1], + "faces": { + "north": {"uv": [10, 9, 10.5, 10], "texture": "#3"}, + "east": {"uv": [9.5, 10, 10, 11], "texture": "#3"}, + "south": {"uv": [10, 10, 10.5, 11], "texture": "#3"}, + "west": {"uv": [0, 10.5, 0.5, 11.5], "texture": "#3"}, + "up": {"uv": [11.5, 1.5, 11, 1], "texture": "#3"}, + "down": {"uv": [11.5, 1.5, 11, 2], "texture": "#3"} + } + }, + { + "from": [13, 14, 2], + "to": [14, 16, 3], + "faces": { + "north": {"uv": [10.5, 0, 11, 1], "texture": "#3"}, + "east": {"uv": [0.5, 10.5, 1, 11.5], "texture": "#3"}, + "south": {"uv": [1, 10.5, 1.5, 11.5], "texture": "#3"}, + "west": {"uv": [10.5, 1, 11, 2], "texture": "#3"}, + "up": {"uv": [11.5, 2.5, 11, 2], "texture": "#3"}, + "down": {"uv": [11.5, 2.5, 11, 3], "texture": "#3"} + } + }, + { + "from": [14, 15, 2], + "to": [15, 16, 3], + "faces": { + "north": {"uv": [3, 11, 3.5, 11.5], "texture": "#3"}, + "east": {"uv": [11, 3, 11.5, 3.5], "texture": "#3"}, + "south": {"uv": [3.5, 11, 4, 11.5], "texture": "#3"}, + "west": {"uv": [11, 3.5, 11.5, 4], "texture": "#3"}, + "up": {"uv": [4.5, 11.5, 4, 11], "texture": "#3"}, + "down": {"uv": [5, 11, 4.5, 11.5], "texture": "#3"} + } + }, + { + "from": [15, 15, 1], + "to": [16, 16, 2], + "faces": { + "north": {"uv": [11, 4.5, 11.5, 5], "texture": "#3"}, + "east": {"uv": [5, 11, 5.5, 11.5], "texture": "#3"}, + "south": {"uv": [11, 5, 11.5, 5.5], "texture": "#3"}, + "west": {"uv": [11, 5.5, 11.5, 6], "texture": "#3"}, + "up": {"uv": [6.5, 11.5, 6, 11], "texture": "#3"}, + "down": {"uv": [7, 11, 6.5, 11.5], "texture": "#3"} + } + }, + { + "from": [13, 15, 1], + "to": [14, 16, 2], + "faces": { + "north": {"uv": [11, 6.5, 11.5, 7], "texture": "#3"}, + "east": {"uv": [7, 11, 7.5, 11.5], "texture": "#3"}, + "south": {"uv": [11, 7, 11.5, 7.5], "texture": "#3"}, + "west": {"uv": [11, 7.5, 11.5, 8], "texture": "#3"}, + "up": {"uv": [8.5, 11.5, 8, 11], "texture": "#3"}, + "down": {"uv": [11.5, 8, 11, 8.5], "texture": "#3"} + } + }, + { + "from": [15, 14, 2], + "to": [16, 16, 3], + "faces": { + "north": {"uv": [1.5, 10.5, 2, 11.5], "texture": "#3"}, + "east": {"uv": [2, 10.5, 2.5, 11.5], "texture": "#3"}, + "south": {"uv": [10.5, 2, 11, 3], "texture": "#3"}, + "west": {"uv": [2.5, 10.5, 3, 11.5], "texture": "#3"}, + "up": {"uv": [9, 11.5, 8.5, 11], "texture": "#3"}, + "down": {"uv": [11.5, 8.5, 11, 9], "texture": "#3"} + } + }, + { + "from": [13, 13, 13], + "to": [14, 14, 16], + "faces": { + "north": {"uv": [7, 11.5, 7.5, 12], "texture": "#3"}, + "east": {"uv": [9, 11, 10.5, 11.5], "texture": "#3"}, + "south": {"uv": [7.5, 11.5, 8, 12], "texture": "#3"}, + "west": {"uv": [11, 9, 12.5, 9.5], "texture": "#3"}, + "up": {"uv": [11.5, 11, 11, 9.5], "texture": "#3"}, + "down": {"uv": [11, 11, 10.5, 12.5], "texture": "#3"} + } + }, + { + "from": [15, 13, 13], + "to": [16, 14, 16], + "faces": { + "north": {"uv": [11.5, 7.5, 12, 8], "texture": "#3"}, + "east": {"uv": [11, 11, 12.5, 11.5], "texture": "#3"}, + "south": {"uv": [8, 11.5, 8.5, 12], "texture": "#3"}, + "west": {"uv": [0, 11.5, 1.5, 12], "texture": "#3"}, + "up": {"uv": [12, 1.5, 11.5, 0], "texture": "#3"}, + "down": {"uv": [2, 11.5, 1.5, 13], "texture": "#3"} + } + }, + { + "from": [14, 13, 13], + "to": [15, 14, 14], + "faces": { + "north": {"uv": [11.5, 8, 12, 8.5], "texture": "#3"}, + "east": {"uv": [8.5, 11.5, 9, 12], "texture": "#3"}, + "south": {"uv": [11.5, 8.5, 12, 9], "texture": "#3"}, + "west": {"uv": [9, 11.5, 9.5, 12], "texture": "#3"}, + "up": {"uv": [10, 12, 9.5, 11.5], "texture": "#3"}, + "down": {"uv": [12, 9.5, 11.5, 10], "texture": "#3"} + } + }, + { + "from": [14, 13, 15], + "to": [15, 14, 16], + "faces": { + "north": {"uv": [10, 11.5, 10.5, 12], "texture": "#3"}, + "east": {"uv": [11.5, 10, 12, 10.5], "texture": "#3"}, + "south": {"uv": [11.5, 10.5, 12, 11], "texture": "#3"}, + "west": {"uv": [11, 11.5, 11.5, 12], "texture": "#3"}, + "up": {"uv": [12, 12, 11.5, 11.5], "texture": "#3"}, + "down": {"uv": [0.5, 12, 0, 12.5], "texture": "#3"} + } + }, + { + "from": [15, 14, 13], + "to": [16, 16, 14], + "faces": { + "north": {"uv": [11.5, 1.5, 12, 2.5], "texture": "#3"}, + "east": {"uv": [2, 11.5, 2.5, 12.5], "texture": "#3"}, + "south": {"uv": [2.5, 11.5, 3, 12.5], "texture": "#3"}, + "west": {"uv": [11.5, 2.5, 12, 3.5], "texture": "#3"}, + "up": {"uv": [12.5, 0.5, 12, 0], "texture": "#3"}, + "down": {"uv": [1, 12, 0.5, 12.5], "texture": "#3"} + } + }, + { + "from": [14, 15, 13], + "to": [15, 16, 14], + "faces": { + "north": {"uv": [12, 0.5, 12.5, 1], "texture": "#3"}, + "east": {"uv": [1, 12, 1.5, 12.5], "texture": "#3"}, + "south": {"uv": [12, 1, 12.5, 1.5], "texture": "#3"}, + "west": {"uv": [12, 1.5, 12.5, 2], "texture": "#3"}, + "up": {"uv": [12.5, 2.5, 12, 2], "texture": "#3"}, + "down": {"uv": [12.5, 2.5, 12, 3], "texture": "#3"} + } + }, + { + "from": [13, 14, 13], + "to": [14, 16, 14], + "faces": { + "north": {"uv": [3, 11.5, 3.5, 12.5], "texture": "#3"}, + "east": {"uv": [3.5, 11.5, 4, 12.5], "texture": "#3"}, + "south": {"uv": [11.5, 3.5, 12, 4.5], "texture": "#3"}, + "west": {"uv": [4, 11.5, 4.5, 12.5], "texture": "#3"}, + "up": {"uv": [12.5, 3.5, 12, 3], "texture": "#3"}, + "down": {"uv": [12.5, 3.5, 12, 4], "texture": "#3"} + } + }, + { + "from": [13, 14, 15], + "to": [14, 16, 16], + "faces": { + "north": {"uv": [4.5, 11.5, 5, 12.5], "texture": "#3"}, + "east": {"uv": [11.5, 4.5, 12, 5.5], "texture": "#3"}, + "south": {"uv": [5, 11.5, 5.5, 12.5], "texture": "#3"}, + "west": {"uv": [5.5, 11.5, 6, 12.5], "texture": "#3"}, + "up": {"uv": [12.5, 4.5, 12, 4], "texture": "#3"}, + "down": {"uv": [12.5, 4.5, 12, 5], "texture": "#3"} + } + }, + { + "from": [14, 15, 15], + "to": [15, 16, 16], + "faces": { + "north": {"uv": [12, 5, 12.5, 5.5], "texture": "#3"}, + "east": {"uv": [12, 5.5, 12.5, 6], "texture": "#3"}, + "south": {"uv": [12, 6, 12.5, 6.5], "texture": "#3"}, + "west": {"uv": [12, 6.5, 12.5, 7], "texture": "#3"}, + "up": {"uv": [7.5, 12.5, 7, 12], "texture": "#3"}, + "down": {"uv": [12.5, 7, 12, 7.5], "texture": "#3"} + } + }, + { + "from": [15, 15, 14], + "to": [16, 16, 15], + "faces": { + "north": {"uv": [7.5, 12, 8, 12.5], "texture": "#3"}, + "east": {"uv": [12, 7.5, 12.5, 8], "texture": "#3"}, + "south": {"uv": [8, 12, 8.5, 12.5], "texture": "#3"}, + "west": {"uv": [12, 8, 12.5, 8.5], "texture": "#3"}, + "up": {"uv": [9, 12.5, 8.5, 12], "texture": "#3"}, + "down": {"uv": [12.5, 8.5, 12, 9], "texture": "#3"} + } + }, + { + "from": [13, 15, 14], + "to": [14, 16, 15], + "faces": { + "north": {"uv": [9, 12, 9.5, 12.5], "texture": "#3"}, + "east": {"uv": [9.5, 12, 10, 12.5], "texture": "#3"}, + "south": {"uv": [12, 9.5, 12.5, 10], "texture": "#3"}, + "west": {"uv": [10, 12, 10.5, 12.5], "texture": "#3"}, + "up": {"uv": [12.5, 10.5, 12, 10], "texture": "#3"}, + "down": {"uv": [12.5, 10.5, 12, 11], "texture": "#3"} + } + }, + { + "from": [15, 14, 15], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [11.5, 5.5, 12, 6.5], "texture": "#3"}, + "east": {"uv": [6, 11.5, 6.5, 12.5], "texture": "#3"}, + "south": {"uv": [6.5, 11.5, 7, 12.5], "texture": "#3"}, + "west": {"uv": [11.5, 6.5, 12, 7.5], "texture": "#3"}, + "up": {"uv": [11.5, 12.5, 11, 12], "texture": "#3"}, + "down": {"uv": [12, 12, 11.5, 12.5], "texture": "#3"} + } + }, + { + "from": [0, 13, 13], + "to": [1, 14, 16], + "faces": { + "north": {"uv": [12.5, 8, 13, 8.5], "texture": "#3"}, + "east": {"uv": [12, 11.5, 13.5, 12], "texture": "#3"}, + "south": {"uv": [8.5, 12.5, 9, 13], "texture": "#3"}, + "west": {"uv": [12, 12, 13.5, 12.5], "texture": "#3"}, + "up": {"uv": [0.5, 14, 0, 12.5], "texture": "#3"}, + "down": {"uv": [13, 0, 12.5, 1.5], "texture": "#3"} + } + }, + { + "from": [2, 13, 13], + "to": [3, 14, 16], + "faces": { + "north": {"uv": [12.5, 8.5, 13, 9], "texture": "#3"}, + "east": {"uv": [12.5, 1.5, 14, 2], "texture": "#3"}, + "south": {"uv": [9, 12.5, 9.5, 13], "texture": "#3"}, + "west": {"uv": [2, 12.5, 3.5, 13], "texture": "#3"}, + "up": {"uv": [1, 14, 0.5, 12.5], "texture": "#3"}, + "down": {"uv": [1.5, 12.5, 1, 14], "texture": "#3"} + } + }, + { + "from": [1, 13, 13], + "to": [2, 14, 14], + "faces": { + "north": {"uv": [12.5, 9, 13, 9.5], "texture": "#3"}, + "east": {"uv": [9.5, 12.5, 10, 13], "texture": "#3"}, + "south": {"uv": [12.5, 9.5, 13, 10], "texture": "#3"}, + "west": {"uv": [10, 12.5, 10.5, 13], "texture": "#3"}, + "up": {"uv": [13, 10.5, 12.5, 10], "texture": "#3"}, + "down": {"uv": [11, 12.5, 10.5, 13], "texture": "#3"} + } + }, + { + "from": [1, 13, 15], + "to": [2, 14, 16], + "faces": { + "north": {"uv": [12.5, 10.5, 13, 11], "texture": "#3"}, + "east": {"uv": [11, 12.5, 11.5, 13], "texture": "#3"}, + "south": {"uv": [12.5, 11, 13, 11.5], "texture": "#3"}, + "west": {"uv": [11.5, 12.5, 12, 13], "texture": "#3"}, + "up": {"uv": [12.5, 13, 12, 12.5], "texture": "#3"}, + "down": {"uv": [13, 12.5, 12.5, 13], "texture": "#3"} + } + }, + { + "from": [2, 14, 13], + "to": [3, 16, 14], + "faces": { + "north": {"uv": [12.5, 2, 13, 3], "texture": "#3"}, + "east": {"uv": [12.5, 3, 13, 4], "texture": "#3"}, + "south": {"uv": [3.5, 12.5, 4, 13.5], "texture": "#3"}, + "west": {"uv": [4, 12.5, 4.5, 13.5], "texture": "#3"}, + "up": {"uv": [13.5, 0.5, 13, 0], "texture": "#3"}, + "down": {"uv": [13.5, 0.5, 13, 1], "texture": "#3"} + } + }, + { + "from": [1, 15, 13], + "to": [2, 16, 14], + "faces": { + "north": {"uv": [13, 1, 13.5, 1.5], "texture": "#3"}, + "east": {"uv": [1.5, 13, 2, 13.5], "texture": "#3"}, + "south": {"uv": [2, 13, 2.5, 13.5], "texture": "#3"}, + "west": {"uv": [13, 2, 13.5, 2.5], "texture": "#3"}, + "up": {"uv": [3, 13.5, 2.5, 13], "texture": "#3"}, + "down": {"uv": [13.5, 2.5, 13, 3], "texture": "#3"} + } + }, + { + "from": [0, 14, 13], + "to": [1, 16, 14], + "faces": { + "north": {"uv": [12.5, 4, 13, 5], "texture": "#3"}, + "east": {"uv": [4.5, 12.5, 5, 13.5], "texture": "#3"}, + "south": {"uv": [5, 12.5, 5.5, 13.5], "texture": "#3"}, + "west": {"uv": [12.5, 5, 13, 6], "texture": "#3"}, + "up": {"uv": [3.5, 13.5, 3, 13], "texture": "#3"}, + "down": {"uv": [13.5, 3, 13, 3.5], "texture": "#3"} + } + }, + { + "from": [0, 14, 15], + "to": [1, 16, 16], + "faces": { + "north": {"uv": [5.5, 12.5, 6, 13.5], "texture": "#3"}, + "east": {"uv": [6, 12.5, 6.5, 13.5], "texture": "#3"}, + "south": {"uv": [12.5, 6, 13, 7], "texture": "#3"}, + "west": {"uv": [6.5, 12.5, 7, 13.5], "texture": "#3"}, + "up": {"uv": [13.5, 4, 13, 3.5], "texture": "#3"}, + "down": {"uv": [13.5, 4, 13, 4.5], "texture": "#3"} + } + }, + { + "from": [1, 15, 15], + "to": [2, 16, 16], + "faces": { + "north": {"uv": [13, 4.5, 13.5, 5], "texture": "#3"}, + "east": {"uv": [13, 5, 13.5, 5.5], "texture": "#3"}, + "south": {"uv": [13, 5.5, 13.5, 6], "texture": "#3"}, + "west": {"uv": [13, 6, 13.5, 6.5], "texture": "#3"}, + "up": {"uv": [13.5, 7, 13, 6.5], "texture": "#3"}, + "down": {"uv": [13.5, 7, 13, 7.5], "texture": "#3"} + } + }, + { + "from": [2, 15, 14], + "to": [3, 16, 15], + "faces": { + "north": {"uv": [13, 7.5, 13.5, 8], "texture": "#3"}, + "east": {"uv": [13, 8, 13.5, 8.5], "texture": "#3"}, + "south": {"uv": [8.5, 13, 9, 13.5], "texture": "#3"}, + "west": {"uv": [13, 8.5, 13.5, 9], "texture": "#3"}, + "up": {"uv": [9.5, 13.5, 9, 13], "texture": "#3"}, + "down": {"uv": [13.5, 9, 13, 9.5], "texture": "#3"} + } + }, + { + "from": [0, 15, 14], + "to": [1, 16, 15], + "faces": { + "north": {"uv": [9.5, 13, 10, 13.5], "texture": "#3"}, + "east": {"uv": [13, 9.5, 13.5, 10], "texture": "#3"}, + "south": {"uv": [10, 13, 10.5, 13.5], "texture": "#3"}, + "west": {"uv": [13, 10, 13.5, 10.5], "texture": "#3"}, + "up": {"uv": [11, 13.5, 10.5, 13], "texture": "#3"}, + "down": {"uv": [13.5, 10.5, 13, 11], "texture": "#3"} + } + }, + { + "from": [2, 14, 15], + "to": [3, 16, 16], + "faces": { + "north": {"uv": [7, 12.5, 7.5, 13.5], "texture": "#3"}, + "east": {"uv": [12.5, 7, 13, 8], "texture": "#3"}, + "south": {"uv": [7.5, 12.5, 8, 13.5], "texture": "#3"}, + "west": {"uv": [8, 12.5, 8.5, 13.5], "texture": "#3"}, + "up": {"uv": [11.5, 13.5, 11, 13], "texture": "#3"}, + "down": {"uv": [13.5, 11, 13, 11.5], "texture": "#3"} + } + }, + { + "from": [0, 13, 0], + "to": [1, 14, 3], + "faces": { + "north": {"uv": [9, 13.5, 9.5, 14], "texture": "#3"}, + "east": {"uv": [11.5, 13, 13, 13.5], "texture": "#3"}, + "south": {"uv": [13.5, 9, 14, 9.5], "texture": "#3"}, + "west": {"uv": [13, 12.5, 14.5, 13], "texture": "#3"}, + "up": {"uv": [13.5, 14.5, 13, 13], "texture": "#3"}, + "down": {"uv": [14, 0, 13.5, 1.5], "texture": "#3"} + } + }, + { + "from": [2, 13, 0], + "to": [3, 14, 3], + "faces": { + "north": {"uv": [9.5, 13.5, 10, 14], "texture": "#3"}, + "east": {"uv": [1.5, 13.5, 3, 14], "texture": "#3"}, + "south": {"uv": [13.5, 9.5, 14, 10], "texture": "#3"}, + "west": {"uv": [13.5, 2, 15, 2.5], "texture": "#3"}, + "up": {"uv": [14, 4, 13.5, 2.5], "texture": "#3"}, + "down": {"uv": [3.5, 13.5, 3, 15], "texture": "#3"} + } + }, + { + "from": [1, 13, 0], + "to": [2, 14, 1], + "faces": { + "north": {"uv": [10, 13.5, 10.5, 14], "texture": "#3"}, + "east": {"uv": [13.5, 10, 14, 10.5], "texture": "#3"}, + "south": {"uv": [10.5, 13.5, 11, 14], "texture": "#3"}, + "west": {"uv": [13.5, 10.5, 14, 11], "texture": "#3"}, + "up": {"uv": [11.5, 14, 11, 13.5], "texture": "#3"}, + "down": {"uv": [14, 11, 13.5, 11.5], "texture": "#3"} + } + }, + { + "from": [1, 13, 2], + "to": [2, 14, 3], + "faces": { + "north": {"uv": [11.5, 13.5, 12, 14], "texture": "#3"}, + "east": {"uv": [13.5, 11.5, 14, 12], "texture": "#3"}, + "south": {"uv": [12, 13.5, 12.5, 14], "texture": "#3"}, + "west": {"uv": [13.5, 12, 14, 12.5], "texture": "#3"}, + "up": {"uv": [13, 14, 12.5, 13.5], "texture": "#3"}, + "down": {"uv": [14, 13, 13.5, 13.5], "texture": "#3"} + } + }, + { + "from": [2, 14, 0], + "to": [3, 16, 1], + "faces": { + "north": {"uv": [3.5, 13.5, 4, 14.5], "texture": "#3"}, + "east": {"uv": [4, 13.5, 4.5, 14.5], "texture": "#3"}, + "south": {"uv": [13.5, 4, 14, 5], "texture": "#3"}, + "west": {"uv": [4.5, 13.5, 5, 14.5], "texture": "#3"}, + "up": {"uv": [14, 14, 13.5, 13.5], "texture": "#3"}, + "down": {"uv": [0.5, 14, 0, 14.5], "texture": "#3"} + } + }, + { + "from": [1, 15, 0], + "to": [2, 16, 1], + "faces": { + "north": {"uv": [14, 0, 14.5, 0.5], "texture": "#3"}, + "east": {"uv": [0.5, 14, 1, 14.5], "texture": "#3"}, + "south": {"uv": [14, 0.5, 14.5, 1], "texture": "#3"}, + "west": {"uv": [1, 14, 1.5, 14.5], "texture": "#3"}, + "up": {"uv": [14.5, 1.5, 14, 1], "texture": "#3"}, + "down": {"uv": [2, 14, 1.5, 14.5], "texture": "#3"} + } + }, + { + "from": [0, 14, 0], + "to": [1, 16, 1], + "faces": { + "north": {"uv": [5, 13.5, 5.5, 14.5], "texture": "#3"}, + "east": {"uv": [13.5, 5, 14, 6], "texture": "#3"}, + "south": {"uv": [5.5, 13.5, 6, 14.5], "texture": "#3"}, + "west": {"uv": [6, 13.5, 6.5, 14.5], "texture": "#3"}, + "up": {"uv": [14.5, 2, 14, 1.5], "texture": "#3"}, + "down": {"uv": [2.5, 14, 2, 14.5], "texture": "#3"} + } + }, + { + "from": [0, 14, 2], + "to": [1, 16, 3], + "faces": { + "north": {"uv": [13.5, 6, 14, 7], "texture": "#3"}, + "east": {"uv": [6.5, 13.5, 7, 14.5], "texture": "#3"}, + "south": {"uv": [7, 13.5, 7.5, 14.5], "texture": "#3"}, + "west": {"uv": [13.5, 7, 14, 8], "texture": "#3"}, + "up": {"uv": [3, 14.5, 2.5, 14], "texture": "#3"}, + "down": {"uv": [14.5, 2.5, 14, 3], "texture": "#3"} + } + }, + { + "from": [1, 15, 2], + "to": [2, 16, 3], + "faces": { + "north": {"uv": [14, 3, 14.5, 3.5], "texture": "#3"}, + "east": {"uv": [14, 3.5, 14.5, 4], "texture": "#3"}, + "south": {"uv": [14, 4, 14.5, 4.5], "texture": "#3"}, + "west": {"uv": [14, 4.5, 14.5, 5], "texture": "#3"}, + "up": {"uv": [14.5, 5.5, 14, 5], "texture": "#3"}, + "down": {"uv": [14.5, 5.5, 14, 6], "texture": "#3"} + } + }, + { + "from": [2, 15, 1], + "to": [3, 16, 2], + "faces": { + "north": {"uv": [14, 6, 14.5, 6.5], "texture": "#3"}, + "east": {"uv": [14, 6.5, 14.5, 7], "texture": "#3"}, + "south": {"uv": [14, 7, 14.5, 7.5], "texture": "#3"}, + "west": {"uv": [14, 7.5, 14.5, 8], "texture": "#3"}, + "up": {"uv": [14.5, 8.5, 14, 8], "texture": "#3"}, + "down": {"uv": [14.5, 8.5, 14, 9], "texture": "#3"} + } + }, + { + "from": [0, 15, 1], + "to": [1, 16, 2], + "faces": { + "north": {"uv": [9, 14, 9.5, 14.5], "texture": "#3"}, + "east": {"uv": [14, 9, 14.5, 9.5], "texture": "#3"}, + "south": {"uv": [9.5, 14, 10, 14.5], "texture": "#3"}, + "west": {"uv": [14, 9.5, 14.5, 10], "texture": "#3"}, + "up": {"uv": [10.5, 14.5, 10, 14], "texture": "#3"}, + "down": {"uv": [14.5, 10, 14, 10.5], "texture": "#3"} + } + }, + { + "from": [2, 14, 2], + "to": [3, 16, 3], + "faces": { + "north": {"uv": [7.5, 13.5, 8, 14.5], "texture": "#3"}, + "east": {"uv": [8, 13.5, 8.5, 14.5], "texture": "#3"}, + "south": {"uv": [13.5, 8, 14, 9], "texture": "#3"}, + "west": {"uv": [8.5, 13.5, 9, 14.5], "texture": "#3"}, + "up": {"uv": [11, 14.5, 10.5, 14], "texture": "#3"}, + "down": {"uv": [14.5, 10.5, 14, 11], "texture": "#3"} + } + }, + { + "from": [1, 1, 2], + "to": [2, 2, 14], + "faces": { + "north": {"uv": [7, 1, 7.5, 1.5], "texture": "#1"}, + "east": {"uv": [0, 0, 6, 0.5], "texture": "#1"}, + "south": {"uv": [7, 1.5, 7.5, 2], "texture": "#1"}, + "west": {"uv": [0, 0.5, 6, 1], "texture": "#1"}, + "up": {"uv": [0.5, 7, 0, 1], "texture": "#1"}, + "down": {"uv": [1, 1, 0.5, 7], "texture": "#1"} + } + }, + { + "from": [14, 1, 2], + "to": [15, 2, 14], + "faces": { + "north": {"uv": [7.5, 1, 8, 1.5], "texture": "#1"}, + "east": {"uv": [1, 1, 7, 1.5], "texture": "#1"}, + "south": {"uv": [7.5, 1.5, 8, 2], "texture": "#1"}, + "west": {"uv": [1, 1.5, 7, 2], "texture": "#1"}, + "up": {"uv": [1.5, 8, 1, 2], "texture": "#1"}, + "down": {"uv": [2, 2, 1.5, 8], "texture": "#1"} + } + }, + { + "from": [2, 1, 1], + "to": [14, 2, 2], + "faces": { + "north": {"uv": [2, 2, 8, 2.5], "texture": "#1"}, + "east": {"uv": [9.5, 6, 10, 6.5], "texture": "#1"}, + "south": {"uv": [2, 2.5, 8, 3], "texture": "#1"}, + "west": {"uv": [9.5, 6.5, 10, 7], "texture": "#1"}, + "up": {"uv": [8, 3.5, 2, 3], "texture": "#1"}, + "down": {"uv": [8, 3.5, 2, 4], "texture": "#1"} + } + }, + { + "from": [2, 1, 14], + "to": [14, 2, 15], + "faces": { + "north": {"uv": [2, 4, 8, 4.5], "texture": "#1"}, + "east": {"uv": [9.5, 7, 10, 7.5], "texture": "#1"}, + "south": {"uv": [2, 4.5, 8, 5], "texture": "#1"}, + "west": {"uv": [9.5, 7.5, 10, 8], "texture": "#1"}, + "up": {"uv": [8, 5.5, 2, 5], "texture": "#1"}, + "down": {"uv": [8, 5.5, 2, 6], "texture": "#1"} + } + }, + { + "from": [1, 14, 2], + "to": [2, 15, 14], + "faces": { + "north": {"uv": [9.5, 8, 10, 8.5], "texture": "#1"}, + "east": {"uv": [6, 0, 12, 0.5], "texture": "#1"}, + "south": {"uv": [9.5, 8.5, 10, 9], "texture": "#1"}, + "west": {"uv": [6, 0.5, 12, 1], "texture": "#1"}, + "up": {"uv": [2.5, 12, 2, 6], "texture": "#1"}, + "down": {"uv": [3, 6, 2.5, 12], "texture": "#1"} + } + }, + { + "from": [1, 2, 1], + "to": [2, 14, 2], + "faces": { + "north": {"uv": [3, 6, 3.5, 12], "texture": "#1"}, + "east": {"uv": [3.5, 6, 4, 12], "texture": "#1"}, + "south": {"uv": [4, 6, 4.5, 12], "texture": "#1"}, + "west": {"uv": [4.5, 6, 5, 12], "texture": "#1"}, + "up": {"uv": [10, 9.5, 9.5, 9], "texture": "#1"}, + "down": {"uv": [10, 9.5, 9.5, 10], "texture": "#1"} + } + }, + { + "from": [1, 2, 14], + "to": [2, 14, 15], + "faces": { + "north": {"uv": [5, 6, 5.5, 12], "texture": "#1"}, + "east": {"uv": [5.5, 6, 6, 12], "texture": "#1"}, + "south": {"uv": [6, 6, 6.5, 12], "texture": "#1"}, + "west": {"uv": [6.5, 6, 7, 12], "texture": "#1"}, + "up": {"uv": [10.5, 6.5, 10, 6], "texture": "#1"}, + "down": {"uv": [10.5, 6.5, 10, 7], "texture": "#1"} + } + }, + { + "from": [14, 2, 14], + "to": [15, 14, 15], + "faces": { + "north": {"uv": [0, 7, 0.5, 13], "texture": "#1"}, + "east": {"uv": [0.5, 7, 1, 13], "texture": "#1"}, + "south": {"uv": [7, 6, 7.5, 12], "texture": "#1"}, + "west": {"uv": [7.5, 6, 8, 12], "texture": "#1"}, + "up": {"uv": [10.5, 7.5, 10, 7], "texture": "#1"}, + "down": {"uv": [10.5, 7.5, 10, 8], "texture": "#1"} + } + }, + { + "from": [14, 2, 1], + "to": [15, 14, 2], + "faces": { + "north": {"uv": [1, 8, 1.5, 14], "texture": "#1"}, + "east": {"uv": [8, 1, 8.5, 7], "texture": "#1"}, + "south": {"uv": [1.5, 8, 2, 14], "texture": "#1"}, + "west": {"uv": [8, 7, 8.5, 13], "texture": "#1"}, + "up": {"uv": [10.5, 8.5, 10, 8], "texture": "#1"}, + "down": {"uv": [9, 10, 8.5, 10.5], "texture": "#1"} + } + }, + { + "from": [2, 14, 14], + "to": [14, 15, 15], + "faces": { + "north": {"uv": [8.5, 1, 14.5, 1.5], "texture": "#1"}, + "east": {"uv": [10, 8.5, 10.5, 9], "texture": "#1"}, + "south": {"uv": [8.5, 1.5, 14.5, 2], "texture": "#1"}, + "west": {"uv": [9, 10, 9.5, 10.5], "texture": "#1"}, + "up": {"uv": [14.5, 2.5, 8.5, 2], "texture": "#1"}, + "down": {"uv": [14.5, 2.5, 8.5, 3], "texture": "#1"} + } + }, + { + "from": [14, 14, 2], + "to": [15, 15, 14], + "faces": { + "north": {"uv": [10, 9, 10.5, 9.5], "texture": "#1"}, + "east": {"uv": [8.5, 3, 14.5, 3.5], "texture": "#1"}, + "south": {"uv": [9.5, 10, 10, 10.5], "texture": "#1"}, + "west": {"uv": [8.5, 3.5, 14.5, 4], "texture": "#1"}, + "up": {"uv": [9, 10, 8.5, 4], "texture": "#1"}, + "down": {"uv": [9.5, 4, 9, 10], "texture": "#1"} + } + }, + { + "from": [2, 14, 1], + "to": [14, 15, 2], + "faces": { + "north": {"uv": [9.5, 4, 15.5, 4.5], "texture": "#1"}, + "east": {"uv": [10, 9.5, 10.5, 10], "texture": "#1"}, + "south": {"uv": [9.5, 4.5, 15.5, 5], "texture": "#1"}, + "west": {"uv": [10, 10, 10.5, 10.5], "texture": "#1"}, + "up": {"uv": [15.5, 5.5, 9.5, 5], "texture": "#1"}, + "down": {"uv": [15.5, 5.5, 9.5, 6], "texture": "#1"} + } + }, + { + "from": [6, 6, 6], + "to": [10, 10, 10], + "faces": { + "north": {"uv": [0, 0, 4, 4], "texture": "#0"}, + "east": {"uv": [0, 4, 4, 8], "texture": "#0"}, + "south": {"uv": [4, 0, 8, 4], "texture": "#0"}, + "west": {"uv": [4, 4, 8, 8], "texture": "#0"}, + "up": {"uv": [4, 12, 0, 8], "texture": "#0"}, + "down": {"uv": [12, 0, 8, 4], "texture": "#0"} + } + }, + { + "name": "internal", + "from": [1, 1, 14], + "to": [2, 2, 15], + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#2"}, + "east": {"uv": [0, 1, 1, 2], "texture": "#2"}, + "south": {"uv": [1, 0, 2, 1], "texture": "#2"}, + "west": {"uv": [1, 1, 2, 2], "texture": "#2"}, + "up": {"uv": [1, 3, 0, 2], "texture": "#2"}, + "down": {"uv": [3, 0, 2, 1], "texture": "#2"} + } + }, + { + "name": "internal", + "from": [14, 1, 1], + "to": [15, 2, 2], + "faces": { + "north": {"uv": [1, 2, 2, 3], "texture": "#2"}, + "east": {"uv": [2, 1, 3, 2], "texture": "#2"}, + "south": {"uv": [2, 2, 3, 3], "texture": "#2"}, + "west": {"uv": [0, 3, 1, 4], "texture": "#2"}, + "up": {"uv": [4, 1, 3, 0], "texture": "#2"}, + "down": {"uv": [2, 3, 1, 4], "texture": "#2"} + } + }, + { + "name": "internal", + "from": [14, 14, 1], + "to": [15, 15, 2], + "faces": { + "north": {"uv": [3, 1, 4, 2], "texture": "#2"}, + "east": {"uv": [2, 3, 3, 4], "texture": "#2"}, + "south": {"uv": [3, 2, 4, 3], "texture": "#2"}, + "west": {"uv": [3, 3, 4, 4], "texture": "#2"}, + "up": {"uv": [1, 5, 0, 4], "texture": "#2"}, + "down": {"uv": [5, 0, 4, 1], "texture": "#2"} + } + }, + { + "name": "internal", + "from": [1, 14, 14], + "to": [2, 15, 15], + "faces": { + "north": {"uv": [1, 4, 2, 5], "texture": "#2"}, + "east": {"uv": [4, 1, 5, 2], "texture": "#2"}, + "south": {"uv": [2, 4, 3, 5], "texture": "#2"}, + "west": {"uv": [4, 2, 5, 3], "texture": "#2"}, + "up": {"uv": [4, 5, 3, 4], "texture": "#2"}, + "down": {"uv": [5, 3, 4, 4], "texture": "#2"} + } + }, + { + "name": "internal", + "from": [1, 14, 1], + "to": [2, 15, 2], + "faces": { + "north": {"uv": [4, 4, 5, 5], "texture": "#2"}, + "east": {"uv": [0, 5, 1, 6], "texture": "#2"}, + "south": {"uv": [5, 0, 6, 1], "texture": "#2"}, + "west": {"uv": [1, 5, 2, 6], "texture": "#2"}, + "up": {"uv": [6, 2, 5, 1], "texture": "#2"}, + "down": {"uv": [3, 5, 2, 6], "texture": "#2"} + } + }, + { + "name": "internal", + "from": [14, 14, 14], + "to": [15, 15, 15], + "faces": { + "north": {"uv": [5, 2, 6, 3], "texture": "#2"}, + "east": {"uv": [3, 5, 4, 6], "texture": "#2"}, + "south": {"uv": [5, 3, 6, 4], "texture": "#2"}, + "west": {"uv": [4, 5, 5, 6], "texture": "#2"}, + "up": {"uv": [6, 5, 5, 4], "texture": "#2"}, + "down": {"uv": [6, 5, 5, 6], "texture": "#2"} + } + }, + { + "name": "internal", + "from": [14, 1, 14], + "to": [15, 2, 15], + "faces": { + "north": {"uv": [0, 6, 1, 7], "texture": "#2"}, + "east": {"uv": [6, 0, 7, 1], "texture": "#2"}, + "south": {"uv": [1, 6, 2, 7], "texture": "#2"}, + "west": {"uv": [6, 1, 7, 2], "texture": "#2"}, + "up": {"uv": [3, 7, 2, 6], "texture": "#2"}, + "down": {"uv": [7, 2, 6, 3], "texture": "#2"} + } + }, + { + "name": "internal", + "from": [1, 1, 1], + "to": [2, 2, 2], + "faces": { + "north": {"uv": [3, 6, 4, 7], "texture": "#2"}, + "east": {"uv": [6, 3, 7, 4], "texture": "#2"}, + "south": {"uv": [4, 6, 5, 7], "texture": "#2"}, + "west": {"uv": [6, 4, 7, 5], "texture": "#2"}, + "up": {"uv": [6, 7, 5, 6], "texture": "#2"}, + "down": {"uv": [7, 5, 6, 6], "texture": "#2"} + } + } + ], + "groups": [ + { + "name": "Corner", + "origin": [0, 0, 0], + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11] + }, + { + "name": "Corner", + "origin": [0, 0, 0], + "color": 0, + "children": [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23] + }, + { + "name": "Corner", + "origin": [0, 0, 0], + "color": 0, + "children": [24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35] + }, + { + "name": "Corner", + "origin": [0, 0, 0], + "color": 0, + "children": [36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47] + }, + { + "name": "Corner", + "origin": [0, 0, 0], + "color": 0, + "children": [48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59] + }, + { + "name": "Corner", + "origin": [0, 0, 0], + "color": 0, + "children": [60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71] + }, + { + "name": "Corner", + "origin": [0, 0, 0], + "color": 0, + "children": [72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83] + }, + { + "name": "Corner", + "origin": [0, 0, 0], + "color": 0, + "children": [84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95] + }, + { + "name": "Frame Bars", + "origin": [0, 0, 0], + "color": 0, + "children": [96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107] + }, + 108, + { + "name": "Internals", + "origin": [0, 0, 0], + "color": 0, + "children": [109, 110, 111, 112, 113, 114, 115, 116] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/nether_vault_steel_ore_block.json b/src/main/resources/assets/ariasessentials/models/block/nether_vault_steel_ore_block.json new file mode 100644 index 0000000..68abdef --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/nether_vault_steel_ore_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/nether_vault_steel_ore_block" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door.json new file mode 100644 index 0000000..c378c1a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_top", + "top": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_bottom" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_left.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_left.json new file mode 100644 index 0000000..296d607 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_left.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_top", + "top": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_bottom" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_left_open.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_left_open.json new file mode 100644 index 0000000..4bbea1b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_left_open.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_top", + "top": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_bottom" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_right.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_right.json new file mode 100644 index 0000000..7ef01a0 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_right.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_top", + "top": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_bottom" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_right_open.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_right_open.json new file mode 100644 index 0000000..1ae0ac1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_right_open.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_top", + "top": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_bottom" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_left.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_left.json new file mode 100644 index 0000000..4ed06ec --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_left.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/door_top_left", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_top", + "top": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_bottom" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_left_open.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_left_open.json new file mode 100644 index 0000000..feccae3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_left_open.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_top", + "top": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_bottom" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_right.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_right.json new file mode 100644 index 0000000..9a92cda --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_right.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/door_top_right", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_top", + "top": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_bottom" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_right_open.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_right_open.json new file mode 100644 index 0000000..797b677 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_right_open.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_top", + "top": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_bottom" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model0.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model0.json new file mode 100644 index 0000000..577aea8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model1.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model1.json new file mode 100644 index 0000000..f4bf971 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model2.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model2.json new file mode 100644 index 0000000..e23ae58 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model3.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model3.json new file mode 100644 index 0000000..ac02e82 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_bottom.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_bottom.json new file mode 100644 index 0000000..ecfe41e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_double.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_double.json new file mode 100644 index 0000000..577aea8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_top.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_top.json new file mode 100644 index 0000000..f3f46ec --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_bottom.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_bottom.json new file mode 100644 index 0000000..4fc9faa --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_double.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_double.json new file mode 100644 index 0000000..f4bf971 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_top.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_top.json new file mode 100644 index 0000000..577100d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_bottom.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_bottom.json new file mode 100644 index 0000000..7fd58ce --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_double.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_double.json new file mode 100644 index 0000000..e23ae58 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_top.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_top.json new file mode 100644 index 0000000..2de73a5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_bottom.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_bottom.json new file mode 100644 index 0000000..5381c9e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_double.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_double.json new file mode 100644 index 0000000..ac02e82 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_top.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_top.json new file mode 100644 index 0000000..7be7a7e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0.json new file mode 100644 index 0000000..acc63a0 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0_inner.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0_inner.json new file mode 100644 index 0000000..86f282d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0_outer.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0_outer.json new file mode 100644 index 0000000..8a16412 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1.json new file mode 100644 index 0000000..52aa7b6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1_inner.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1_inner.json new file mode 100644 index 0000000..87a81ea --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1_outer.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1_outer.json new file mode 100644 index 0000000..c061a1c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2.json new file mode 100644 index 0000000..53b7cda --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2_inner.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2_inner.json new file mode 100644 index 0000000..99becb1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2_outer.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2_outer.json new file mode 100644 index 0000000..52f565e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3.json new file mode 100644 index 0000000..b1c4544 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3_inner.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3_inner.json new file mode 100644 index 0000000..ea26982 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3_outer.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3_outer.json new file mode 100644 index 0000000..35b599c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_inventory.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_inventory.json new file mode 100644 index 0000000..ab63fd6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_inventory.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_all", + "render_type": "minecraft:translucent", + "textures": { + "all": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture_inventory" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_model0.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_model0.json new file mode 100644 index 0000000..66e2dc5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_model0.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_all", + "render_type": "minecraft:translucent", + "textures": { + "all": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_model1.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_model1.json new file mode 100644 index 0000000..6e5a55a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_model1.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_all", + "render_type": "minecraft:translucent", + "textures": { + "all": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_model2.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_model2.json new file mode 100644 index 0000000..ef9a17e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_model2.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_all", + "render_type": "minecraft:translucent", + "textures": { + "all": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_model3.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_model3.json new file mode 100644 index 0000000..fd55598 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_model3.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_all", + "render_type": "minecraft:translucent", + "textures": { + "all": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_bottom.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_bottom.json new file mode 100644 index 0000000..1be35ac --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_bottom.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/slab", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture0", + "side": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture0", + "top": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_double.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_double.json new file mode 100644 index 0000000..66e2dc5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_double.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_all", + "render_type": "minecraft:translucent", + "textures": { + "all": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_top.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_top.json new file mode 100644 index 0000000..303d361 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_top.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/slab_top", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture0", + "side": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture0", + "top": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_bottom.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_bottom.json new file mode 100644 index 0000000..7fededd --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_bottom.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/slab", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture1", + "side": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture1", + "top": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_double.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_double.json new file mode 100644 index 0000000..6e5a55a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_double.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_all", + "render_type": "minecraft:translucent", + "textures": { + "all": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_top.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_top.json new file mode 100644 index 0000000..b1c8fa0 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_top.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/slab_top", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture1", + "side": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture1", + "top": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_bottom.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_bottom.json new file mode 100644 index 0000000..7b1a5b5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_bottom.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/slab", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture2", + "side": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture2", + "top": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_double.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_double.json new file mode 100644 index 0000000..ef9a17e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_double.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_all", + "render_type": "minecraft:translucent", + "textures": { + "all": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_top.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_top.json new file mode 100644 index 0000000..fc0edab --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_top.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/slab_top", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture2", + "side": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture2", + "top": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_bottom.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_bottom.json new file mode 100644 index 0000000..8f74c99 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_bottom.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/slab", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture3", + "side": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture3", + "top": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_double.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_double.json new file mode 100644 index 0000000..fd55598 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_double.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_all", + "render_type": "minecraft:translucent", + "textures": { + "all": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_top.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_top.json new file mode 100644 index 0000000..2738a5d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_top.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/slab_top", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture3", + "side": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture3", + "top": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/pool_light.json b/src/main/resources/assets/ariasessentials/models/block/pool_light.json new file mode 100644 index 0000000..c972778 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/pool_tile.json b/src/main/resources/assets/ariasessentials/models/block/pool_tile.json new file mode 100644 index 0000000..f0956ce --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/block/pool_tile_slab.json new file mode 100644 index 0000000..9d74d64 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/pool_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/pool_tile", + "side": "ariasessentials:block/pool_tile", + "top": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/pool_tile_slab_top.json b/src/main/resources/assets/ariasessentials/models/block/pool_tile_slab_top.json new file mode 100644 index 0000000..790e885 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/pool_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/pool_tile", + "side": "ariasessentials:block/pool_tile", + "top": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/block/pool_tile_stairs.json new file mode 100644 index 0000000..8d8798d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/pool_tile", + "side": "ariasessentials:block/pool_tile", + "top": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/pool_tile_stairs_inner.json b/src/main/resources/assets/ariasessentials/models/block/pool_tile_stairs_inner.json new file mode 100644 index 0000000..799ffeb --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/pool_tile", + "side": "ariasessentials:block/pool_tile", + "top": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/pool_tile_stairs_outer.json b/src/main/resources/assets/ariasessentials/models/block/pool_tile_stairs_outer.json new file mode 100644 index 0000000..baf2a0e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/pool_tile", + "side": "ariasessentials:block/pool_tile", + "top": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/pool_tile_wall_inventory.json b/src/main/resources/assets/ariasessentials/models/block/pool_tile_wall_inventory.json new file mode 100644 index 0000000..765b068 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/pool_tile_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/pool_tile_wall_post.json b/src/main/resources/assets/ariasessentials/models/block/pool_tile_wall_post.json new file mode 100644 index 0000000..3291bfc --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/pool_tile_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/pool_tile_wall_side.json b/src/main/resources/assets/ariasessentials/models/block/pool_tile_wall_side.json new file mode 100644 index 0000000..beca28c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/pool_tile_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/pool_tile_wall_side_tall.json b/src/main/resources/assets/ariasessentials/models/block/pool_tile_wall_side_tall.json new file mode 100644 index 0000000..31be976 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/pool_tile_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/raw_cobalt_ore.json b/src/main/resources/assets/ariasessentials/models/block/raw_cobalt_ore.json new file mode 100644 index 0000000..7062a8b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/raw_cobalt_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "ariasessentials:block/raw_cobalt_ore" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model0.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model0.json new file mode 100644 index 0000000..a29c246 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model1.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model1.json new file mode 100644 index 0000000..558c94d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model2.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model2.json new file mode 100644 index 0000000..555c431 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model3.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model3.json new file mode 100644 index 0000000..7b5e259 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model4.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model4.json new file mode 100644 index 0000000..4918d1a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model4.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model5.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model5.json new file mode 100644 index 0000000..86abce9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model5.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model6.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model6.json new file mode 100644 index 0000000..10ad375 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model6.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model7.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model7.json new file mode 100644 index 0000000..0578281 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model7.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_bottom.json new file mode 100644 index 0000000..7a3ef60 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_double.json new file mode 100644 index 0000000..a29c246 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_top.json new file mode 100644 index 0000000..5635d39 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_bottom.json new file mode 100644 index 0000000..4fd4c75 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_double.json new file mode 100644 index 0000000..558c94d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_top.json new file mode 100644 index 0000000..10953ed --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_bottom.json new file mode 100644 index 0000000..0ecd22d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_double.json new file mode 100644 index 0000000..555c431 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_top.json new file mode 100644 index 0000000..da5db3c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_bottom.json new file mode 100644 index 0000000..3535310 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_double.json new file mode 100644 index 0000000..7b5e259 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_top.json new file mode 100644 index 0000000..161f0f5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_bottom.json new file mode 100644 index 0000000..ea746ce --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_double.json new file mode 100644 index 0000000..4918d1a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_top.json new file mode 100644 index 0000000..7a6cde7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_bottom.json new file mode 100644 index 0000000..7cff2be --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_double.json new file mode 100644 index 0000000..86abce9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_top.json new file mode 100644 index 0000000..e61786d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_bottom.json new file mode 100644 index 0000000..95fb75b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_double.json new file mode 100644 index 0000000..10ad375 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_top.json new file mode 100644 index 0000000..823845b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_bottom.json new file mode 100644 index 0000000..7679d43 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_double.json new file mode 100644 index 0000000..0578281 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_top.json new file mode 100644 index 0000000..f8ddac3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0.json new file mode 100644 index 0000000..1afb483 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0_inner.json new file mode 100644 index 0000000..7ad09d2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0_outer.json new file mode 100644 index 0000000..ff2b074 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1.json new file mode 100644 index 0000000..a7a0f5e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1_inner.json new file mode 100644 index 0000000..3b06fc9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1_outer.json new file mode 100644 index 0000000..f12430f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2.json new file mode 100644 index 0000000..85a0171 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2_inner.json new file mode 100644 index 0000000..55c9872 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2_outer.json new file mode 100644 index 0000000..290dd4f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3.json new file mode 100644 index 0000000..a51981e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3_inner.json new file mode 100644 index 0000000..49a3dc8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3_outer.json new file mode 100644 index 0000000..506a97d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4.json new file mode 100644 index 0000000..b3f9dd8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4_inner.json new file mode 100644 index 0000000..56a59a5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4_outer.json new file mode 100644 index 0000000..159fdc6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5.json new file mode 100644 index 0000000..a9c754b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5_inner.json new file mode 100644 index 0000000..4c4a6bb --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5_outer.json new file mode 100644 index 0000000..8d2647b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6.json new file mode 100644 index 0000000..6b6b34d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6_inner.json new file mode 100644 index 0000000..9d668bb --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6_outer.json new file mode 100644 index 0000000..7faebbb --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7.json new file mode 100644 index 0000000..e5e918b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7_inner.json new file mode 100644 index 0000000..d63291a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7_outer.json new file mode 100644 index 0000000..a9a5643 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model0.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model0.json new file mode 100644 index 0000000..7a07c05 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model1.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model1.json new file mode 100644 index 0000000..fb767ca --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model2.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model2.json new file mode 100644 index 0000000..2501ee1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model3.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model3.json new file mode 100644 index 0000000..73e7f5b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model4.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model4.json new file mode 100644 index 0000000..6d26bc8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model4.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model5.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model5.json new file mode 100644 index 0000000..cd383ce --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model5.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model6.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model6.json new file mode 100644 index 0000000..5891bfb --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model6.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model7.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model7.json new file mode 100644 index 0000000..527f936 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model7.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_bottom.json new file mode 100644 index 0000000..ea6caf5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_double.json new file mode 100644 index 0000000..7a07c05 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_top.json new file mode 100644 index 0000000..2b594fa --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_bottom.json new file mode 100644 index 0000000..97be829 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_double.json new file mode 100644 index 0000000..fb767ca --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_top.json new file mode 100644 index 0000000..d1b8845 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_bottom.json new file mode 100644 index 0000000..6a96223 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_double.json new file mode 100644 index 0000000..2501ee1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_top.json new file mode 100644 index 0000000..0ae7738 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_bottom.json new file mode 100644 index 0000000..889e65c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_double.json new file mode 100644 index 0000000..73e7f5b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_top.json new file mode 100644 index 0000000..4b1d969 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_bottom.json new file mode 100644 index 0000000..0ccc5e8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_double.json new file mode 100644 index 0000000..6d26bc8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_top.json new file mode 100644 index 0000000..a66e5d1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_bottom.json new file mode 100644 index 0000000..e8e6d3a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_double.json new file mode 100644 index 0000000..cd383ce --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_top.json new file mode 100644 index 0000000..8845bcb --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_bottom.json new file mode 100644 index 0000000..786152f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_double.json new file mode 100644 index 0000000..5891bfb --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_top.json new file mode 100644 index 0000000..e976563 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_bottom.json new file mode 100644 index 0000000..e310e2f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_double.json new file mode 100644 index 0000000..527f936 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_top.json new file mode 100644 index 0000000..f826628 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0.json new file mode 100644 index 0000000..8eecf4f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0_inner.json new file mode 100644 index 0000000..83c748a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0_outer.json new file mode 100644 index 0000000..23b6325 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1.json new file mode 100644 index 0000000..4f4af6d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1_inner.json new file mode 100644 index 0000000..b15ba5e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1_outer.json new file mode 100644 index 0000000..6bb9f3f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2.json new file mode 100644 index 0000000..df9c94c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2_inner.json new file mode 100644 index 0000000..15c45b3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2_outer.json new file mode 100644 index 0000000..be859ca --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3.json new file mode 100644 index 0000000..952d869 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3_inner.json new file mode 100644 index 0000000..07e5c52 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3_outer.json new file mode 100644 index 0000000..403ce30 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4.json new file mode 100644 index 0000000..55308ec --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4_inner.json new file mode 100644 index 0000000..b5a55bc --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4_outer.json new file mode 100644 index 0000000..bd09991 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5.json new file mode 100644 index 0000000..e912507 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5_inner.json new file mode 100644 index 0000000..f444684 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5_outer.json new file mode 100644 index 0000000..6764a88 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6.json new file mode 100644 index 0000000..86aaf62 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6_inner.json new file mode 100644 index 0000000..57ede3a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6_outer.json new file mode 100644 index 0000000..6faf0ff --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7.json new file mode 100644 index 0000000..30e8fa9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7_inner.json new file mode 100644 index 0000000..8d549c9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7_outer.json new file mode 100644 index 0000000..845480f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_wall_inventory.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_wall_inventory.json new file mode 100644 index 0000000..f224b55 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_wall_post.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_wall_post.json new file mode 100644 index 0000000..344e9ac --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_wall_side.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_wall_side.json new file mode 100644 index 0000000..5a1152c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_wall_side_tall.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_wall_side_tall.json new file mode 100644 index 0000000..f405d86 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/red_pool_light.json b/src/main/resources/assets/ariasessentials/models/block/red_pool_light.json new file mode 100644 index 0000000..850f0c1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/red_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/red_pool_tile.json b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile.json new file mode 100644 index 0000000..9603739 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_slab.json new file mode 100644 index 0000000..272b928 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/red_pool_tile", + "side": "ariasessentials:block/red_pool_tile", + "top": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_slab_top.json b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_slab_top.json new file mode 100644 index 0000000..8787d10 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/red_pool_tile", + "side": "ariasessentials:block/red_pool_tile", + "top": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_stairs.json new file mode 100644 index 0000000..821a24f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/red_pool_tile", + "side": "ariasessentials:block/red_pool_tile", + "top": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_stairs_inner.json b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_stairs_inner.json new file mode 100644 index 0000000..75a3fdb --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/red_pool_tile", + "side": "ariasessentials:block/red_pool_tile", + "top": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_stairs_outer.json b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_stairs_outer.json new file mode 100644 index 0000000..1b639c9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/red_pool_tile", + "side": "ariasessentials:block/red_pool_tile", + "top": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_wall_inventory.json b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_wall_inventory.json new file mode 100644 index 0000000..9a668c0 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_wall_post.json b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_wall_post.json new file mode 100644 index 0000000..3599ce8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_wall_side.json b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_wall_side.json new file mode 100644 index 0000000..ba32cae --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_wall_side_tall.json b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_wall_side_tall.json new file mode 100644 index 0000000..091d52c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/red_stairs.json b/src/main/resources/assets/ariasessentials/models/block/red_stairs.json new file mode 100644 index 0000000..c081a99 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/thresholds/blood_red", + "side": "ariasessentials:block/thresholds/blood_red", + "top": "ariasessentials:block/thresholds/blood_red" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/red_stairs_inner.json b/src/main/resources/assets/ariasessentials/models/block/red_stairs_inner.json new file mode 100644 index 0000000..c6bd2e3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/thresholds/blood_red", + "side": "ariasessentials:block/thresholds/blood_red", + "top": "ariasessentials:block/thresholds/blood_red" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/red_stairs_outer.json b/src/main/resources/assets/ariasessentials/models/block/red_stairs_outer.json new file mode 100644 index 0000000..a35fc7d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/thresholds/blood_red", + "side": "ariasessentials:block/thresholds/blood_red", + "top": "ariasessentials:block/thresholds/blood_red" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/red_tile.json b/src/main/resources/assets/ariasessentials/models/block/red_tile.json new file mode 100644 index 0000000..d5c2967 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_tile.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/top", + "textures": { + "top": "ariasessentials:block/thresholds/hallway/floor/tiles/red_tile_w_circle", + "side": "ariasessentials:block/thresholds/blood_red" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/red_tile_br.json b/src/main/resources/assets/ariasessentials/models/block/red_tile_br.json new file mode 100644 index 0000000..9715737 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_tile_br.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/sided", + "textures": { + "top": "ariasessentials:block/thresholds/hallway/floor/tiles/red_tile_transition_blood_red", + "side": "ariasessentials:block/thresholds/blood_red" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/red_tile_to_wall.json b/src/main/resources/assets/ariasessentials/models/block/red_tile_to_wall.json new file mode 100644 index 0000000..3dec861 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_tile_to_wall.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/sided", + "textures": { + "side": "ariasessentials:block/thresholds/hallway/wall/red_floor_to_wall", + "top": "ariasessentials:block/thresholds/blood_red" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/red_wall_variant_1.json b/src/main/resources/assets/ariasessentials/models/block/red_wall_variant_1.json new file mode 100644 index 0000000..f7dccbc --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_wall_variant_1.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/sided", + "textures": { + "side": "ariasessentials:block/thresholds/hallway/wall/red_wall", + "top": "ariasessentials:block/thresholds/blood_red" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/red_wall_variant_2.json b/src/main/resources/assets/ariasessentials/models/block/red_wall_variant_2.json new file mode 100644 index 0000000..1205523 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_wall_variant_2.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/sided", + "textures": { + "side": "ariasessentials:block/thresholds/hallway/wall/red_wall2", + "top": "ariasessentials:block/thresholds/blood_red" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/rotatable.json b/src/main/resources/assets/ariasessentials/models/block/rotatable.json new file mode 100644 index 0000000..1f9fbc3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rotatable.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "particle": "#side", + "down": "#side", + "up": "#side", + "north": "#front", + "east": "#side", + "south": "#side", + "west": "#side" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/sided.json b/src/main/resources/assets/ariasessentials/models/block/sided.json new file mode 100644 index 0000000..bf01ac5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/sided.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "particle": "#side", + "down": "#top", + "up": "#top", + "north": "#side", + "east": "#side", + "south": "#side", + "west": "#side" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model0.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model0.json new file mode 100644 index 0000000..a2c6e7c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model1.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model1.json new file mode 100644 index 0000000..6c2c7e1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model2.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model2.json new file mode 100644 index 0000000..abd8b1f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model3.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model3.json new file mode 100644 index 0000000..de3b4ba --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model4.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model4.json new file mode 100644 index 0000000..da7a784 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model4.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model5.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model5.json new file mode 100644 index 0000000..1123074 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model5.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model6.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model6.json new file mode 100644 index 0000000..9103309 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model6.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model7.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model7.json new file mode 100644 index 0000000..cd009f7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model7.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_bottom.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_bottom.json new file mode 100644 index 0000000..2dd3468 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_double.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_double.json new file mode 100644 index 0000000..a2c6e7c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_top.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_top.json new file mode 100644 index 0000000..e45c52a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_bottom.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_bottom.json new file mode 100644 index 0000000..5f117c1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_double.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_double.json new file mode 100644 index 0000000..6c2c7e1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_top.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_top.json new file mode 100644 index 0000000..d241a46 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_bottom.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_bottom.json new file mode 100644 index 0000000..a307c14 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_double.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_double.json new file mode 100644 index 0000000..abd8b1f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_top.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_top.json new file mode 100644 index 0000000..d3e7924 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_bottom.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_bottom.json new file mode 100644 index 0000000..e713321 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_double.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_double.json new file mode 100644 index 0000000..de3b4ba --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_top.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_top.json new file mode 100644 index 0000000..e4a83c7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_bottom.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_bottom.json new file mode 100644 index 0000000..4176d45 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_double.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_double.json new file mode 100644 index 0000000..da7a784 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_top.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_top.json new file mode 100644 index 0000000..0041d69 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_bottom.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_bottom.json new file mode 100644 index 0000000..e7f3413 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_double.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_double.json new file mode 100644 index 0000000..1123074 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_top.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_top.json new file mode 100644 index 0000000..9824fca --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_bottom.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_bottom.json new file mode 100644 index 0000000..a394f2a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_double.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_double.json new file mode 100644 index 0000000..9103309 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_top.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_top.json new file mode 100644 index 0000000..29d759e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_bottom.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_bottom.json new file mode 100644 index 0000000..aaa6416 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_double.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_double.json new file mode 100644 index 0000000..cd009f7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_top.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_top.json new file mode 100644 index 0000000..da5c0d3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0.json new file mode 100644 index 0000000..e73be34 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0_inner.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0_inner.json new file mode 100644 index 0000000..5ccfcb6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0_outer.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0_outer.json new file mode 100644 index 0000000..e9d33a2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1.json new file mode 100644 index 0000000..47b5dd7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1_inner.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1_inner.json new file mode 100644 index 0000000..ad3507c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1_outer.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1_outer.json new file mode 100644 index 0000000..1e13784 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2.json new file mode 100644 index 0000000..a10c7ec --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2_inner.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2_inner.json new file mode 100644 index 0000000..80348cd --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2_outer.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2_outer.json new file mode 100644 index 0000000..4210e44 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3.json new file mode 100644 index 0000000..f279aaa --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3_inner.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3_inner.json new file mode 100644 index 0000000..93b7943 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3_outer.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3_outer.json new file mode 100644 index 0000000..23308a1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4.json new file mode 100644 index 0000000..023819f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4_inner.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4_inner.json new file mode 100644 index 0000000..36a5b24 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4_outer.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4_outer.json new file mode 100644 index 0000000..5b0e232 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5.json new file mode 100644 index 0000000..c00f1f2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5_inner.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5_inner.json new file mode 100644 index 0000000..7f95f14 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5_outer.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5_outer.json new file mode 100644 index 0000000..5208530 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6.json new file mode 100644 index 0000000..e2cbc96 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6_inner.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6_inner.json new file mode 100644 index 0000000..cb6ddd8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6_outer.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6_outer.json new file mode 100644 index 0000000..4604c12 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7.json new file mode 100644 index 0000000..cb12521 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7_inner.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7_inner.json new file mode 100644 index 0000000..cb3c42b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7_outer.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7_outer.json new file mode 100644 index 0000000..3cd7743 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_wall_inventory.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_wall_inventory.json new file mode 100644 index 0000000..ee73ed8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_wall0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_wall_post.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_wall_post.json new file mode 100644 index 0000000..3a8e76a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_wall0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_wall_side.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_wall_side.json new file mode 100644 index 0000000..e08c599 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_wall0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_wall_side_tall.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_wall_side_tall.json new file mode 100644 index 0000000..4cc1107 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_wall0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/stable_singularity.json b/src/main/resources/assets/ariasessentials/models/block/stable_singularity.json new file mode 100644 index 0000000..ec540e6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/stable_singularity.json @@ -0,0 +1,321 @@ +{ + "credit": "Made with Blockbench", + "render_type": "minecraft:translucent", + "textures": { + "0": "ariasessentials:block/scrubber/stable_singularity_body", + "1": "ariasessentials:block/scrubber/stable_singularity_inner", + "particle": "ariasessentials:block/scrubber/stable_singularity_body" + }, + "elements": [ + { + "from": [10, 14, 2], + "to": [14, 15, 14], + "faces": { + "north": {"uv": [12.5, 6, 14.25, 6.25], "texture": "#0"}, + "east": {"uv": [11, 3, 15, 3.25], "texture": "#0"}, + "south": {"uv": [12.75, 12.25, 14.5, 12.5], "texture": "#0"}, + "west": {"uv": [11, 3.25, 15, 3.5], "texture": "#0"}, + "up": {"uv": [1.75, 4, 0, 0], "texture": "#0"}, + "down": {"uv": [3.5, 0, 1.75, 4], "texture": "#0"} + } + }, + { + "from": [1, 0, 1], + "to": [6, 1, 15], + "faces": { + "north": {"uv": [12.75, 12.5, 14.5, 12.75], "texture": "#0"}, + "east": {"uv": [11, 3.5, 15, 3.75], "texture": "#0"}, + "south": {"uv": [12.75, 12.75, 14.5, 13], "texture": "#0"}, + "west": {"uv": [11, 3.75, 15, 4], "texture": "#0"}, + "up": {"uv": [5.25, 4, 3.5, 0], "texture": "#0"}, + "down": {"uv": [1.75, 4, 0, 8], "texture": "#0"} + } + }, + { + "from": [6, 0, 1], + "to": [10, 1, 6], + "faces": { + "north": {"uv": [5.75, 8, 6.25, 8.25], "texture": "#0"}, + "east": {"uv": [0.5, 13, 2.25, 13.25], "texture": "#0"}, + "south": {"uv": [6.25, 8, 6.75, 8.25], "texture": "#0"}, + "west": {"uv": [6, 13, 7.75, 13.25], "texture": "#0"}, + "up": {"uv": [5, 13.75, 4.5, 12], "texture": "#0"}, + "down": {"uv": [12.5, 4.5, 12, 6.25], "texture": "#0"} + } + }, + { + "from": [6, 0, 10], + "to": [10, 1, 15], + "faces": { + "north": {"uv": [5.75, 8.25, 6.25, 8.5], "texture": "#0"}, + "east": {"uv": [7.75, 13, 9.5, 13.25], "texture": "#0"}, + "south": {"uv": [6.25, 8.25, 6.75, 8.5], "texture": "#0"}, + "west": {"uv": [9.5, 13, 11.25, 13.25], "texture": "#0"}, + "up": {"uv": [5.5, 13.75, 5, 12], "texture": "#0"}, + "down": {"uv": [6, 12, 5.5, 13.75], "texture": "#0"} + } + }, + { + "from": [10, 0, 1], + "to": [15, 1, 15], + "faces": { + "north": {"uv": [12.75, 13, 14.5, 13.25], "texture": "#0"}, + "east": {"uv": [11, 4, 15, 4.25], "texture": "#0"}, + "south": {"uv": [0.5, 13.25, 2.25, 13.5], "texture": "#0"}, + "west": {"uv": [11, 4.25, 15, 4.5], "texture": "#0"}, + "up": {"uv": [3.5, 8, 1.75, 4], "texture": "#0"}, + "down": {"uv": [5.25, 4, 3.5, 8], "texture": "#0"} + } + }, + { + "from": [1, 1, 2], + "to": [2, 6, 15], + "faces": { + "north": {"uv": [10.25, 13.25, 10.5, 14.75], "texture": "#0"}, + "east": {"uv": [7, 0, 11, 1.5], "texture": "#0"}, + "south": {"uv": [10.5, 13.25, 10.75, 14.75], "texture": "#0"}, + "west": {"uv": [7, 1.5, 11, 3], "texture": "#0"}, + "up": {"uv": [11.25, 8.5, 11, 4.5], "texture": "#0"}, + "down": {"uv": [11.5, 4.5, 11.25, 8.5], "texture": "#0"} + } + }, + { + "from": [1, 6, 11], + "to": [2, 10, 15], + "faces": { + "north": {"uv": [6.75, 8, 7, 8.5], "texture": "#0"}, + "east": {"uv": [4, 8, 5.75, 8.5], "texture": "#0"}, + "south": {"uv": [5.75, 8.5, 6, 9], "texture": "#0"}, + "west": {"uv": [4, 8.5, 5.75, 9], "texture": "#0"}, + "up": {"uv": [2.5, 14.75, 2.25, 13], "texture": "#0"}, + "down": {"uv": [2.75, 13, 2.5, 14.75], "texture": "#0"} + } + }, + { + "from": [1, 10, 2], + "to": [2, 15, 15], + "faces": { + "north": {"uv": [10.75, 13.25, 11, 14.75], "texture": "#0"}, + "east": {"uv": [7, 3, 11, 4.5], "texture": "#0"}, + "south": {"uv": [11, 13.25, 11.25, 14.75], "texture": "#0"}, + "west": {"uv": [7, 4.5, 11, 6], "texture": "#0"}, + "up": {"uv": [11.75, 8.5, 11.5, 4.5], "texture": "#0"}, + "down": {"uv": [12, 4.5, 11.75, 8.5], "texture": "#0"} + } + }, + { + "from": [1, 6, 2], + "to": [2, 10, 6], + "faces": { + "north": {"uv": [6, 8.5, 6.25, 9], "texture": "#0"}, + "east": {"uv": [11.5, 9, 13.25, 9.5], "texture": "#0"}, + "south": {"uv": [6.25, 8.5, 6.5, 9], "texture": "#0"}, + "west": {"uv": [11.5, 9.5, 13.25, 10], "texture": "#0"}, + "up": {"uv": [3, 14.75, 2.75, 13], "texture": "#0"}, + "down": {"uv": [3.25, 13, 3, 14.75], "texture": "#0"} + } + }, + { + "from": [14, 10, 1], + "to": [15, 15, 15], + "faces": { + "north": {"uv": [12.75, 13.25, 13, 14.75], "texture": "#0"}, + "east": {"uv": [7, 6, 11, 7.5], "texture": "#0"}, + "south": {"uv": [13, 13.25, 13.25, 14.75], "texture": "#0"}, + "west": {"uv": [7, 7.5, 11, 9], "texture": "#0"}, + "up": {"uv": [3.75, 16, 3.5, 12], "texture": "#0"}, + "down": {"uv": [4, 12, 3.75, 16], "texture": "#0"} + } + }, + { + "from": [14, 6, 10], + "to": [15, 10, 15], + "faces": { + "north": {"uv": [6.5, 8.5, 6.75, 9], "texture": "#0"}, + "east": {"uv": [11.5, 10, 13.25, 10.5], "texture": "#0"}, + "south": {"uv": [6.75, 8.5, 7, 9], "texture": "#0"}, + "west": {"uv": [6, 12, 7.75, 12.5], "texture": "#0"}, + "up": {"uv": [3.5, 14.75, 3.25, 13], "texture": "#0"}, + "down": {"uv": [6.25, 13.25, 6, 15], "texture": "#0"} + } + }, + { + "from": [14, 6, 1], + "to": [15, 10, 6], + "faces": { + "north": {"uv": [3.5, 9.5, 3.75, 10], "texture": "#0"}, + "east": {"uv": [12, 6.25, 13.75, 6.75], "texture": "#0"}, + "south": {"uv": [3.75, 9.5, 4, 10], "texture": "#0"}, + "west": {"uv": [12, 6.75, 13.75, 7.25], "texture": "#0"}, + "up": {"uv": [6.5, 15, 6.25, 13.25], "texture": "#0"}, + "down": {"uv": [6.75, 13.25, 6.5, 15], "texture": "#0"} + } + }, + { + "from": [14, 1, 1], + "to": [15, 6, 15], + "faces": { + "north": {"uv": [13.25, 13.25, 13.5, 14.75], "texture": "#0"}, + "east": {"uv": [0, 8, 4, 9.5], "texture": "#0"}, + "south": {"uv": [0.5, 13.5, 0.75, 15], "texture": "#0"}, + "west": {"uv": [4, 9, 8, 10.5], "texture": "#0"}, + "up": {"uv": [4.25, 16, 4, 12], "texture": "#0"}, + "down": {"uv": [4.5, 12, 4.25, 16], "texture": "#0"} + } + }, + { + "from": [1, 10, 1], + "to": [14, 15, 2], + "faces": { + "north": {"uv": [8, 9, 11.5, 10.5], "texture": "#0"}, + "east": {"uv": [0.75, 13.5, 1, 15], "texture": "#0"}, + "south": {"uv": [0, 9.5, 3.5, 11], "texture": "#0"}, + "west": {"uv": [1, 13.5, 1.25, 15], "texture": "#0"}, + "up": {"uv": [15.5, 7.5, 12, 7.25], "texture": "#0"}, + "down": {"uv": [15.5, 7.5, 12, 7.75], "texture": "#0"} + } + }, + { + "from": [9, 6, 1], + "to": [14, 10, 2], + "faces": { + "north": {"uv": [0.5, 12.5, 2, 13], "texture": "#0"}, + "east": {"uv": [3.5, 10, 3.75, 10.5], "texture": "#0"}, + "south": {"uv": [2, 12.5, 3.5, 13], "texture": "#0"}, + "west": {"uv": [3.75, 10, 4, 10.5], "texture": "#0"}, + "up": {"uv": [14.75, 10.25, 13.25, 10], "texture": "#0"}, + "down": {"uv": [14.75, 10.25, 13.25, 10.5], "texture": "#0"} + } + }, + { + "from": [1, 6, 1], + "to": [5, 10, 2], + "faces": { + "north": {"uv": [12.5, 4.5, 14, 5], "texture": "#0"}, + "east": {"uv": [10.5, 12.5, 10.75, 13], "texture": "#0"}, + "south": {"uv": [12.5, 5, 14, 5.5], "texture": "#0"}, + "west": {"uv": [10.75, 12.5, 11, 13], "texture": "#0"}, + "up": {"uv": [8.25, 13.75, 6.75, 13.5], "texture": "#0"}, + "down": {"uv": [9.75, 13.5, 8.25, 13.75], "texture": "#0"} + } + }, + { + "from": [1, 1, 1], + "to": [14, 6, 2], + "faces": { + "north": {"uv": [3.5, 10.5, 7, 12], "texture": "#0"}, + "east": {"uv": [1.25, 13.5, 1.5, 15], "texture": "#0"}, + "south": {"uv": [7, 10.5, 10.5, 12], "texture": "#0"}, + "west": {"uv": [1.5, 13.5, 1.75, 15], "texture": "#0"}, + "up": {"uv": [11.25, 12.25, 7.75, 12], "texture": "#0"}, + "down": {"uv": [15.5, 7.75, 12, 8], "texture": "#0"} + } + }, + { + "from": [2, 1, 15], + "to": [14, 6, 15], + "faces": { + "north": {"uv": [10.5, 10.5, 14, 12], "texture": "#0"}, + "east": {"uv": [1.75, 13.5, 2, 15], "texture": "#0"}, + "south": {"uv": [0, 11, 3.5, 12.5], "texture": "#0"}, + "west": {"uv": [2, 13.5, 2.25, 15], "texture": "#0"}, + "up": {"uv": [15.5, 8.25, 12, 8], "texture": "#0"}, + "down": {"uv": [15.5, 8.25, 12, 8.5], "texture": "#0"} + } + }, + { + "from": [2, 6, 14], + "to": [6, 10, 15], + "faces": { + "north": {"uv": [12.5, 5.5, 14, 6], "texture": "#0"}, + "east": {"uv": [11, 12.5, 11.25, 13], "texture": "#0"}, + "south": {"uv": [6, 12.5, 7.5, 13], "texture": "#0"}, + "west": {"uv": [13.75, 6.5, 14, 7], "texture": "#0"}, + "up": {"uv": [15, 13.5, 13.5, 13.25], "texture": "#0"}, + "down": {"uv": [15, 13.5, 13.5, 13.75], "texture": "#0"} + } + }, + { + "from": [10, 6, 14], + "to": [14, 10, 15], + "faces": { + "north": {"uv": [7.5, 12.5, 9, 13], "texture": "#0"}, + "east": {"uv": [6.75, 13.75, 7, 14.25], "texture": "#0"}, + "south": {"uv": [9, 12.5, 10.5, 13], "texture": "#0"}, + "west": {"uv": [7, 13.75, 7.25, 14.25], "texture": "#0"}, + "up": {"uv": [6, 14, 4.5, 13.75], "texture": "#0"}, + "down": {"uv": [15.25, 6.25, 13.75, 6.5], "texture": "#0"} + } + }, + { + "from": [2, 10, 14], + "to": [14, 15, 15], + "faces": { + "north": {"uv": [11, 0, 14.5, 1.5], "texture": "#0"}, + "east": {"uv": [9.75, 13.5, 10, 15], "texture": "#0"}, + "south": {"uv": [11, 1.5, 14.5, 3], "texture": "#0"}, + "west": {"uv": [10, 13.5, 10.25, 15], "texture": "#0"}, + "up": {"uv": [14.75, 12.25, 11.25, 12], "texture": "#0"}, + "down": {"uv": [11.25, 12.25, 7.75, 12.5], "texture": "#0"} + } + }, + { + "from": [6, 14, 10], + "to": [10, 15, 14], + "faces": { + "north": {"uv": [13.75, 7, 14.25, 7.25], "texture": "#0"}, + "east": {"uv": [6.75, 13.25, 8.5, 13.5], "texture": "#0"}, + "south": {"uv": [7.25, 13.75, 7.75, 14], "texture": "#0"}, + "west": {"uv": [8.5, 13.25, 10.25, 13.5], "texture": "#0"}, + "up": {"uv": [11.75, 14, 11.25, 12.25], "texture": "#0"}, + "down": {"uv": [12.25, 12.25, 11.75, 14], "texture": "#0"} + } + }, + { + "from": [6, 14, 2], + "to": [10, 15, 6], + "faces": { + "north": {"uv": [7.75, 13.75, 8.25, 14], "texture": "#0"}, + "east": {"uv": [13.25, 9, 15, 9.25], "texture": "#0"}, + "south": {"uv": [8.25, 13.75, 8.75, 14], "texture": "#0"}, + "west": {"uv": [13.25, 9.25, 15, 9.5], "texture": "#0"}, + "up": {"uv": [12.75, 14, 12.25, 12.25], "texture": "#0"}, + "down": {"uv": [0.5, 12.5, 0, 14.25], "texture": "#0"} + } + }, + { + "from": [2, 14, 2], + "to": [6, 15, 14], + "faces": { + "north": {"uv": [13.25, 9.5, 15, 9.75], "texture": "#0"}, + "east": {"uv": [11, 8.5, 15, 8.75], "texture": "#0"}, + "south": {"uv": [13.25, 9.75, 15, 10], "texture": "#0"}, + "west": {"uv": [11, 8.75, 15, 9], "texture": "#0"}, + "up": {"uv": [7, 4, 5.25, 0], "texture": "#0"}, + "down": {"uv": [7, 4, 5.25, 8], "texture": "#0"} + } + }, + { + "name": "inner", + "from": [2, 1, 2], + "to": [14, 13, 14], + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#1", "cullface": "north"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "up": {"uv": [16, 16, 0, 0], "texture": "#1"}, + "down": {"uv": [16, 0, 0, 16], "texture": "#1"} + } + } + ], + "groups": [ + { + "name": "Outer Panels", + "origin": [0, 0, 0], + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23] + }, + 24 + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/steel_catwalk.json b/src/main/resources/assets/ariasessentials/models/block/steel_catwalk.json new file mode 100644 index 0000000..5827c0b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/steel_catwalk.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_catwalk" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_block.json b/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_block.json new file mode 100644 index 0000000..aba08a5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/steel_catwalk_block" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_stairs.json b/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_stairs.json new file mode 100644 index 0000000..7fa1ed7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_dr.json b/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_dr.json new file mode 100644 index 0000000..34caa59 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_dr.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_stairs_dr" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_lr.json b/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_lr.json new file mode 100644 index 0000000..d320c85 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_lr.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_stairs_lr" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_rr.json b/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_rr.json new file mode 100644 index 0000000..1fde452 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_rr.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_stairs_rr" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_top.json b/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_top.json new file mode 100644 index 0000000..cd9e0e1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_top.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_top" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/steel_floor_grating.json b/src/main/resources/assets/ariasessentials/models/block/steel_floor_grating.json new file mode 100644 index 0000000..1ac7a6c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/steel_floor_grating.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_floor_grating" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/steel_floor_grating_top.json b/src/main/resources/assets/ariasessentials/models/block/steel_floor_grating_top.json new file mode 100644 index 0000000..272d64d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/steel_floor_grating_top.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_floor_grating_top" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/steel_railing.json b/src/main/resources/assets/ariasessentials/models/block/steel_railing.json new file mode 100644 index 0000000..234af68 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/steel_railing.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_railing" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/steel_table.json b/src/main/resources/assets/ariasessentials/models/block/steel_table.json new file mode 100644 index 0000000..944528a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/steel_table.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_table" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/tflipflop.json b/src/main/resources/assets/ariasessentials/models/block/tflipflop.json new file mode 100644 index 0000000..ab49651 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/tflipflop.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/logicgates/tflipflop" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/uncrafter.json b/src/main/resources/assets/ariasessentials/models/block/uncrafter.json new file mode 100644 index 0000000..45b4424 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/uncrafter.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/custommodel/uncrafter" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/vault_steel_ore_block.json b/src/main/resources/assets/ariasessentials/models/block/vault_steel_ore_block.json new file mode 100644 index 0000000..e8b4d15 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/vault_steel_ore_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/vault_steel_ore_block" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/void.json b/src/main/resources/assets/ariasessentials/models/block/void.json new file mode 100644 index 0000000..56346db --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/void.json @@ -0,0 +1,6 @@ +{ + "parent": "ariasessentials:block/fb/cube", + "textures": { + "all": "ariasessentials:block/thresholds/void" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/whiteout.json b/src/main/resources/assets/ariasessentials/models/block/whiteout.json new file mode 100644 index 0000000..cb12f53 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/whiteout.json @@ -0,0 +1,6 @@ +{ + "parent": "ariasessentials:block/fb/cube", + "textures": { + "all": "ariasessentials:block/thresholds/white" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/item/aurora_compound.json b/src/main/resources/assets/ariasessentials/models/item/aurora_compound.json new file mode 100644 index 0000000..be0adc8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/aurora_compound.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/deprecated" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/black.json b/src/main/resources/assets/ariasessentials/models/item/black.json new file mode 100644 index 0000000..43fd342 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/black.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/deprecated" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/blood_red.json b/src/main/resources/assets/ariasessentials/models/item/blood_red.json new file mode 100644 index 0000000..23383f5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/blood_red.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/blood_red" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/blue_brick.json b/src/main/resources/assets/ariasessentials/models/item/blue_brick.json new file mode 100644 index 0000000..1713535 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/blue_brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/blue_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/blue_pool_light.json b/src/main/resources/assets/ariasessentials/models/item/blue_pool_light.json new file mode 100644 index 0000000..ca9338d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/blue_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/blue_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/blue_pool_tile.json b/src/main/resources/assets/ariasessentials/models/item/blue_pool_tile.json new file mode 100644 index 0000000..bb397c5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/blue_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/blue_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/blue_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/item/blue_pool_tile_slab.json new file mode 100644 index 0000000..6ce51fc --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/blue_pool_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/blue_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/blue_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/item/blue_pool_tile_stairs.json new file mode 100644 index 0000000..8067661 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/blue_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/blue_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/blue_pool_tile_wall.json b/src/main/resources/assets/ariasessentials/models/item/blue_pool_tile_wall.json new file mode 100644 index 0000000..6530648 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/blue_pool_tile_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/blue_pool_tile_wall_inventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/clear_glass_block.json b/src/main/resources/assets/ariasessentials/models/item/clear_glass_block.json new file mode 100644 index 0000000..43fd342 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/clear_glass_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/deprecated" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/clinker_brick_block.json b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_block.json new file mode 100644 index 0000000..fea28c4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/clinker_brick_block_model0" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/clinker_brick_recessed.json b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_recessed.json new file mode 100644 index 0000000..1941abb --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_recessed.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/brick/clinker_brick_recessed_model" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/clinker_brick_sastor_corner_block.json b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_sastor_corner_block.json new file mode 100644 index 0000000..970dff1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_sastor_corner_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/brick/clinker_brick_sastor_corner_model" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/clinker_brick_slab.json b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_slab.json new file mode 100644 index 0000000..bddbf0d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/clinker_brick_slab_model0_bottom" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/clinker_brick_stained_block.json b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_stained_block.json new file mode 100644 index 0000000..87317c7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_stained_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/clinker_brick_stained_block_model0" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/clinker_brick_stained_slab.json b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_stained_slab.json new file mode 100644 index 0000000..7b02d8a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_stained_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/clinker_brick_stained_slab_model0_bottom" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/clinker_brick_stained_stairs.json b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_stained_stairs.json new file mode 100644 index 0000000..f9729a1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_stained_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/clinker_brick_stained_stairs_model0" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/clinker_brick_stairs.json b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_stairs.json new file mode 100644 index 0000000..f06c004 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/clinker_brick_stairs_model0" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/clinker_brick_vertically_slit.json b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_vertically_slit.json new file mode 100644 index 0000000..a0efe2a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_vertically_slit.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/brick/clinker_brick_vertically_slit_model" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/clinker_brick_wall.json b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_wall.json new file mode 100644 index 0000000..ac48af8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/clinker_brick_wall_inventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/cobalt_block.json b/src/main/resources/assets/ariasessentials/models/item/cobalt_block.json new file mode 100644 index 0000000..7b70ab8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/cobalt_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cobalt_block" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/cobalt_ingot.json b/src/main/resources/assets/ariasessentials/models/item/cobalt_ingot.json new file mode 100644 index 0000000..cf8d92d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/cobalt_ingot.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "ariasessentials:item/cobalt_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/cobalt_ore.json b/src/main/resources/assets/ariasessentials/models/item/cobalt_ore.json new file mode 100644 index 0000000..3f9db41 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/cobalt_ore.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cobalt_ore" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/cyan.json b/src/main/resources/assets/ariasessentials/models/item/cyan.json new file mode 100644 index 0000000..96ff0f6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/cyan.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cyan" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/cyan_brick.json b/src/main/resources/assets/ariasessentials/models/item/cyan_brick.json new file mode 100644 index 0000000..bb3cd03 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/cyan_brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/cyan_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/cyan_stairs.json b/src/main/resources/assets/ariasessentials/models/item/cyan_stairs.json new file mode 100644 index 0000000..dd6bbdf --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/cyan_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cyan_stairs" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/cyan_tile.json b/src/main/resources/assets/ariasessentials/models/item/cyan_tile.json new file mode 100644 index 0000000..fcee8b6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/cyan_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cyan_tile" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/cyan_tile_br.json b/src/main/resources/assets/ariasessentials/models/item/cyan_tile_br.json new file mode 100644 index 0000000..f5bbd92 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/cyan_tile_br.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cyan_tile_br" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/cyan_tile_to_wall.json b/src/main/resources/assets/ariasessentials/models/item/cyan_tile_to_wall.json new file mode 100644 index 0000000..0a71f36 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/cyan_tile_to_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cyan_tile_to_wall" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/cyan_wall_variant_1.json b/src/main/resources/assets/ariasessentials/models/item/cyan_wall_variant_1.json new file mode 100644 index 0000000..8bb9041 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/cyan_wall_variant_1.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cyan_wall_variant_1" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/cyan_wall_variant_2.json b/src/main/resources/assets/ariasessentials/models/item/cyan_wall_variant_2.json new file mode 100644 index 0000000..671897e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/cyan_wall_variant_2.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cyan_wall_variant_2" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/dark_pool_light.json b/src/main/resources/assets/ariasessentials/models/item/dark_pool_light.json new file mode 100644 index 0000000..4697835 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dark_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dark_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dark_pool_tile.json b/src/main/resources/assets/ariasessentials/models/item/dark_pool_tile.json new file mode 100644 index 0000000..8d78ba1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dark_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dark_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dark_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/item/dark_pool_tile_slab.json new file mode 100644 index 0000000..f554d73 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dark_pool_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dark_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dark_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/item/dark_pool_tile_stairs.json new file mode 100644 index 0000000..9f46443 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dark_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dark_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dark_red_bed.json b/src/main/resources/assets/ariasessentials/models/item/dark_red_bed.json new file mode 100644 index 0000000..9ff068f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dark_red_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "ariasessentials:block/dark_red_wool" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dark_red_brick.json b/src/main/resources/assets/ariasessentials/models/item/dark_red_brick.json new file mode 100644 index 0000000..47dec36 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dark_red_brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/dark_red_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dark_red_carpet.json b/src/main/resources/assets/ariasessentials/models/item/dark_red_carpet.json new file mode 100644 index 0000000..11e525e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dark_red_carpet.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dark_red_carpet" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dark_red_dye.json b/src/main/resources/assets/ariasessentials/models/item/dark_red_dye.json new file mode 100644 index 0000000..af7f8ab --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dark_red_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/dark_red_dye" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dark_red_shulker_box.json b/src/main/resources/assets/ariasessentials/models/item/dark_red_shulker_box.json new file mode 100644 index 0000000..95f62dd --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dark_red_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "ariasessentials:block/dark_red_shulker_box" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dark_red_wool.json b/src/main/resources/assets/ariasessentials/models/item/dark_red_wool.json new file mode 100644 index 0000000..72d2daf --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dark_red_wool.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dark_red_wool" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/deepslate_eternium_ore_block.json b/src/main/resources/assets/ariasessentials/models/item/deepslate_eternium_ore_block.json new file mode 100644 index 0000000..a71d6d6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/deepslate_eternium_ore_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/deepslate_eternium_ore_block" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/deepslate_ilusium_ore_block.json b/src/main/resources/assets/ariasessentials/models/item/deepslate_ilusium_ore_block.json new file mode 100644 index 0000000..81da39a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/deepslate_ilusium_ore_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/deprecated" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/deprecated.json b/src/main/resources/assets/ariasessentials/models/item/deprecated.json new file mode 100644 index 0000000..be0adc8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/deprecated.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/deprecated" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_light.json b/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_light.json new file mode 100644 index 0000000..22a34ea --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_blue_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile.json b/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile.json new file mode 100644 index 0000000..8f8e70a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_blue_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_slab.json new file mode 100644 index 0000000..c875b79 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_blue_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_stairs.json new file mode 100644 index 0000000..3d5a816 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_blue_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_wall.json b/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_wall.json new file mode 100644 index 0000000..1b6223c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_blue_pool_tile_wall_inventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_light.json b/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_light.json new file mode 100644 index 0000000..2a63895 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_green_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_tile.json b/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_tile.json new file mode 100644 index 0000000..30c764c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_green_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_slab.json new file mode 100644 index 0000000..326aad1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_green_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_stairs.json new file mode 100644 index 0000000..34dc40a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_green_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_wall.json b/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_wall.json new file mode 100644 index 0000000..0ab3f79 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_green_pool_tile_wall_inventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_pool_light.json b/src/main/resources/assets/ariasessentials/models/item/dirty_pool_light.json new file mode 100644 index 0000000..cc400eb --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_pool_tile.json b/src/main/resources/assets/ariasessentials/models/item/dirty_pool_tile.json new file mode 100644 index 0000000..3860d03 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/item/dirty_pool_tile_slab.json new file mode 100644 index 0000000..17fa1a5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_pool_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/item/dirty_pool_tile_stairs.json new file mode 100644 index 0000000..a4f49d2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_pool_tile_wall.json b/src/main/resources/assets/ariasessentials/models/item/dirty_pool_tile_wall.json new file mode 100644 index 0000000..9431e23 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_pool_tile_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_pool_tile_wall_inventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_light.json b/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_light.json new file mode 100644 index 0000000..4eb9364 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_red_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_tile.json b/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_tile.json new file mode 100644 index 0000000..5ae2211 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_red_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_slab.json new file mode 100644 index 0000000..b54f233 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_red_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_stairs.json new file mode 100644 index 0000000..d4f4aad --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_red_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_wall.json b/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_wall.json new file mode 100644 index 0000000..eaf7c2b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_red_pool_tile_wall_inventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/empty_spawn_egg.json b/src/main/resources/assets/ariasessentials/models/item/empty_spawn_egg.json new file mode 100644 index 0000000..e3ce192 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/empty_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/empty_spawn_egg" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/encased_singularity.json b/src/main/resources/assets/ariasessentials/models/item/encased_singularity.json new file mode 100644 index 0000000..977d507 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/encased_singularity.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/encased_singularity" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/eternium_block.json b/src/main/resources/assets/ariasessentials/models/item/eternium_block.json new file mode 100644 index 0000000..8e9cbe8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/eternium_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/eternium_block" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/eternium_fragment.json b/src/main/resources/assets/ariasessentials/models/item/eternium_fragment.json new file mode 100644 index 0000000..95cb5d3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/eternium_fragment.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/eternium_fragment" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/eternium_ingot.json b/src/main/resources/assets/ariasessentials/models/item/eternium_ingot.json new file mode 100644 index 0000000..b96f26a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/eternium_ingot.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/eternium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/eternium_ore.json b/src/main/resources/assets/ariasessentials/models/item/eternium_ore.json new file mode 100644 index 0000000..b1064f7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/eternium_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/eternium_ore" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/eternium_ore_block.json b/src/main/resources/assets/ariasessentials/models/item/eternium_ore_block.json new file mode 100644 index 0000000..5f8ec24 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/eternium_ore_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/eternium_ore_block" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/eternium_rod.json b/src/main/resources/assets/ariasessentials/models/item/eternium_rod.json new file mode 100644 index 0000000..a6507a6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/eternium_rod.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/eternium_rod" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/filthy_blue_pool_light.json b/src/main/resources/assets/ariasessentials/models/item/filthy_blue_pool_light.json new file mode 100644 index 0000000..47fbc8a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/filthy_blue_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/filthy_blue_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/filthy_green_pool_light.json b/src/main/resources/assets/ariasessentials/models/item/filthy_green_pool_light.json new file mode 100644 index 0000000..42b3128 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/filthy_green_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/filthy_green_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/filthy_pool_light.json b/src/main/resources/assets/ariasessentials/models/item/filthy_pool_light.json new file mode 100644 index 0000000..2da8a2a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/filthy_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/filthy_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/filthy_red_pool_light.json b/src/main/resources/assets/ariasessentials/models/item/filthy_red_pool_light.json new file mode 100644 index 0000000..9bc4206 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/filthy_red_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/filthy_red_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/green_brick.json b/src/main/resources/assets/ariasessentials/models/item/green_brick.json new file mode 100644 index 0000000..f519f4d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/green_brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/green_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/green_pool_light.json b/src/main/resources/assets/ariasessentials/models/item/green_pool_light.json new file mode 100644 index 0000000..484a2c4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/green_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/green_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/green_pool_tile.json b/src/main/resources/assets/ariasessentials/models/item/green_pool_tile.json new file mode 100644 index 0000000..f873f69 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/green_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/green_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/green_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/item/green_pool_tile_slab.json new file mode 100644 index 0000000..70bf1ab --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/green_pool_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/green_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/green_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/item/green_pool_tile_stairs.json new file mode 100644 index 0000000..ee60ef1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/green_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/green_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/green_pool_tile_wall.json b/src/main/resources/assets/ariasessentials/models/item/green_pool_tile_wall.json new file mode 100644 index 0000000..2bffafb --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/green_pool_tile_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/green_pool_tile_wall_inventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/ihan_crystal.json b/src/main/resources/assets/ariasessentials/models/item/ihan_crystal.json new file mode 100644 index 0000000..1d9f5c1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/ihan_crystal.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/ihan_crystal" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/light_blue_brick.json b/src/main/resources/assets/ariasessentials/models/item/light_blue_brick.json new file mode 100644 index 0000000..bf87794 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/light_blue_brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/light_blue_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/lime_brick.json b/src/main/resources/assets/ariasessentials/models/item/lime_brick.json new file mode 100644 index 0000000..c4a52c9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/lime_brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/lime_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/magical_scrubber.json b/src/main/resources/assets/ariasessentials/models/item/magical_scrubber.json new file mode 100644 index 0000000..b3adf14 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/magical_scrubber.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/magical_scrubber" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/magma_powder.json b/src/main/resources/assets/ariasessentials/models/item/magma_powder.json new file mode 100644 index 0000000..03f798a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/magma_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "ariasessentials:item/magma_powder" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/melted_ender_pearl.json b/src/main/resources/assets/ariasessentials/models/item/melted_ender_pearl.json new file mode 100644 index 0000000..e15010f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/melted_ender_pearl.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/melted_ender_pearl" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/metal_bar.json b/src/main/resources/assets/ariasessentials/models/item/metal_bar.json new file mode 100644 index 0000000..96985c0 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/metal_bar.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/metal_bar" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/mob_capture_ball.json b/src/main/resources/assets/ariasessentials/models/item/mob_capture_ball.json new file mode 100644 index 0000000..d082c00 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/mob_capture_ball.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/mob_capture_ball" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/nether_vault_steel_ore_block.json b/src/main/resources/assets/ariasessentials/models/item/nether_vault_steel_ore_block.json new file mode 100644 index 0000000..2c0b6c1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/nether_vault_steel_ore_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/nether_vault_steel_ore_block" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/old_industrial_wood_door.json b/src/main/resources/assets/ariasessentials/models/item/old_industrial_wood_door.json new file mode 100644 index 0000000..b3dcca4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/old_industrial_wood_door.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/old_industrial_wood_door" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/old_industrial_wood_planks.json b/src/main/resources/assets/ariasessentials/models/item/old_industrial_wood_planks.json new file mode 100644 index 0000000..3518b07 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/old_industrial_wood_planks.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/old_industrial_wood_planks_model0" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/old_industrial_wood_slab.json b/src/main/resources/assets/ariasessentials/models/item/old_industrial_wood_slab.json new file mode 100644 index 0000000..7c4605c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/old_industrial_wood_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/old_industrial_wood_slab_model0_bottom" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/old_industrial_wood_stairs.json b/src/main/resources/assets/ariasessentials/models/item/old_industrial_wood_stairs.json new file mode 100644 index 0000000..656dc43 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/old_industrial_wood_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/old_industrial_wood_stairs_model0" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/panzerglass_block.json b/src/main/resources/assets/ariasessentials/models/item/panzerglass_block.json new file mode 100644 index 0000000..852f3e6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/panzerglass_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/panzerglass_block_inventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/panzerglass_slab.json b/src/main/resources/assets/ariasessentials/models/item/panzerglass_slab.json new file mode 100644 index 0000000..8312f20 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/panzerglass_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/panzerglass_slab_model0_bottom" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/partial_item.json b/src/main/resources/assets/ariasessentials/models/item/partial_item.json new file mode 100644 index 0000000..459376f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/partial_item.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/partial_item" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/pool_light.json b/src/main/resources/assets/ariasessentials/models/item/pool_light.json new file mode 100644 index 0000000..b3c0cd5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/pool_light" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/pool_tile.json b/src/main/resources/assets/ariasessentials/models/item/pool_tile.json new file mode 100644 index 0000000..9db5306 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/item/pool_tile_slab.json new file mode 100644 index 0000000..886bf6b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/pool_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/item/pool_tile_stairs.json new file mode 100644 index 0000000..74630dc --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/pool_tile_wall.json b/src/main/resources/assets/ariasessentials/models/item/pool_tile_wall.json new file mode 100644 index 0000000..8eaca96 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/pool_tile_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/pool_tile_wall_inventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/raw_cobalt.json b/src/main/resources/assets/ariasessentials/models/item/raw_cobalt.json new file mode 100644 index 0000000..c7ced34 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/raw_cobalt.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "ariasessentials:item/raw_cobalt" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/item/raw_cobalt_ore.json b/src/main/resources/assets/ariasessentials/models/item/raw_cobalt_ore.json new file mode 100644 index 0000000..a0633c4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/raw_cobalt_ore.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/raw_cobalt_ore" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/raw_vault_steel_ore.json b/src/main/resources/assets/ariasessentials/models/item/raw_vault_steel_ore.json new file mode 100644 index 0000000..b5abf35 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/raw_vault_steel_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/raw_vault_steel_ore" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/rebar_concrete.json b/src/main/resources/assets/ariasessentials/models/item/rebar_concrete.json new file mode 100644 index 0000000..4c30753 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/rebar_concrete.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/rebar_concrete_model0" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_slab.json b/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_slab.json new file mode 100644 index 0000000..46db292 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/rebar_concrete_slab_model0_bottom" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_stairs.json b/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_stairs.json new file mode 100644 index 0000000..395b6d4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/rebar_concrete_stairs_model0" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_tile.json b/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_tile.json new file mode 100644 index 0000000..b518834 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/rebar_concrete_tile_model0" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_tile_slab.json b/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_tile_slab.json new file mode 100644 index 0000000..45b67f8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/rebar_concrete_tile_slab_model0_bottom" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_tile_stairs.json new file mode 100644 index 0000000..d4ab9ae --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/rebar_concrete_tile_stairs_model0" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_wall.json b/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_wall.json new file mode 100644 index 0000000..318665f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/rebar_concrete_wall_inventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/red_brick.json b/src/main/resources/assets/ariasessentials/models/item/red_brick.json new file mode 100644 index 0000000..1a1ce8c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/red_brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/red_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/red_pool_light.json b/src/main/resources/assets/ariasessentials/models/item/red_pool_light.json new file mode 100644 index 0000000..617a8b2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/red_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/red_pool_tile.json b/src/main/resources/assets/ariasessentials/models/item/red_pool_tile.json new file mode 100644 index 0000000..b3af3c3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/red_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/red_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/item/red_pool_tile_slab.json new file mode 100644 index 0000000..e1c2dec --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/red_pool_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/red_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/item/red_pool_tile_stairs.json new file mode 100644 index 0000000..fdc774d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/red_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/red_pool_tile_wall.json b/src/main/resources/assets/ariasessentials/models/item/red_pool_tile_wall.json new file mode 100644 index 0000000..6e6b81c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/red_pool_tile_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_pool_tile_wall_inventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/red_stairs.json b/src/main/resources/assets/ariasessentials/models/item/red_stairs.json new file mode 100644 index 0000000..42cfaf7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/red_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_stairs" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/red_tile.json b/src/main/resources/assets/ariasessentials/models/item/red_tile.json new file mode 100644 index 0000000..4887ad4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/red_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_tile" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/red_tile_br.json b/src/main/resources/assets/ariasessentials/models/item/red_tile_br.json new file mode 100644 index 0000000..4ac4d1d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/red_tile_br.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_tile_br" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/red_tile_to_wall.json b/src/main/resources/assets/ariasessentials/models/item/red_tile_to_wall.json new file mode 100644 index 0000000..0c939a6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/red_tile_to_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_tile_to_wall" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/red_wall_variant_1.json b/src/main/resources/assets/ariasessentials/models/item/red_wall_variant_1.json new file mode 100644 index 0000000..a4c9a70 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/red_wall_variant_1.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_wall_variant_1" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/red_wall_variant_2.json b/src/main/resources/assets/ariasessentials/models/item/red_wall_variant_2.json new file mode 100644 index 0000000..f4d727e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/red_wall_variant_2.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_wall_variant_2" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/scrubber_frame.json b/src/main/resources/assets/ariasessentials/models/item/scrubber_frame.json new file mode 100644 index 0000000..1c95da5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/scrubber_frame.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/scrubber_frame" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/scrubber_frame_piece.json b/src/main/resources/assets/ariasessentials/models/item/scrubber_frame_piece.json new file mode 100644 index 0000000..32cd179 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/scrubber_frame_piece.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/scrubber_frame_piece" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/singularity.json b/src/main/resources/assets/ariasessentials/models/item/singularity.json new file mode 100644 index 0000000..c18ae5c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/singularity.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/singularity" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/slag_brick_block.json b/src/main/resources/assets/ariasessentials/models/item/slag_brick_block.json new file mode 100644 index 0000000..daaef79 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/slag_brick_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/slag_brick_block_model0" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/slag_brick_slab.json b/src/main/resources/assets/ariasessentials/models/item/slag_brick_slab.json new file mode 100644 index 0000000..79f29f9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/slag_brick_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/slag_brick_slab_model0_bottom" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/slag_brick_stairs.json b/src/main/resources/assets/ariasessentials/models/item/slag_brick_stairs.json new file mode 100644 index 0000000..37b186b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/slag_brick_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/slag_brick_stairs_model0" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/slag_brick_wall.json b/src/main/resources/assets/ariasessentials/models/item/slag_brick_wall.json new file mode 100644 index 0000000..6697705 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/slag_brick_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/slag_brick_wall_inventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/stable_singularity.json b/src/main/resources/assets/ariasessentials/models/item/stable_singularity.json new file mode 100644 index 0000000..7f2d67d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/stable_singularity.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/stable_singularity" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/steel_catwalk.json b/src/main/resources/assets/ariasessentials/models/item/steel_catwalk.json new file mode 100644 index 0000000..b63ebe3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/steel_catwalk.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/steel_catwalk" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_block.json b/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_block.json new file mode 100644 index 0000000..f95cbc4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/steel_catwalk_block" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_stairs.json b/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_stairs.json new file mode 100644 index 0000000..c203015 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/steel_catwalk_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_stairs_dr.json b/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_stairs_dr.json new file mode 100644 index 0000000..ef44ad3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_stairs_dr.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/steel_catwalk_stairs_dr" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_stairs_lr.json b/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_stairs_lr.json new file mode 100644 index 0000000..a8c54e3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_stairs_lr.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/steel_catwalk_stairs_lr" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_stairs_rr.json b/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_stairs_rr.json new file mode 100644 index 0000000..2cde4f9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_stairs_rr.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/steel_catwalk_stairs_rr" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_top.json b/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_top.json new file mode 100644 index 0000000..5b6147a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_top.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/steel_catwalk_top" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/steel_floor_grating.json b/src/main/resources/assets/ariasessentials/models/item/steel_floor_grating.json new file mode 100644 index 0000000..fb687d4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/steel_floor_grating.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/steel_floor_grating" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/steel_floor_grating_top.json b/src/main/resources/assets/ariasessentials/models/item/steel_floor_grating_top.json new file mode 100644 index 0000000..d20c2e2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/steel_floor_grating_top.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/steel_floor_grating_top" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/steel_railing.json b/src/main/resources/assets/ariasessentials/models/item/steel_railing.json new file mode 100644 index 0000000..bcee8bf --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/steel_railing.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/steel_railing" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/steel_table.json b/src/main/resources/assets/ariasessentials/models/item/steel_table.json new file mode 100644 index 0000000..9e4d400 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/steel_table.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/steel_table" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/tflipflop.json b/src/main/resources/assets/ariasessentials/models/item/tflipflop.json new file mode 100644 index 0000000..9e4200e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/tflipflop.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/tflipflop" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/eiab.json b/src/main/resources/assets/ariasessentials/models/item/tiab.json similarity index 55% rename from src/main/resources/assets/ariasessentials/models/item/eiab.json rename to src/main/resources/assets/ariasessentials/models/item/tiab.json index 47d2f64..4103a7a 100644 --- a/src/main/resources/assets/ariasessentials/models/item/eiab.json +++ b/src/main/resources/assets/ariasessentials/models/item/tiab.json @@ -1,6 +1,6 @@ { "parent": "item/generated", "textures": { - "layer0": "ariasessentials:item/eiab" + "layer0": "ariasessentials:item/tiab" } } \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/uncrafter.json b/src/main/resources/assets/ariasessentials/models/item/uncrafter.json new file mode 100644 index 0000000..61c7f95 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/uncrafter.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/uncrafter" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/void.json b/src/main/resources/assets/ariasessentials/models/item/void.json new file mode 100644 index 0000000..1e5c307 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/void.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/void" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/white_brick.json b/src/main/resources/assets/ariasessentials/models/item/white_brick.json new file mode 100644 index 0000000..8ce45df --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/white_brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/white_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/whiteout.json b/src/main/resources/assets/ariasessentials/models/item/whiteout.json new file mode 100644 index 0000000..16eb02c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/whiteout.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/whiteout" +} diff --git a/src/main/resources/assets/ariasessentials/textures/block/black.png b/src/main/resources/assets/ariasessentials/textures/block/black.png new file mode 100644 index 0000000000000000000000000000000000000000..3c4fc4b53e57851ca966d3c4cc51c3c5c39991fd GIT binary patch literal 124 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61SBU+%rFB|jKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sBufiR<}hF1enP|(xGF~q_@S%P(Of`|hnGcyCT00ZNWoXM6z ONd`|>KbLh*2~7aD)fqtm literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/blue_pool_light.png b/src/main/resources/assets/ariasessentials/textures/block/blue_pool_light.png new file mode 100644 index 0000000000000000000000000000000000000000..eccc64a6246ff7105b9a9f98f76badacc8c14093 GIT binary patch literal 1355 zcmV-R1+@B!P)Px)1xZ9fR9J<*m(Po3#TCat=TzPMe)OB3jI`|-1~Y~@C`dpN6EClz8xJ$A~ zmPyt@$iLt+Sp`C}6bZx_@yCE5h`JDU62>7;kJ_evZBNgQGo-t9ZDr!(Uu z1&4FrtE%t!TXpKkDe1j+(QH2;eZ^)8J&^-~CF9)(HhJ{rf01?zr0=m=iMwM^)kotG zk8kqJpS?=h-^2Mnv7FK0xE&NMMBe<}llu*f_vEGll9=<+& z66u}Yva~bhH`zJXdOe0&#vsq>XBoM3cvYNpI8_ut1feR8x3)JU0Wl?FjFc%+#K}RRv&}Wk}zlB6t$me!*Zpr{_KWEMu5g--{U#sb-)N&?RpXH$IsW%_w7B3<4mf z#30YHSPjG*kS<-Ne>x+t1@ydMgrVuIs>|3PC7>osW|VF6T2MdB09f}9`S40%#{}Lx z_aUcFoM6=NGw6h%nSO1DpdE%5aYNLEp&f#02wa)X*xKFY^yzy!J<8FipZN=qJ@rSt zD!wLM_|CU$d8djKsjO4Cs&5y2dusGV&}JXI)@pBJ-jHY$hPJ65v=#M@xN9(-UMVtHHR<*K~|K38qeJ(L78^wnKX z>rQW7uivJ0@fH>;uaXI(QXL?NOjldjk%S$hRrQ!510_boTY@;Ak;tx5o6OMqTL2R| zG8|1>*5IT@P#d>yILZ~pApK*1k-;=RrF4xLYuk$1IgB)QuwzO9%s_pcM@ zTgwJbMw3!?bk_dB@p{Niw25Pzw1pXC*JL&~osy+QQI-qr5FMN%4KWL{%893s{0Xdz%)6wJ$Vkvcc(eT=s(EuV$Jyeyd(1!l&yD3|Yo zNeE0rsL1PB{jVM-lMqnXBa~_RF1R|Fb75!a|MoP)jL9@C-vuxDQ;<2tRnQiVkDk4U z3s)j%znYSJB^QwTR5F9-?;3IMD_az=T!P#qeLbLR>$eZ^=yQK%eC`cIb5!#>bXAxy zZeK>;zdW;kGMozIdE~z1J!a8(>5D5of7dz+B&$aEXOWM$C;aKc z9^W5jJh(CBzT0{XGRH>W@!AJpFqFvVi8a1==W#-eh`_u^eCJq?{{SQi%YlkEIZXfn N002ovPDHLkV1l+0mxBNR literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/blue_pool_tile.png b/src/main/resources/assets/ariasessentials/textures/block/blue_pool_tile.png new file mode 100644 index 0000000000000000000000000000000000000000..2119b59ca53fcd17a9f356df8e21077fa4e4f279 GIT binary patch literal 1396 zcmV-)1&jKLP)Px)E=fc|R9JT2a?uYFenGr~*V0E5wE^ z|3Lqiid7etkWd$}sAxB>q6&mkkbqWzC`uHk)NxZc$=KKT`rf%`=A4(sI4)9jk0Y`i zJ#(I!Idh(mSBgLEsE!+?G-w?$t2rQORQ~ey4Zi)m{}A^*QaZG5v1fZ79+Y3bw85*t zc#md0!n%^s)|Bf{f&py;zkmIEJoRzKBL2_6bqZ`ACMYCP{dh4@UsJAY%s?J#uoUdCB<()`zI0KpOZle3jS*xHBua6;jNNGSo znFEkJ12Hl`*hWl_F*%5E{AUp(r1+PeMgBSQx+Ksuf{)4{?@hTf$T7h4t3Cc&%@|EQ z085$S&NQ&zv)r!(-@m-fziw6B+^N{wT;}X*9|g8=A21x`Jh!#RyOV~?PAH7vM7UPX z`06mHw8G_Kj(g>2?<~~u2XDO0cdza)^nu%#me}j}&@1P-ZD4y2Yq^E<>r@IZw-nxU z{V0$d@Da}EIg>k(os^QvOJv(5gEYqU*s;sbHyk<1b+Pjh{Qe}9ic z1S?Sa$YHBkfrBP+Ytr!NYEDp+cvNsH9Si0mABf}T#0R1(AoQIuutHRrw2Er?msLsP zM!=+WoMk5I1G82ErFX3NNvrs%#wo>rcXH(9oa(0lhwUX1sZv8wc ztEJ(nQKEJSY95r;!q6)0Od75%7X*#O&d>OK8rbYx4B%DiTR{eI-q1xl|Hlu{^R>4Z z_kr6#xya_9?kvpvN9hwTmG`T!TuAl-^W%%jynm!Vk;?nhJ?sPji`xgu_85J_q;xJq z(g%L|_q!)A0RLZ~a4DV7TTS|ah(T<4tUlpVI*+PJA27!|^f-OOrF1Uc#X@{3Gs(Pv zls+NXzL@IG`%|7?F4-J76y?VLoaNl{+*--iyHhSXL*Wcg;Dfy>&peS+I?LtdoZX;2 zPM?s}T=2<@oBZvInsF0P@_a3~AP^M3vr+QoZ?_lf{Q8eB@X}A;Uf4H2{Phno4|E(4 z8?Zt=YzVs(+K=uL+jwf8r}{!{0;#@{S;0N58IW5mq zI?syK}f zlzIB@th_sO_muMn5;Nax%$7|^IJDqSRM@_$s~bBVk7(tlmu0vKG*5JM`PrBH)QRWJ z!)WV6X)`1YJeL2cD9QU;m=KU_xh6t3De26Dlt(E_tKKB>FwE!EWmPR-e*x%B22WQ% Jmvv4FO#t9KVT}L) literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/compressed_obsidian_block.png b/src/main/resources/assets/ariasessentials/textures/block/compressed_obsidian_block.png new file mode 100644 index 0000000000000000000000000000000000000000..e2a0430680a3b094bdfdded7e40b14d635aa78a8 GIT binary patch literal 443 zcmV;s0Yv_ZP)Px$bxA})R5*=YlfAYZK?s9C!T9E+NtHhD|A?^{lmfiICtK_vqd`a-{r>gGATpBb z;;I*RarK2H08$4@go3u|t=Z;;l9OK;1EO7ARfGZnDHfbaA_ZWK$vA{D?cT*g#Db@L zyXY?3h3#zwLfFmeZtN!+XE!nt3Ge~f*bNF6e_!WSPb6{G3u!0=L>%m%&ddf^zX%21 zP1?n=i)xb!q##4XKw>5{<-VEpoBlF9ASBq^&>SUbL13()7l6SU!6k9x8)X5xYD=+w z5~&HGX@qF^z26d^Sw?4LNS;#bDsr!)gN2E*3L^H8#AKHMvlWJUuUt2wXwOLW|GBJSi3Tv(nF zG3~k;bT_BF;F~R7g=wk_@CGXp{!gPlOuCOogZ0U%Jry^OnEL*Ir?qWP=3{2mJNt$E ly=a~h@o`CpO=#o~{sBG2DpC`yZh-&*002ovPDHLkV1k;>!5#nr literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/bottom_plate.png b/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/bottom_plate.png new file mode 100644 index 0000000000000000000000000000000000000000..265932b4753eb7498331731a3f16c249e20aa14e GIT binary patch literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzmSQK*5Dp-y;YjHK^20q{977^n z-(EY&d%%E$<)CVj;+J^QxkqfD=vekYtfMk*`B~y@_l*1ubu<^VG0oO82jVWGY)b()tr7c8)yZCr>mdKI;Vst0GAXo Awg3PC literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/compression_lid.png b/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/compression_lid.png new file mode 100644 index 0000000000000000000000000000000000000000..2b16ff9eb635b03bca615620c478a35f216d351d GIT binary patch literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzmSQK*5Dp-y;YjHK@?$(*977^n z-%dLyctC-JrN8IDNz(tRO9Ztq@TpiS&A+Q}p!5BZO6k$0&5wll+)<56sQSyxIDM1h zG%(JOVlg~z;cypd4}+(x KpUXO@geCx+{WsnK literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/compressor.png b/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/compressor.png new file mode 100644 index 0000000000000000000000000000000000000000..e914b791c4b86d18da6d59b3066f91c897af06d2 GIT binary patch literal 162 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdzmSQK*5Dp-y;YjHK@*_Q6977^n z-(K0sdq9E5x%#8wOl%Tz4PYC#0h4hBzGKbLh* G2~7a0`!?nP literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/support0.png b/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/support0.png new file mode 100644 index 0000000000000000000000000000000000000000..e0ebd8d1cf5b44bcf1012698d609dc6cbee50a8e GIT binary patch literal 126 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`EX7WqAsj$Z!;#VfPx)B}qg<#WcCLHZW#!@2KE3Fh4g**}1Os(tx&D(!a81)PpD!>XU@S00Q^1YAbVY*iHl@2RZic@eC&SP=xkELRF(fENHQzZF2045XY%De?Go znKmUBAuw-SW+5nVbjLbsdz0rsi6aT$+8;3C{%Fz20s~>p36i~>m2*#Mz$}wv)3Nb}Q z%9*T6%$ZOuAR+(^y~l_p<%|PGQ(&vAsGVcrJ;U<7vVbv53v>e3$$P|In^j4w#FSQx z0LVGBRaKy1Fu1z1q$VzXUIf(6t=!N}7LjA$pCzCWWmRIIya*b2&!Ber%Hw|g{ja0( zJ}PVRy}H^1A}jMt-vxa)^oTnm6(Qxk65F}MTT5jvPdxqu?)}mwfkmQ$NOl8pe|;qN=2Jb_daE z5$|rwI^MA`gE4{(YC&|;m$*sxIhaq!*%~;UbGU0)zscTcXY*>$L;NW)3~>F)N4fmP zi^v~deVaeM{=sJ_y36wF8@IXnQHylD8sbAU*R1E-RnN5~mC z#=v0U5ip3Yjw2Z5PVZf>pQWthbrrP41XIF78MG0g2XrRk9YlBbFD+qE3=T4>osl=F z&8kTGHk9~&hKMdL>u_=>sEn71uWjH}eSQ}0sx z+|u$z2sAM=Z(As1oGEc&76P*nmgL1(|F4J1ECh_PXjYu+G7e0ehWAFJJDz6ljHg*g zylU5;W-)JmnxPP5#8u8^qH8#mdz^%e$2#I0Oc*N&zQn4kXgC5`PN28by!9Bz?P z=HTFnuYL6aCUZk<#-tQE8c(@+VF$6xO!xAo9S+8@H~N6l$9vS?vvXmG?d>7nId*q1 t^6#4ya(h5MsMs0|=t6(a%I@V0{14r4j^N>vkJbPH002ovPDHLkV1lfapDO?W literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/dark_pool_tile.png b/src/main/resources/assets/ariasessentials/textures/block/dark_pool_tile.png new file mode 100644 index 0000000000000000000000000000000000000000..1da9ed2179c9affd80c338e5f1aa27cae09563a7 GIT binary patch literal 1511 zcmVPx)p-DtRR9JkOLT!AaY?TArVAz;)soR+3B7>R(-kXX1pfTTzGG0MtZxdt840c-?!zZAHQkU zssI!t;#>w8-Yd6neVcdhd_uWAMbr^PB+2F=ka*#h?>^1@AALqyoMI*j;L|yxLY^sa zy!sr!diO4?;uKMj04|wrfI3F8c_vtzzPc;PC8EhlTnrxWpR$U1a&D* z_XVLXa8!h5m%3@F%H>*b`*T8Du+o~?-=J+fRu^=dj?fk)TGQ1x@BpF?M8N>-!6Krt zJ*>95CE`7%Zp?d%Fu%by&F> zv9F1t8x{;8!^dXb`0}DndgufHzW+HM5e&mZ2Nu_pf}pCy&R~ST!a_evg5ZYhrgU*c zGZ5LVt0TmSXS}&tT(4NhZ^M8{Xjho^7$BnShxg7+>KK@TnN8|~;Iq^bntt3e#VjBq zWJyAdMw$p}#c(cUcxo{r%RK5FS)xcRP>HB|5Wx)c+#>>MA~-97h^WKN5K+?1lcWj$ zweNom>#rdy#1J@NmZVvVs&cSD=ha(JQ!RJE3{|BM0d>Pf2m3qRzV#Hv*^E3($+Hv# zs=C2>$KGPjD=$8YJim`~iWwBE6X2?@@zPmW{BTHwIoX& zKl;HDzHXXFIES9l7I>*?t7|k(`v~W>OF~;vYfazWq-i>urn%rFJr+9pCeT)=G)>E@ zyfA+|&aX9na}CcF#~P6FTugCnaX7e}d<3&mpO~Kj7>coxQ+r6`X3ousBRQLV1Rm;B z^LK5Bw~>jja;mrym1!TaXlq>m-$!(C!3m!r3d^FzPjbq@uzd~ZUDvN~{#755@z>;d zhQ;|jQ&v_GLXTIEpeQoY#JIv=Z67M;@vf$@_cQ*F&c+g z7Hn-F61qbG`aZC|JtKt3>Df7lhkN|wwFA25I-&1bE=v}RInF5|My?#};@|q+UoYf& zjZY2H<(TLD-1+$4WS;-@^+VqI;4c*Cr>HujMUr&r3*N!*!7=au=@Y6|iHHo|?~7rF z636$R-x_@2ar3;dZ&25da^AEG*KGu*5k&NlO`T@iogBRkmp&RjCn3p zRfE5n=Pw-KoPa@5KFsqcuI_X72&_B4&?i=;X@WZC;9$YaFQ!z*d_$>y3FI+A}WGCqi>`XvI@`9b-U{$-E!_&r9?Pi|E(o zwOJfb_GXT|uH!O&BE*QF literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/dark_red_wool.png b/src/main/resources/assets/ariasessentials/textures/block/dark_red_wool.png new file mode 100644 index 0000000000000000000000000000000000000000..b1125d3e4f511eb2eca13b3d70634bc16455cd11 GIT binary patch literal 423 zcmV;Y0a*TtP)Px$VM#jg>yPSW zpwxx*?9_~vl-km9C3sVz_0qV5oEX)Da8MIVI(DjKAsy|4*>~z%W^!Us8|E^A4aKLL zq`fn+mX7_oRIX*K7Ha)SZPPs}A%uc~t}V((|N7+Fng8WW`n;S$sdg#hR*I3MTFamg>MS#7 z|K0o`ZNd5ZlUmD3&QrbN#9pD7CVMr|o>a%3e8{t!vyo!Y$V%pHRdFjb{sT=iuLH!p Ra~J>s002ovPDHLkV1iw$#eo0- literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/deepslate_eternium_ore_block.png b/src/main/resources/assets/ariasessentials/textures/block/deepslate_eternium_ore_block.png new file mode 100644 index 0000000000000000000000000000000000000000..8cba5b75444374f241db9095add108b3304e046e GIT binary patch literal 650 zcmV;50(Jd~P)Px%L`g(JR5*=gl0isRQ51$hZDJZ`e3AD(rr8vNG=h*JD2W;cGnwKd+8CuV!n{=r zC1^1liFVQ=U5^Vva2WWafnB0>m+ z5LlLl>$-G>I<4R6M!s2MXJ;P(!$<(Iog3%4y@T%OlSCY6SC13!vX{wlnzK0qvXwHH zWdX2w!Qi;PgQl%bOw%BuMh}m*`f7&eRH`oSx-OPwaWF8<nR}R~foU2H#-oG}%yD+Lpp*ep1~rKJe7+h66uvSgE@gm|6eN550qERV zrLC3`;$?wePRLZX$$W zFdo(ZH>XnEoV3YS$^e{;$1lD3RE6rxX%gjc{Oq}fbLTGCJ}-0qVw0Y1|I0@L`zco+ zKjiT6m>~F#?;rg?B-eFW$WPFmO3^wxqIWlp1buzobwJg@J$t)YW1!y9^i++zV9Hq)$07*qoM6N<$f+epccmMzZ literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/deprecated.png b/src/main/resources/assets/ariasessentials/textures/block/deprecated.png new file mode 100644 index 0000000000000000000000000000000000000000..e05d9ac46eae18fdf4eaf383002aa24d83d63c8c GIT binary patch literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|x;$MRLo9l) zPBP?cHsEocui2iEl(;J45lhTIVPRn*>*E>r+#alRG(=w=m~L~VXkL9%G;bBd@e_0A zi2t0O{Y!qq^s?vYbYu-YwxsRezE4GbQaux&&4%gLmNQi5Wq)71Cr#Z!bjO@G2QGh~ z|A$9Hbymk}750s@q#3-7H)%ISF5+2Z=wenFEI5D{x^ZHV(@hJb6Mw< G&;$Skwn=gT literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/dirty_blue_pool_light.png b/src/main/resources/assets/ariasessentials/textures/block/dirty_blue_pool_light.png new file mode 100644 index 0000000000000000000000000000000000000000..876eeba3116b0e00ec18e90a174988820f921f98 GIT binary patch literal 1350 zcmV-M1-bf(P)Px)07*naR9J<*m(7bDMHt3^_0c^ayD_dzqQ+I!gE#R%h!DxqQ42V&2;B_7Fd+P%&T7&@j5b)lUhd|~%1LsJxjJ|X9 z(v)M@X4(J!5iEde8Kz8w$2uL_QAER9Vrz+v!B*rYv8o9eF9L`N0t69!2;|=5yeG?Z z(mbc{99I_>z{BjWU07v6P_(0H)$E&5R0t@^jn*ioMl)AqGD>1f5k3Th2zdy&(gRv+ z0NPQ6Y8p^r2_VZEt$Sh`*3yh3+Hvtb^ng-@2Py&M$>b)XgZvoal zAywZBV;r~ik~J2stSP$IezR2*tJ`MejKWmeq;`~|p&@6JLb7ZBM`1E4>Opm4k4@&BXyhLo%Kk=7`6|gR2#5|&Y!@x zGQ59t)S=2~s`I?8S8cEBc%n}1>!dYI?>&bHCt1in_S60EAJ$m z^qr&cirpcUvHGtrCVl77rh(RKbT8<&Qm!s6{BKt?L@>sT?ghu}EJOxn3TW}d!HaM6 z{0C>aa3dkMnplA0yj!N2kLdf6mir-Gg^M6pERdd+FX>L`1OGkfs^!=^2`l zu(Q)4Ne8T~^jPWj@!pd;$3qW4PO{P^%QE`?WVnuu(PYl?4`MsAR{wc>nE(I)07*qo IM6N<$g2d~N0{{R3 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/dirty_blue_pool_tile.png b/src/main/resources/assets/ariasessentials/textures/block/dirty_blue_pool_tile.png new file mode 100644 index 0000000000000000000000000000000000000000..4b7ef9a064ba7775e530c4414cd59b236a96e29f GIT binary patch literal 1190 zcmV;X1X=ruP)Px(U`a$lR9Jn%1f9d3CDlRh@J0 zm4)wqQytex*PunftR#S-K{<2v0-v9Fhp<&4U56G8_Mu*jd*%H1AMy1Mo7CeG)^+hs zL3eE(3~23n>gY8tpL(BJ{4ad^CJqt8s6r}>^c-QkM#mN5cFtl~K@9$0iCGGmr4C_G z;qMlNUvnnmPmHyc`2g2h#3g;o!GJ0sQjc$v_U{nmFY^%wKzc0*ie@zg1qpv-y!XWTLH9NQpjm?!0Xhae42L5KAbkfw7}roV z$bv;{+M(c*-tOX|DKIucRoNM{_>XUF;KYI==(s{_Ma*lLnDe3i{NKAeevbLku|rsL|+DCz@6HpB`H zszBcfi&hxco~>I2qV6c|+jXvys!jD`@!z4y47jx~g+5A=II0`SYEA#sL8cJ97CWyiTFu0fGk z&OE2xj`HBz8hKferW4XhhWDPTt~vI|W8~?8s;bDcynUR2wT7y$SzUdYve+hsK$3Jw z(+SoZ*4Ng!^~Y@%ddv8Fvg!-Svr65#(P|O@)Q)9pJ^A1L!tH1FrBCtOVD-utKzv`^`udEZ3qiNDX!wsOqAc^|=#Z*1&t0RCS+ z;i5V>Ch7w~Jnz}Ro-i?;i^P3k=MUYN_wK*d6E2?j8ubC+_-NkGQ%}h2=TGZF@_cc5 zm4nn166*_I`s^*9x%5di&#!D=oT>BYuV3KCt&=nRh9_3Pi1!8aPx(_=5>XTc1s{TndC>(CBPwX3ppPOx z3H~WQ=^vmHZ%ITnArKWs@Imkb5g!bBkX&}1Om=5_rY}{;hwh%~>CEn$japEgo~f$u z`|6y!oKlBAUyx*7V?)SOXx;8mfOqiFsiU0R|2}!FF&117cF~~$=ir%@*Z83S4tb)` zrWg}0NHN~SlN{rl1IITU|M2-|vD(0>rwKbkupp#;!}ywJ{gUQzOHdld>xv)((-QJ^ zL$aG))H9d+o-j>MNOFLvK!A&Te(0qroP z6$FIFV70~=gV7odpcIOtR95O%1P?gxan6x@PwE`wEMt_W#978LNqGC?mw00I2v(!8 zZDApbIMD6V2?8Q(39ThC23wJr#HuEsSp*Of1n?p_@5!AbbB;96N%EXH%eb(*3c$WS zd$3{(H+Oe@ZP;i-`0I~>-uWQvIexCxL?;pP!B_mxFQm* zao$hFR^bSYAvA`k-7;6MuAsm0A96;W!D@{y2`9GkZEDtNjZvzojkbAXo7g|S`3Va< zyVz8d0#LfTWc!bs{OeE72jPg#eU9Y!Nns`;MiWVcqswg|n z1*idSNw@(~y&Vxu07|RkI!=cQKS!+>L6_f(@_gSyM3t6RIKC28$1OYNxhoQq!6h@v zU@Gg&i$uz!)k|ZmZgv?pNPPp_d0&q4*yW2aW0z8#bJGr0MpNDArJXrmH}FKA*wsmE zn9ey~2#&Ct|AqeHspFh`^b~oSK+f34x2sv_eL+xxHu`LcQ`(d6Bcjf(>AN5;v)8PV z!&M39wo@|iN%MSyojFJ99BUUXQx z3r1;5lIN4uxl(VP``6O)ah8$fIioZM0jAPUq zPPnkT`oBHR0E{uycfq@VzJdu0&lWiyJpS8ZetGL8zn+FL0vi>qx@Xu4N)kTmUhv*)<;CJ){rDAogGWG0%3Qz%P1K$7z`NB6`NYj)! h9!=JfF`6{X_#3rZoS8bWTFL+b002ovPDHLkV1l5Wa6SM4 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/dirty_green_pool_tile.png b/src/main/resources/assets/ariasessentials/textures/block/dirty_green_pool_tile.png new file mode 100644 index 0000000000000000000000000000000000000000..c41257fb557f8fc226c6bc92aa57d7959fdd2c13 GIT binary patch literal 1114 zcmV-g1f~0lP)Px(6iGxuR9Jr>gof-N}qInFO6^&>*M_1#uyQCHfiWhUkAOiTpM6u1S)FyZ7#AI=+GT9#v&)bCWbn zX}pqU8FJ?BuC{UfeDg9tJ@`$O<6l1digXN}9#jP!JH;aY*e9>>^9P@|#vlLmHC&A2 za(5EtI8Vn|3&~CB521S;(ouNd{}Ue0C-L}fgoC3TH^ps^QT;E+*=>$x{^K8Z?i(nk z;pjy|gIHYA07V|a=k0BnxINrK@1yaiX>c)))%z&NgN+UFaQ!NDd-K~< z7Mn!JxoBLyB5%EUQTrX`)b1`>k&`4dl37aAG?Z1v>HE%-B_qnRBuz6!!fse=D65K{ zoqH(q1HAWiyB(5bhP8&1ySrSw{ujNCO`2-9xMN29V^kIAY`8Zb`M9rboIm^fg{6A_ z>-q0k$4|Hz=SjYTp0DXAT#WPo)${DAp8wlV6v+}lksb9DW|`hE)AM!xgo|>%f}XGI zCrpgV%jcHr`IWPmTRDIF>Un;U z%dK_8bLC6%y5OM|^gPCSSxt~(yWhyS#^D}l<9HQ4kKPmWKe5ek%!RL=<5l!L#<|WX z(B?Oc*mzyAik?R~FPGH~60ZwZ(evm%VkBBOSZm{T!76$l1Px(@kvBMR9J<*m&=PBRTRd5b?a7jO?R8ggwe&A2#Lgv`Y*U}efdpIy7p?=wjhF-ylgT_Y)7|yBFBkRfPEXG;j$XLjZcf$t z&OPVUcfU)#x#X5^U2|(ozq_Sd*PK(zIj5Xbn{HuY-c7Qf`S9I|_7f+LO|;L?zviTr z5i5)L=uWTD=|08!;&oOQ|3XTSPUM(m?{7YsXzy(-O|+-+Lp&94y2abS@ZFyQomPu> z5HJ;nL_t94`$!@1eIH*41c2w^k&kk9&DA+9V64R$gSM8;7!sw3vy6dK^wX62!x?8j z{RRop>dw(=ZE$#YmUa-(l9EtL0^diL;03VP2w-$Lz&VEltaBJ^(Z-;RA=8>vYX(Yj zb9ou96AsSJA*GCvNZLU#wEHLs@&F2OUkE(Ut9R~=gi!!f1YxYjI)}CvRb)U20YEzl zh&pZXKx#A(S8g&D&e4*RC{?BA_S;05IAhPn|kRI@sWq_s9#ZeJ0b2eq!MAF_W+q(uZ0TdvFQBzW`Vvv{0FBRVXk*Q}9XNHF$~n%C z=Mi<^mBUy zyaOK|@bPEglBQYB1J?($%XTP=7ao*?@ou4L3b0#Hh!cO3a@mJ2W@oOF^9vbVQ;b>dH5ukB)oFnSA@q}0NfE^R9Eq@m;4cWJvIZE~4j=l$2 zavspy)Ox@OTgfQv9JV+}TtThYxnW|ObQq0*mfFBHR(!x&3Yy4vO7%naRv2b!92SAwJzr43COD@89!xU;s# z%g-O>`0+PuJ&=hbs6sq6HC*Xv*OJUyGOa7$$`~?ZxO?L&$zZ+K1Iel)(>hnL4H>l; zqEs0}TKFz8WLw~Q)OsMkACqcbN#`je!mIBE{WRj{^78+7HPhPS`+m&>uOCW~EsK;2$k00Blg}@6@zVF)zWy^( z3S=upN(o4`PB{PN4}9^}r7i7e&tK&7m7j8ZM<5TB_7JTT+EY__3n!1cG}*vfOBe?9 zdVPFf@c8U3_wFy!n%aj^eLOs7X7;nXwvKZSDSgs3qure$3LH<&&Jw2yy;vci8GjJ^wS#kgX002ovPDHLkV1grQea8R* literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/dirty_pool_tile.png b/src/main/resources/assets/ariasessentials/textures/block/dirty_pool_tile.png new file mode 100644 index 0000000000000000000000000000000000000000..33dbfd88fd50a5e03e6c72cb151c5dcf79bfe02c GIT binary patch literal 756 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL`2bFs<`+aSVxQ zT{_LXU)Wv5&A&9>{+QY0GYJ7nOiq6^7cEfel}KIWsPmBhldw{%bc8~qq1>Mr(|50a zon|=sP0d}euiw5*^;)&-ez``ucWhnF`uo%CUw(RAeRWyjRkzt`%dcM-&-z%Ne}BfG zSFe_y)YqH0x`QWD*Uot6Itl-I8{+<)%=&1q)b}x9W5vGTS)X!toBZ5&M}c8-=KPOO zIOY8J{bbQl(%h|c{E=(mtUbBWlba_o@Te6td^)RM^GuSD^*!_JuWa4_fB%jD_qnF8 zgGaFC>?7u>`GPVGhd**KbniYg)5cS1@?!^^d1qfS%efv=oaCTY@t$$Rj_+$v&Mj7B z7x+*iFW@=hAcG(y%X@7V-;EYheFdhKucPl=y~=%8JlZLv(Bj;=x&>>r0&e7Nzf=E# zLp)D@_V;;p^$w4vt1dmhopto@O&QOuu1!h%*B9~~TP)c7Jtgv3|L5gzu6a9gtkAlA zIk;=n0$#7kX$fy%K7HD~xH{+D{$E$mb>6SvT)beN*)zHDqqm+Me|GxMv2%^Lt!>WS zecNnjQ~&+2;=1ES4)6I2I@I+{E33*IoMVDE79ZG|T%Gs1K*fF8&NdEDbCDk35kQDgXIOT=v_P_RW${_bHt&+O%guZuF~V4=+AWpK_D8 zG&Wd7_1(L;%O(r+q|TkMPm0gwRJ`#1`-x3+OnfU0W`F#7y6NCa&D_cVryH8zzrNz0 z-J!qxwiPe%o`3vT%S`6Ezih6lud#i5>ABeZN5W}*B`=G+%Rh1&vs-UP)Px(&`Cr=R9J<*m&J~>;A}nZ<02x4h+9@@63F^-}%jN zW`3hC9UjQK(lGVGlho$Uc=JIpRn@vSENQ^;+TOK z5C{r5eVSuGp51o*)rFH-Be0xk`h_s?!m2Z@B$}HY&7do2VBIM?9=btTw}y4ASazEJ z`W-YdGKwTX5`?in-5&%aI9l{y}Ezoyv z%j~<(l>#EU(Hf=HWag?RBN7uu_z(yp6d{mD4`{7{lFLa6WCggNXnILP$6C71(U0G? z2b3y3Pzh+0H;5}6MDQXM-q(`=2qDl*l3J_{!1aOUMdwJOfR45GGE{@L)|0j0O+X|H zA{0&XD5&ck0KV|ppBLUC9j$TP7+j;)F`#wre%)Mx<}x&hDh|tZnPtG_27Yqf}X2ZPUiKvCmxiiNXGPY_*R~BigGquShEQ zZ`lD;g0S*}0HPFxP=-ug2>ZwuuuG zq!i$!Jn`yTHb|@A75R1n*z|-{eJhMMZuF8h7Oep#@DuDOC6tJ9_ro?Ho_rSb6js(H__ul1sC(~!U7vcxNP{5zB zERe3OqMtp#$dii~AD!qS%L~6==E%|K${<{Ksy@ZG6q)+(!<8u*0$kmnFf8*4q2qTU z-HVV1z!{CkXi#*5OinQ3o!+=!AEmVMs#+CohyfToO$BHG?Mk=}QL`NpoPg4*ypD%f z5vHgOBIx+7i0At*BC52k!U>h2CT{Fk6uwMIZgx$b!BjTHi$vnl8l<&Vce;#Pq@jiF zLx^Jn_Qt6XIH)tc_md7)MpNDA(QY|jxA8=i*f&WVnBIGOZ!a*scMtv6;#p2yyg(5X z$St<@?HksIP!d$2tv=i0M4Ntdj!yr;Q_A$cm!I&b=q|p1=E+ z+0iN%gnl7x<~dnWl-X+|jd~nOY3@B~#I87045Rv8u##n@MNy~Dm3r&_V@u07^PIFO z7-ty*Xk{kvf>E9`%JY&uuGN3_Fd5}JRzPbtc^3@Rl{3^X)e&^aghY4kS zv-EpC)MuZ5BPx&>PbXFR9JJMOh}Xn1X9E$hzOp8H4+PW z01z=jQ3M-a1St|?gJdAic&^hhprw*Q=}uIm2I{~!6~a!)6TAq`L% z*eg6Jc!388H+bdl_hioC0+a@}OAi6Of#X}BaPsXpEUaMbnx0os2m;)^$(4I|8|#02 z^8jZR2C1Q2Dm||Z6U#|zIBFSsZN&hSL}+p@#LMJEy zQzsNgs>Oiea0CdgTFZYYp#E3e;;R2jKWE3C!H4lKYEU|45V7Wo?3O*qQFtxl6b{EqoV-@2C2n{N?)A>Ks8$LOOM>X z{hlteF(G&aVQ1%g^7$MTM&mJi7cV2B`q;{{Bu!f^%O#0RIDY(?z5YJV6lD3F#iBq2 zdfhI|vSd1)^1}YBOoopLA)u;kZ*7s~89pd^o+BS`r`p7^zkZ$9@864Z{KbPG7$(s2 zu&{8cWTk)g*1O!f|6Qa0_0{)rF^(_IM^TRF*$}I6oIp?DLV$sV<2L-+f?__3>iKMd zgQq!Om{X2X)TRLC}RY~mc-8q<^Hls9{XY3(&U89sI?M3h zQ!JNUe)%=>>42gr$g&)f>Nc!36w4*MyDzesj|m}=rU}#O3~LP+`+bi7`kPi~3%{JL zdd%Qth^pe8t@_57{kAr7{`)&O&h_(azy8c7dBVjwFV^t${~=E_`}I10zG_Tcad57m zU-{{Px$&`Cr=R5*>LlS^(CK@db=WL0<1$3_+sh$ScE4BQqWUjbRjpYe2eRR)VTp4qV= zSGCA`%7{>i@88USOa;)FujuB0S%{k>Mno2}h`hT6cL<|g(7Y1A9>^HTpZ5d+2gr7Y zKH%RAEMPiJ15(0RP!%c#oG^~i8^9ZY3avxVpcT@%2V_ThgM_dGtqt!cRO%I=8&Y7w zFhW`IK4D$p^^E2Q2DKIH2tDyMUOb=-s0tEb0S1iWFrsBat-&1I>8zxJx8)7sJQ2GI zT7&(btOaDeHo^us;srb}WCZGvrCb1U++l-m4|pi37Mwsfd|D~`? zeEJCUil>TO2PaX4P7O{^);_(1wLAxX2nfBL2NoYUeT8Q09Nci~~mKmDS=>;<3 zw4yQ+B{5ei{VL-K_wjx6xCW!5W zB8cM+NaU!i6uMCr@$`bz&^rEbhj~IBY~!`Um?(`bN(uUV7akr_4Uo3XZ;$vqqvHX3 z0)dYMRzX?NR3O_`jLSmy3S))C1U5|5rn64u=Nr^OE%DruJDS%EVEu9b&)QyhKCj+? Y0JCKM-ZAa_H~;_u07*qoM6N<$f(b_F`Tzg` literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/eternium_ore_block.png b/src/main/resources/assets/ariasessentials/textures/block/eternium_ore_block.png new file mode 100644 index 0000000000000000000000000000000000000000..2ba5242bf6839f537e40d8c237791a5dcebefca0 GIT binary patch literal 705 zcmV;y0zUnTP)Px%dr3q=R5*=glR-#SK^Vt>F4kp67~I42F$WQ;cMvv0JV7>ENl18E@KD#* zQ$ikUFL~+YUKXO$N)U)9bPN|aW-+%t|egFAS z-`d*R85bhY^NDV;}4iE6&)9<|x`xHfibB@--8iR2h>drZ|){Kvj)0&)OXlIkv z5seXok`Mx=Q~9UIlOTVsvygXaul4ImPpj@6QQ(Af*)L nav5U`J&Rv-YLC==AO6N~!BR!Nai80#00000NkvXXu0mjfxqCzn literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/filthy_blue_pool_light.png b/src/main/resources/assets/ariasessentials/textures/block/filthy_blue_pool_light.png new file mode 100644 index 0000000000000000000000000000000000000000..906f9d6237cd50a06c1394ef9febcc10daf504f2 GIT binary patch literal 1397 zcmV-*1&aEKP)Px)FG)l}R9J<*m*0gGl>6w9b%%HfgJZPd1g!mso!0aPWU^JQ_Q65%! z;K2tIqXe^2BQG0*j}S1%B_W3Jy1_&gC6PbC1V~6+*yt=n?+nvD-F@$^b9kt__jdQr z&MvT_lFIE=SDo+o{HUsL$>1OFnH|)~n!{#_+bRLU)cDEyU-8Gge}P`9khOr#8vK`s z>Hlav_U1WW`pxRZQlkCtd5+%{V%-m!{2Z%`#*T@X9Psh{R*i(G7RWP zHFi*;J5x5+48##XoZ~hXw^^X0inu#NFHV{0Wt{iSrz1kKK`7Umk499}J?eu?jMqQl zIQ#SIJ~DXyebe13k6(O+K?s!IQv^@p1HlPS94>!_)Y|WAvxTpkqH3rqjT&`qsGCR? zBlD)=TzQ)B{r%?z02z7)A+WumopofSD&+BH*G!Bmz)+j|2|_ z0R=m#C_?hQ@SZYwip2;Zh%ETN3cf(1O@Wz1F}xZvJCUX+MetbSLNGutO(;$Tf=iwk z&J&y?c#q4AWw8d1$Ik>br9rG)XC73Q!Uu>Dn}~m;*m?5Kix)Wgjc>7D4pveiDGfOi zUK~!O@6M$nMV7|flu1Wk5-C8tKlLN#^9uLk>9aid z?I%7v&?js!-TySF?)WCIz3-1~b_DfL+OA=v`r8hZgUdJ^xXt4D1)qkJvh)Bu#!C2>~&P5j#&}cHCGNNJoEDH-1Egh_wRxxtJkQSG#mgP z6GgKm)3$&*jdiu>U7ove8%>P8ZA~)$$~$i`yKAqP<@I4hqcN-3-cT<}`z!UvL}^Yz zcC6M&9V3lK>ezI0ttZeV-QG%P^We?!`dMT-oh+|oCJ>dniI^EqeE%+}a*oL1Q`MD+ zNxW$flPX4>AK;wy?}B;Lusa@qZcj7J@ZR_Df^*?C1dsRxVU_Xl8^7eczdg_Em#37$ zQA!*BziAw6~>pgx0%jo zjK>qklS5*RRCUc)zxH*e;}KO=adDM$q+^NF3tj;00000NkvXXu0mjf D?I5du literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/filthy_green_pool_light.png b/src/main/resources/assets/ariasessentials/textures/block/filthy_green_pool_light.png new file mode 100644 index 0000000000000000000000000000000000000000..c46ce4438439986bd8c2ca8388e38a8b6b0a45e2 GIT binary patch literal 1358 zcmV-U1+n^xP)Px)2uVaiR9J<*m&=PCMHI$=r>eT|yy9eV%p%5sQ3HYt!9`Fp8yyreqJkv2a4F(S zaP7v0|ASjMY7|W(q7H!&Q3My_3nDI*tn!$6Gnu*X?yBRWs{8i6nM|Hom!kVt)j8j( zb52!%M-F^7uft7)%b^^>%-tRVf``XW9Ol&Ck0^Tv>%f=b7Ci>=9$s8~gOArgpd1Ru zMwxtGqkMqpIKp@LAHAmh<7ZyN84LZkA)iySd1bV28C*7Oo--VrQN+MtQ^;CiXOwc& zGTamfZ9}(p5iwBq1eb%!m9j64dP1>b=q#;mD?jXCK@NN~r@ixzXRo|V%Qu@B?8Me;VW=O0oAb)J_O3(DScq%J(oHi0QT(OjZ+)loLifA@5rnrv(W%6 zf(RHfHHZMnlp(6M2S^@JwRnvN7;g~qK*X|HROCfi1!1_Oq>_LY!ap#$_IAd_uVv?{lb6|V?WI%{v5Uu6Z zLI{D(Iskm>agToSG7tAQaQh{?JauO+wo1a30A@P=<83u!0|5oK1XV->U{S!TM%_ku z!LM-P;u_}b@F}aZT4%czNr~4y0fMdGn_Y-~YTPEHO=AO-x(&a+{W*xF$w*DQeT}7PG(a*Eg_#HR z>czJTyp@hE)F1l(5bfbQ=7)!l@$IfJZy)F;+mDZ|vS;spT=l))vZ>y_7j$dyw$J2r zTNg0_C2L(r;2KJ98hC1~*Xv^pf^F#pnLzcHFt@cur!Z1;YPCMNx>dGJ30*HB%9c6T zn2)nI15t^e<55>81grOeA}Synuh$#MhuVWgFNTUCO&h3CmgyeooU@6+R7^%u4WOVk z$j+ zXu}f?p7?5Zh)ddR{xe#0 zJI8fFIUC8N4yIxe8(b4pQ` zl))$VI#x6$rQ=WPjgit6f<()U;3>SP44%T5iEA*f3yRB;w^!6zZQ^j@c4#>@EiZgB zzz2%bgMtw|t_wy!RxKp=g%G9+6Mx4Flacor7rk581;euBQm6C3m1Y3e+Hqa*N&Y@I zr!K*Q!qa~q*9PxxmJ2laeCn->wjk$ zs~9(F@Z9Vy^46QL>u|6^2!TA$=ybYRYq)25nRDka(3-sqUvv?KrKO#;FR!DjIA<9S zN6alOF_S5~mY3-d2Xs1JI^7=LdqzdUz4z^--)S=%jp+6IHOaNsFe(cE15lhu4(1j| Q=>Px#07*qoM6N<$f@qa~9smFU literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/filthy_pool_light.png b/src/main/resources/assets/ariasessentials/textures/block/filthy_pool_light.png new file mode 100644 index 0000000000000000000000000000000000000000..e8b6fb1e7c262aa0b3d91fb9b14b3ddefb37c74e GIT binary patch literal 1307 zcmV+$1?2jPP)Px()k#D_R9J<*m&Knb8=CUBp_SxbDs#a^x#ygpi*xVXndxMbKInnV9p-n= z@B4e7@1?!9DyuiI$;RsMvU>BHNS296CRw&63k!2HPJZH(kH*U9=Z}n)&&?eYYi*Ua zm1P=JYt$PD*j%~J+R8sztEg9naq{NY-LdlY!RlCfr+pulwYOyD)=!*S{F@1DsTf0I z4T-T>t94Q=6OCCW>`i7G z4JyW9jmBz&(S6`50;?V23vfXIkZRU>%P8Yd1)2^gJqYjDm1V8P*B$a5Y&Pqe{mjWq_HA6ES}FdjcQ zAjC8%>75e;Aw(uUL{(b4R9`N?TcbTr$nMjhD3S%%u5#|M;hx1>$HSl*pKp;pg zLLY?8=LMK$Y_yszUHy@EyNzmZtxCG~2Uo8B#dN(!)h4kEMx|hU{S8DyLaTw9^JzyTwhXu>_#+Cj(drA3-scVini zrYhqPJdPo|=&@GQYPHKb&`%~1c`D8i;PzeD0=>c?m;-}1`jC>sxZS{Z*;imx>ot^C zB_HTNSo{tMN>rTf0_w0m#ZWM$A>Gb7obx3g2*v#^0TGQz05QFpF62fONMkOe z!b_2OAaVm4z=#_HW^?_{sb79uVruqPs!1dz<;|EAL4kNPjSBX|K_9q|i~cWoLGZM@ z8Q*{V9ci;!@_|cN|9qx|GNO{(?TwUIf+zD1Ya>qYyC8G_;(X{) zXE9(zFyTpPIXzmQ`P={>$ehQyfL5mbF6ibtA`f2(Vd%reKeZ2&uJ=^yHFWQqBhuM^KnQ_KB_U0l7^8V{W`^ZED@;s2kI$MY6w}i$u)eX0h+wUu z)9F%cOjAvSeKRw(JKLmbleF2wdrvpZcWD{{yo%s0m4j RKxqH~002ovPDHLkV1hG^aA*Jk literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/filthy_red_pool_light.png b/src/main/resources/assets/ariasessentials/textures/block/filthy_red_pool_light.png new file mode 100644 index 0000000000000000000000000000000000000000..95281a53a441832590bd72f86951ea68c0575bb5 GIT binary patch literal 1332 zcmV-41Px(?ny*JR9J<*m&=P>MHI$=r>buEOwWunVFA7Y7LJC(z`>zG1cNAW;p8cfpZ%I{a0G?Y!F(A(Av(DI-utY5@i~1j_-r#1 z4GdI()2DgjyR*C6UtK;)@CK_5N2@euqOo3h)*6m$O~=fX;egFTXhxV)V>5U*gRojS zTAMd2~Hd? zKZVq)=VY_mQ%zAd)Ra<*<^QakO3Z#g=S@P`!UU`)pH*ewen{Uxe zmq*p^MRMWQcYxrl_j(snpBVRwBbI$foVZjc zSRzoE5E@crgh7*huG^K&=@ zdO@}@q_%G#MiXJn@}-4=7-J%^+VB&zck*yQsC$o@8X>;@7S9y6ee(SR@8n|#_rJZk zOn+@1_tg0n9$mTk;6VSeJ^RyTjvaqG72#&F&)NDQZ5JO`=Nfd9o-mqmAA|cLasWTw zZVv}SQ*Dcw!0e#}zXjJOFmiLgc1YMx)lxG$2&et#RTzbVI7z?bPLM5z)w^PdNjlpt zop1*skfKdl)Jh>u_%@&{^Eq&B%4Y>rDH+2|!N5i$!}8MPKH;nyufWM;$t?M-W26a6 z_~+C+9Cm||fHd=owSk(A4sH<{pV>LeU9*shD~4Jv6E&SU{l+q#J9lueubkz?#S3Er zX_m=YP1zc;darjQ^@;Iln(T8>)qAXs^}jktv$Zh37nE7OM%AR@0PvV7nkAX$)XKPO zw?#f$=TW+iGRCoQO)~xOR$#HaP5`4-8tbv7)R@)l*wI*&j(5w!L}^}v9N17J!x$+w zGK?kp|1`cA49le3E9q=LYdC!nSd}GY2?EX-nIU{4OEpzqoCdH;JxGU z(h}FM-=I1D2yxg!5Ed5~SY2Dk%m~5L?+<9rE;3aZk1Z|H>))f@?$GXZi7_%54mtYx qll0oF3}@ds0000Px((@8`@R9J<*mrsZsMHI$=^{2aMW;cdx_Mn)HAc%jWl7j&+f<#3mf-DLiL?H*y zIeGHpO$0CE#hVvFP{~DOj=4l~P=YLR3C18q6XRxfv$H$X(_K~1Lv_#eb|%>*t`-zk zGga^VzIv~!`jtBT?VOAU8k>SEptIkjfZ*ZthkxR=ub##YHO7K>VE1}7;5~eK^ejg| zeg-#IXcKMHIf?cGP98tU(uqU2wEyn)^H^w?PCig7bc|2!Id*-87xV%}RjvOP0=4327xD zvvv}O+E{Bnjr~pnDxx5QYm!%jI!O}AwMDJ`x*`V6^2R0y_U&W7)1li6LG6Cs3_&vt z4dR-p4ns2pqq1Z(&$+y|#v{FqEbX9Q{P0Ph``{o}Yivb0XAeWK1DtN!MQao$i=Wa-t?u$&SpQ9Ub%pAl5F@cyO_~YN0NRmo22pz)5ljMJ zBz}&IEk&52Hi)3Bz5+z49m7$lWi?Ky1vPQ2iAL*~kZfKtlMJSALkNi0(MYLyw>Oz) zWJD8>wMat?+lK(ei%2c6EX!8D#WgYxEG#geWic&lWkh#+J2r{yjHvXU+&M-?!RC0( z<$j+Bv}0k<0{Ym+!@Rq41Xm@H+uBy&H(DP8z9R9hv01il?4?hi#rrUQ7ZjD!vX#Tt znaw??WFb&EH^DBwr|_PQ-)&4v147yp^0K6GE@rQd9Bwy~($agz6?V;0pS;PtU{n;0 zotvc2wR-FQuBGL9Su(En0s_vt>APT9mJG}INeWf0{;P+{uq@FQy!h$6V5>Xk((3B} z_A~=Od35Kb2>P=bcVO{M_E1vX$CfnthyRM^ZW%~{pKKl|D0hG!Pq!n zg_qOs{m2U+J;C~K3EBwSZui*6<_7Bgh4X?$*ZSb-ragiL*0Px(I!Q!9R9Jr>gFwACtt4h$|Nw1Qk?V=-!=Zz!=5g-VdPQcgV`` z;6@AtR4|I*7jPpI!#D&{5%W-H`rUK8``)VKqIxgF$`kjZoa-*lq zslnyYtf1WY2oOAca^VLqU4N10#9$rx2HaVX0lbH67r*D?$1l??1!JR4-qUCw;F}MA za0Gq{C!7n9> z0@k^tJ%BL?t`morGa;-5yPm99_Av;yhQQ$Yh@;<(MgYqS-C)rr7Ex^du}CTSlxsIVBvQL%CN)`G76 zqybj*^|u-@=D`2~J%bG=ReFp2cR0b16|;72b9yu)Nqc7;a`?-k+S9G8GOi|+SqVVD>@!=;Sko$(R z{qQF)eg48$j&Hnuz?Jb+oQxnVpk6}%F*f>Vd%yDT=*gt+QXDr;o#a?Vuoh-VQ1&3- zgOfpgAN~ovL96ayJI7)q$+4;ucrbbJu$;yVEbD37bd%!Ph)r@FG++SNjql58bh9hs zBC6V|yA;PkeUf8UMc3%gjvzc7N6NLA68frHVUiq&G{@e1RAD|`pPG#uw+}_alx~c{ zr8u_MB{{BE6)4=l4SBJSp0aTgstRGdE(mgPc%Vne$NYZx5Bi-R`{&Mc?(8|T%u(hg zqiTexkh`2RU;A}^{?^!d3@CzZ#sHS}l1|=UQk=(&zg@p`e1~1@3D?f~cHJ1m zuJwdTasGeu`L6YZOL5+w&n>&w6LRbDmd+P*Iz@-v=BO&ws=_%(ujnzZ#$+bLh(Qo0 ziwT{qgSD12D`~W0mwG}{eZi+s-{i{pLNcGfe(l+V-~T}bu2+GpUMW&yM@2wDdPr2RaupRDU24Pt5fCB}2q7vWB27f37ez#* zgpLSFC>oF!X`v?|kkAtd36Qo=zR&OX%HkiZ79U?xyvZK=@5uj^HYVT%$U0= zrZ3^Fn8t7Y#kBU(74x?BF){VQreZ>&kHtLe{!C0~|7kH{S%8>sJ+oqVjSIvC#7#mX ztE^tk=aDgD`uO^a>1cOb%#e$(#4Od<7jx7eCgw2uo0v&ySH*l4a2D_tFJR|?&if&8 zN4yB}3dH(icd@wGTC6Pg70ZfE#hPMAv7p#atS0snONoudI{$G20I`KwL7XoR7blBj z#hKzjahf;^^q-_dQeys36Dvr_N?h{@^9nko$2=_|A${ooOaVLoXP5un7N~5OoTa3k zq2L%Y@mBGdySBa`KHdu7)lq9bxvO`i)?5XawlGLR9ZGMB52(%Ab>jK!O3T-lExT_0 zK5^=1cMplAq+GshXaAS01)qEi?G|H1dYC+pC>LWSdi3}~Z`dXkfy1w+VNUS#P?+_p zBw9LntxMsA8(zSjB`|5}%jW1{{rZrws;`k=L7N5kiv5H))lEb_Hz3sn%zKS-bfIm4Q9ZDZZ-ne|Lz(a(vW)+y-R zCOae*EebC)2Wq=gh+Ca;9B`fZs9=;AGmw*DSIoK9(X(QHQrX{cG7I_Uy zlUhpCh-h&CZO)a-?rw3&l`L41b!7?RJum?Fm1uXe{O~}hux#OQr zn}^q*XhQhYK*YVrLF;n~V+O2B-QES8p}TKtK-D zQ$kqk{@MrMvl>PptRTh&G&wVye>gRn;69{H8*D$Vj@AI&xggbR*$Ut${pHZL?ja{~ z?KUWTh$<5vQyvyrH^uEHW9`oE5R^(qEMEzq%{H;2>`*9`Bc9cq>6M>JK3oFDRFl^B zEJ@*-8q*DC&|LXM6Dhg{Zz5}^S_+bE4kk1DwRE|ysJZ<}i70_W_oXNXsTwZt?I2>3 zlNz@6sC6i;TB#t%pTG#R!`*VUN*(^UfY;Zj-f|oop>D3-2@_AOwp`V!5`(;%j}(8= zW7B9~nE82VGVQa0=L91Z;>?}^nZ3|?a@|yx&}{MOr7o)tHKlz}g#=PYWitqT9B458 z!}!!&!>5I_7iRU~9V!x1d23+!ZcIzs)GlRIrHY(x$7xx>7AG3pN8aNlZ*Bnpl(M$f=NBfN_{{ zxBWLwGY6HP(D)cdWpd_JQ6GoZJIXROaaY>{?rr6nTD!^%6jrzMf_IZfBn8@j=ZAk8 zY(?p)?FN)U^oh8-)|h@po=W;OoM0(?L6sqzi!w9t3R~cKWCy)um@3W7Q@#9q|IU2z z;H~=9-%aYMptqqBq;DL@jlF1qJr`FCVOO??TVbCA8K8r7NA4@IjACGc{0tstvh>a$ zL^YPS`XSpUm`cDX0SavPsEZr64AZXM`!B?*uKENmji55GJT@n-{vOy(VL_NpBf5+N z|0(c$t=>QGT?ts0oQQ&P|15uJzTJu9lCoLMZJOW%{kH69?2z8?7hw+eW6u+lK}}OY z^oZtiMr}?Mc~oJeE6!A9N%Z7`hD<>GH1hr-##iNU)7vw;iAFn7NT3Ooi1cJ;ORh^P zzunJ=0cU0Nax~~uNYM-KM{Cv}077O#51%A%+0j?$&g6>t*;@7KX7N%AzSBX3VtRA62MyC~Q{ zUOI&9RJFPM8F(r=lB(KdVorgB(HC^EoPOuyXo9fiUz-jr+f@28Aq%^lc;)kH?YB&)|4ZLa{r=;rX->%IwvwS z;zGU3xhd!s4wNRDA}D3%$4|$jGjU##%f0jCD%WxAW`YyXivOYhYMb7Qe&kbvl49dbBX`l6& zeN|(jl(%!Tx#5Uvvo_}z?HGSCrHKoCEh!$%4kbkg9Ffj#i&-}jl%(FPRQTV zUtB9mNb1x{=xGHvck{ps+ScT3*iZh5?#N_wi(1FM6=RdZQ~b;`2+Qw@zKWb z4CB^=r<$Zn!g@5E5yjjdv0b$pZLN0RXFiXyMtv3x!wQ%LWr75)gJU_3rLZTSA}~{? zv&X>QYRwhK8$TIwOLsDLcqWj3tI?NH@%M=%!Py2gDzZ9HqKIjpmK;$zZx>HeCis-V zO+U=9W=QKsl&~_g@JDE8r23RZeY0ebdzu6k$vVS|lIo2-&U0%x4QN@RB#DFw?2S(O zT9RCAm&iQ>t7WEJhCLH1xK3dVBv1*sPriIlM}B) zS+aq-uL7O}g$Tdo^A*A)@Xl+5yysJU^>W^;Zt7kqRjJNlOq zTK1jAG^Z*oHl~wo>NfR24Sv+-B9Y}gfXVUeR-V7XGk|HAsI!vmhJKg+X$_17<3U(sQrkk@=Pi?follACyGR+ z!xIp`?HhWxAdG0*AwbG{x*^W?AaqXfGL%)W-Rr+v|*jg=|yDq2*wV2?6Hk zo}19!s%RV;zxw0d0|;s_;hds>qRlr$s=R#e7OIU0cK z*sgmua?0|Mu?1+_Q06rL-=glMq~{ZQ8U+zL&KCL?q4uty$!)-5Rzq`9Q{Z(!Ot0HF zSR}~^3-FDdB5K#wz86t0tM2}G-{zNgki0`!Waw;6*xr>9YVVmwZ3rX+dv48OSz^Uz zSRao>}$P$Hf3*cb8`CY0zFBa0&+$rWno@%&XufWXv2akjo;zF z1KuBa^uFi8wXK`$w%LumQIi*uCqpWE7gXIarvU@1!_^;mUcjf(z32IEDodsYipmMZ zg``*;cJOLRk@k8dODTe1Tn6=78*Ga`tSt3fr$$MIsBL=c(RcH&GV&xz91jQ$0Aifl zknT;D&hDq3_01;Jn|N-(dr!ZmfqUnFeA%x%>o}XRw!8Nar#qqxvUL4$s(a-88`BDV z6MOGvZ`PUI8hpYfUqmCh2+NLp0~(Xh&033UMMgY^Y6*oM-sVR_^Wo&Hlld4erZLDO zoR;=29{+{Ua{$eVR-+Tl?##QNs&U=!tL^HMzxM~gm$wMiS>83t@5W;8Rw+hYks3R? zs5dPOcfLJ-2(TQcgnDDC`^Q@t-R)-y%YAp!GW{9%T9n{FAat`vE7ftfq3e$8UsSE( z5%5yWUj(hupa;I=+)7o_d2?1YVGmjsG#7)jL0T^-SX6=t)t@A&#zoGiPvd4xS;pj` z2Vmk+)Lqfq9%OpglTAm}vA3kbHqup23}-mrAPu)SqeW2KMJUulh1|JcsK@w(3^!M^ zpp_kpNwL{GiKL#1>Wvn`_Y|#qgLu6F$;ebJ?-zyCO`=g&Ez|U51xZQcvm4RInWb+o z&!N3`EFnJ?r5x?gLzWsPN6|SKSzploBl*5!oi~yur z=WF%$Pe$o_+F`%&KZ{7~)>xUC5#YN-{C%=Tk; z0_Rn;lfy1zG#|BOn@4F1y|}nlqszOyWoMSwbM!os(%pJlp-ZP{v0FP#rsP~%)eYvt z&~55kw}Q5c!I^PZtHXe#KMP*dQfAy2nlJNE2fSN;v~YgmR^#wYcP*WoH61~_5YzN3>$j;*;IuW8Adt;N%bf_x=p z82!&DxJO{t6H#2H+QItvAZ zzD?apwJb$mpOM#fb{H7pk_8_0mHT{(-+PYq*-tv*W|p^np#8&UDnZBjVLrgW1NFQX zyGCCvq3bp^8m<|8y{tuadivN4oDg-@UAQQ#wfi?-kVlMppz*21sR8gIS{u9-MtHFn z1B0y_Bb}ls{MM;I!u##qA1-{~N?kOCFt$er4}DeYWyu1{#Sx>nX9u~3XhK|sw z+HKYfvMcg2{u`rEQ4FgU)=t(+J1o8L*h4upe%LUd^3v{xE(Fhzyw>r;W!i@1)5ycu z6hR$Oe=?7_(T@z5Cilz#I`K}U>}QS9KF1$jyqm%!GYHbXx5z2w@wTR?b(!l29HQGI z90u^ks->tl%K}VG?r4Vhyoh!n^9^=N-JAV>76whJP1dI0e{KyT{80aG9>Ih{zc9Wh z^Y#gli4l?LAT3PJo~6B7Pk`86ZTn;P(L8LjZ{;klodTR;s}T7U%txmUbK_kSlKgY( z!xZN91fK(LHnfct&`%5j9kTAJb}jqQ+G+bdE;4!^aThP~GuAmk^2~R`Fbuy&fu``~joM%f)!&F0Rmr_#~Y1#|$lVgcCN5JcU zpq~Nt#|dY!tlKYQEg#AG*Qj;}TFc_GC8f5J=gkM7>J$bPEc)JdgYDV!_T8?r{hr2A z^}-S=`qoeKO2_8ru?W#=g}RW2Q5Gv!pOj97?5#TAFr%^==8f2z!Xg5@^NM3WDy*n* z;w;qjthMuNdQCR!gO%x$o1X}`c)DoBma7H@`v$PEfvt6yxxIost*hy)lNA-tdY3>> znVoNp7U+G84ZqD@$hK8@^Yw_S0k@0C%OG_(S4IRR)IlQF*t?Hj`<1-qe643Rad4sh zm{Ord{6pq8V6E^RAYWU7F7c)U9=+J(0UX#g#o{^S3Z1i{Jvay2&Dvx3v~tD+`}UDT zrY|9N-uKP}&jY72Lg_o0zou5dAFexogKh#lz~9#{ZA0nCk+5F!UKw!zdzXk;oF~I~ z1P74;UJmJkR-G#EE^Vx&z~3XAH*VJ6@Ez6?y_H%NFL_cy4eRE+n2E{0r;0gb$Xx%S zXjwDdEikJ6vZ%WBweAGfiI4V(SE!-Jms2i|K8fgiVejgHqb%+5ceT#ngre`2oiYfW z=L4<^+|x`)pkQJ&FIUhP_>h5BLYBn3-v50%1DF?)r4lG zF;3@|TBwQA+85;96N#7!v(_c;a#mWqtB+pb)I1E%O_R_>7DV+;(#h{FdiSbGUe_Z= z&PV*#B3aF0T;shkbI#QVZfhQs%N&k-+-thor!U3A5aw%qq$ za{et-eq2hXZ!6m*1Mt>?jz=^sBT4t~_|!P-hfRn9KOpo}w%)3_l-GJb>-)zM%^JI5M*P_Zu0Nieh9;W#@}Mo5?rWp_KjV*C6ra z*!eEsa%YMrw!fGt2>K#9t;kq@Q# zt!2kEtZl}+?JukD+L{II80on-UhTIZIp}@-?l+zHrErONH*A!7_uJf7I@HbDMj9?h z?dEd{b=wz&DdulrPk_D_E_Ok;xUC1~W1x(y&{%#ve^8m|4!X!29|Bm!^`f3eBW_it z(b>DYmfl}+1@9m|Ae8)ACilt#g|Z}kMH$=xa!7#F)y`AlpEIH`LZ7s6fdp=bK@FDq zi$C)~b3JJWF}1r(qtE=3l}HON*G;S=2HvJRrkI+*g5Oo1wywU_+Rc5mw3|jK&R>=Do zV@&o0x{^rYwLlN~)*Vt~WR^)^T_p*>42<-bl^+iuBq#8ftVX&@6#~?2At~Hq3v*J~ zkaa{+fV;pg^BlGA6b78iHiuG<)EZnMScLg4+N)t}=VY`#@i#c{tSfX|)p8A=bVl^< zRdc7EDo8dQ+sZOm$)9|9Z8#T$D6X7d$zo!5!Y~y4g8hhUm=>T){Ksur{a_oTCePN5wTsq3k zC2((aZI6)){cDGlw!gGPf^j@w%GACZA3!>y5c0!nfNrbfh;B34if@Rud~e@0;Bh$kDED4ElL=F!H~B{JKID5a zGb$Ku5${4^G})3!*~s44+u#IJpx&ApWskQIc4$Q*`q zH$RkBCYwfmZ7O@m^4ItrCQk|7&y-m8i!F+R(TyW}tBIUZkP+WWl`JS-b6GN(@_;=W zN_n?c-cbD@Pa})!<$=W;9YNGaR?N%8ZX7Qf7(b!luvAgqb;*AD?3%~s1fz#f@LS0| zfu`VUl#?L!7R5aZ3-s5K_^f}nKgh#f_~;5DTD4W}@n{shye>Nq^0~6(o6p9U+(lkT+x`V%!`EpXU9+6q`wNZ5Gbhr*X19%rx zmZkT}n_7jlvUBsjqsrL0QL?z%>A081j<50hLVRIzKjI1uMS0UI#X1Z*0xzTecAW*P z=8)|#!=xW# zyYx0E6E-WD=`^eQ$OleSG4E5}TjNLE3zxpG+EyK~SGkGbI#Me1nTj^8=zIH=8bjGs zZ6Jg+g$=$kY`1s)BRjtKUCCly$|f}rRT_MRJGvn>JYa0i)PVJviVIh=@f6GkUXG{G zA02Ep=D<1}sMvcj{C3{L(h@(jzCWNQZ$DpL%zP2r`zM&D0h%z+2}h4mReRqteJ3Ph zzV(1V={=d-sITGCzrT}z;OeL4bs*xi1^kS)YO??*NV>P7qtD!*b7f*UQyx82R=)}P z+UZjSkrXIm4-top;P>&7eOFPpY3xTqn9fv!sQa5AbI_qjh~&Q8;f8g4QTK4kZFl@S zv1*9_JKIwI&oT#_FJP9=CH{^fx6b2B_JhUTu_v%4nfJRf4>d zNA8?-*boH%sNqydj^ReXCai%hXWpfJ44HMb9u$6}snE|Sf$qsOUwdyiP_HSVZtl8a z9K3d#P2u5rDs*T!^ptrGzeMI}<#_~$du&*4)hM(s855CO9Tw5;C{ciU+j?uQX*T~o zl6iRrA*m%wRDd@9nxo?T@Bd4$mUl_-o_^-Gr6f3F$vQrkqrSk|bTuKDM6i*=W0U`K z?|dF#hS!~Fhnx?5h^+{z2)l${-8kF>I_NC<$)XbvZx<|n+BoXBI)8^>%$!cs8Js5J znrQhyJX0mZp*bUeAT5H)L*wIQVdHcPh*F<{xSpupe*6A3)p-uqk<8ArV!w)BirK{#gO$)+L;piSR{dYVdKJfmq*3c*V$QdW zBbi&|V~g>cKvJmwq<4f_ibDzm1~Oez6SVYD>b(F6Y&(}34xvQW56^g`@&d;$kRG+) zW7WhAHa@*dIZnKd0gB5q7kG_7-fzI0iWt~gt#d!j$(;b{4?MOx^CogOJ|+)8a7+EY z%Sqf`rD2(R4L{_vC1RtJzv4KUG#q13TEdn%heiV?)k7mTTYq(2V2y4D#UccV;1oj~ z#>HjS`)6?7!Pr4(m6;jS?OM*~X!=Cx&!iEBAp~b+;|Ai9m(6p|okb0{Z@GCMui=%j zP$p3rwwW6Auk+3HkdKKS!FcPRXqVWT!`2^TzhRdrYG0Vok3g<4?-&Ni<&1P;Hwy+b zA5pwY4f`p@_Sl>EbI!rlCcgbaZf*Ls-C?J?HFD1XWCFYU+M?b;a#75eH5;BH-g2MF z9x$*|pJK|_5Ju)h&=o7@6*|}OH#xC3m@0*AJ<^VJvbpPWTk5-6>!}ogZ??}*KR2*E zgkiJ#(dA!Af8?>H;pL|bD+Rf_Xh7XL5jlKW${1N(Xyp3IMw2-YY6B=5VMKhL;@QlZ zs^N}sH-txx4d^E(iu6}s^0K{X*xnngj(P9D>92w+VI;hZdFA#|uz)^nk)l{|J^Kq2 z*l6k=?rJ1~-X>!(ICdO*2GZ=~_9@grnO6JmN<;tVVFQ`mqw>O8+-0}ohsnPPdeE?c z8fGx_h=sz-o8rRuPnyhYaz$JI4}x)KD9nv+IZZPtmR8IwofEDu1_(WwhsO40C9{XH z$=ERUtHdl$;#emomuY4yzU(70`=xg)89ry$4fVK4{Q0!7;fL}oHGmINO z8m;~edpE2OH1TjPWF~^Tcg6xdK7cEHxU@}kbz8!PeEjrbQW7n?+*Y#Y#0S+>mhKA9 z>-3LE&x~*fKv&_f$HdigxkNudq&t0KWtxP5?H+;jL34KeK>LRIN)6Ua3wAbcwQ`8{(~ zlbyeVE*vV#&7|VK^j4BuwoV0>eRG3sMuw9x7NJYlOY4{V`LTl?s!`e^sG-n8jX!6> zSp12{h7+UC`Y4Q}V}W7{ z$TW()X>l_ar+Vjm(F)Uu?K1Y{K`jW36S@A)z9LjdQhd{BRy_{|8Wfzl%fP@FYCqP8 z2d(s3zd<$dI74cr6@v`ze96!7w;}^9UO;e7jDY9LQk+!~;)LM(pUfvU{xbI*muR#s zAHo;Ue@u_AScfI(VajrX#!=<^oyY;8LU%9Ef7a7D{ zq0K~5|7HS=F~avy>*Q;dvHPi$liPohK&8;LpBB{B)``NJG5z)DwFabBUQCZIJQVidCA!64cd5B#_y?ukn#$l38ij6 zxye{z#*QFp?tk7$SlKXwZC@kbn2B7^s?`#m$i>W3eSAv?Cq8l<=$Cqs;krdaebNpd zDjDT#$XW|@gc${!Pza=tZZ?&a!C($di9^Bbw8H=*%>kAewd6=`krBl;=uK8fH@ zrJ)8$T!=w$hd`P~qsf;jBf~YiV~VqC7^V0J@_Zd-=g_7|Y&?t=FZ$Tvv>nTw!>)}m ze$VfoHpeFUU{QO*=9sHtMYr?d5=Nej6i{ZU!R7n7&_47k)HcaD_hrC$1Ce5Er947n z<3hYat$ES_Z7eeHB-h~F4seIh>Wq6+)!R^3zweMnWB;n-3;8llkI2>a^~fwLaU=4~ z+*=~eXYw0k1+PWDvdq*BACBhH(2k`(Y!~M$R@3_Jk{LS@YjGQ7cJ7^*;FeoWxV}yT z18E=bmU^XA#_OfWGW>*Gq-t3%Sf4zg+C0xpO3k|d@0W*M^4uu zMhLZK^9DI~HXjvs5W06&5Rb;rWG)$K7Ggf(jk(}SZ+&Wb{+Ayr-ruvo>Y3*bov2uK zR&NV?8sG}uCSrA*hcTzD#+c(jk|bY<%2%y|$p6e4?AzZ^t2C7EF*=%j%4!{bRI@*- zHj_U&8?d4|^AF|0Ceh+lk8eTM2@5Yg=0f~uUp4l4j%`}d;%$DyiR}l7ppOC@?EB4p zpEz_3Ug$9n1Nr1#(d6(e7Kk;Fm)kZB`G@yQIb9@jsiQ%Xms@hB*VazdR)QT{nbcY) zXH;GSW*hI`P)b%G(;d^|`ttbKN$q@BIC`kGoneYr8!F`Q0}!>irGaoiz8CW<20Pgk z>^Yb;HA;KDMnHJ&K%@tpgAR-{5NR}D%xIbDaJZ7lEjF?qUdb7rLvIs>ggaY6uOK%u zv?XJ>*0qs%w6}>6@-Ffla$dm^J>6h!kSL{t-QSye!LM)Ku^?dfD3eUl?a$S`eE)_s zwjzkq{)xzmz5e0)(qz-T%LY~$*^)9m*0hf0SRSKFUlWO#(;F^ZjmPQdl%cBFE5b7g zt$DW4u;7SX!|B-Cjq9p#JMouJw8eYFE#hibQZBcApPv*n(&4&XQ z7H9ZNVWZrZP`#=)rjH$6P8(rRIfnprjMFG}dN)F)rQOMQEG8_)(zK1mF1um_O=WHz;egaKA7TGBnW6j&MovD@xod
zJ4pxdv`%5pHQ{x@{1IL1tzpMkulBrym>|CM?%q@%QGy;vHSXu(lLKX!^jF<2GEHZm M0syG;#Chre0+BmO+W-In literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/ilusium_portal.png b/src/main/resources/assets/ariasessentials/textures/block/ilusium_portal.png new file mode 100644 index 0000000000000000000000000000000000000000..fce8ed190a4c55c82e88642f5af7f51f0bf1f5bb GIT binary patch literal 18807 zcmV(eLHoXmP)PyA07*naRCt_Jyy>rHS9;#}TjL(iKI5IMid7^Y^z)C9@%8GidA*%PUoI+k88+>wON8b@dNAZd(PTxz3=lr!xH>& z|M>r8UKl<)pKy2RSnqo3#<3kdm67-WNdledI6R8)f4o#&KKb9N`@rBlS_*m}5nAxGA4M`NxtQlHrl%uB=I16ByE zhHpKoxLW2!;N#Ph&+m>{EpZNlk5q+bHL+w`YK%w=)pmjPaRA`OS;>pjk{BXhz{$jN zx9_;!vvb$HTtkX4~<>s$g0g zv=nUWK_dn1JIC`?L2f7f>fMpsZAX!5d`MgIcHcAfo@JFWDKu6|UauRP-fM0jJE}=w znj20k!*pushQO{JC~Z0`0C}!iOf*sme)9E>ZSDAbKWH>Vh~!3+X~7U8r-i{+0o_XK zKF~T(t`*ZD9wWMhs>s?QtDXdjU0n=R53?AR5dXQvcol2indPVk9D1 zRR%GhhxLBYl!c~l94D0}*OE!5*td?KzTBgg!28I_+_F751{d)}&P#(lE!Z9hO>~iJ zVsHYoT+z9}%bS`IB086x%q;VX=EZr*=hp`g^?*VkBz$x}k$m^XjH_A3hbJWn!M=9* z7#UnZ3BmJ|f{)K9EGLHVJev{&9NU4j%5uKQB(EPDn%?tp=|ECrQo-pO?iG=P!)>HMb68+8mlF{#?i${nJE^PWjV2uFfLwZ6#K^UcGHp> z$@9~at3`p7f@NiRJoLPMY#Dk_rX^ZKJ9v$Z@O)X&`@p-$79S#C-PAleD-aSC@UZWB zy=n17AkQ_IiyRO1gV!88kCZ)6S2^>d;umiZv3V_bsn)8jg*ZC?iv=0_xra za6Yv}A$ZvJYz_m%5ICDze2CPY=k~EfwM3u~9`92vu(`sANM$7J z)?tNUdmKxiB2&<_jw~D&+{POLA5a40g z)5k~vDyy(s(z(dpu1inLv_vVvVq%!)nr%Js#oHrF3R*m;tBk(&Z1?^9w^X~pTpCGP zrUtT@7>pG3V`=;Qf7DV{n$5z`n8C6%>^slC zcHC}S_Tz_7#>2L22F3j3U(&h2(`61q&^phtO_ll3ID~|kcMV=ZrX^>yjCL&jciT=; z&i@52MqG$ITjqoSht9KW9fegq9vw;mLU1;-3_kM9HwSLl9f#UU@=W5o00MTcBhwOV z1i6&_?A4w_J+N;a(_Eot+9$i(akk3vK5FJu%QRCgCKeyS$ON#xgtJwKMsPZ}>}y9o zp3GUP0r|MBL$0GqoiQpdNzmt{rMPtV3HfAc|z|^ z?RfRjXoewh+c-|9mdr?|h3014^X{>sYXc{9OHpc?+OawGKw5N#pbsI{f@x*&5sEBT zqPtB?*9NXG3Q8?`c2?jW{QCCDt{os~v=yA>ndXzLiq;3LmUtI5SLq^XXN^{jS4Afi)78pv<)<*9vPq+NbxsYaNTiaQedXcpOk#axyV&>w(APz`pma zCI%q|GNRcYdY-NF_rQ8zJA@QWV=5ZnMd}1+XokRIV#u__C`s$Q=5F7!Z5*FHt&k%w zd_45{Tw~Kz!sg)U2hVD16LysF^7_D`bDGT|?eSL+4Zrzxn##Ek)SVwOGB_VV2?Wr) zz{{_X>{^eAXfi9Qo7B<|t)n!OLP_53JFXvEtdUfurYba6OJ3hMv@UY7$oTd@*lXr9 z%kvY(bYk!U3M&yx5CqIijWUvxX?lIXzOUII9Fsz!tz>w4CHY6+K4CGnl$qjkk#V>0 zx!?87a?NCFIGZ4WnoYXtde|sKEb=7aXxaj%$a41SC1|0x<@NX;{&robLc#c z@0l9Oeh5^Vrs+MKdf?efp}E<#%nHp{hn}~a7D*aD7nubiIMj~JrVpQ&hOHEEfY<8= zrG)17LxWO+b_fWS3Pz?=%Uka|tdiVsdsYj}wslx7Dau3#e05W6>dvPlU8F*ym0;64 z-rctdpqgtwyez5524l2jnkn`=GM{LTvJxu=k;ET#E^u?-5<}#ptCBL;JYN;*{omHy z*8{=}%0e;CwB*?$=lQbWa-Lze$*t^K> zrsMH2usaS+@^thy0-5L`i8hj1rm#lfd}N**K7Bsr;v}aY0`rOC@z^sdG)?E}29Hq! zn<-8ztFcDWyFlFqw2W+;fkk2X?dLQ0ode**(~^BXu&LAJrj(#ClEFvK=Gb#F%~+PO zZw8t^aVb@%xmx4^JRAnP!LvRj2yBhS`^dWP6{h-Q+7LOJ7?hOsy=OmooD0;>Gq}Lx zuIJ%6U`=X;ZU}sJSM#tNG%CXD>l%yTJI^WxAMnk^rBad(S7A6;-Brw{5xIbsPte9t2gP>0=r+5a0yN%T(g)#`EcA zrKwv-X%%;ejzi;cJ~GQS#59QQwjI&OG+$~7R-!t=+sBsP2hFc1_T*2H0%A-Z`tdN(yGYY{s$BE1@3~y& zhyX*3^dWFKIJU=uAw-EnaDV8zJ@nMQXFf4xO7Q(ZYPo&v*c=9a{&vs0Nl2c^dydU& znef4(fp!RJo8CQV@Z&!hL_(s1e5BBlG<|P*yDz%$#TiDan!Zr&^eY9gVvIVZO^a1J}|2cWhR+VEm8`a z*0HS}Z+^5wn?^G&4Xb&Ej9`?+j7L{!!E$b?O3nE)Blt7|HG}73nPC_4E!w_&jf`I#d&kzEK)**m>?^$nq zzV-dRV!Hen?2l=uO{WHnNB}Fq;~{M*sRV5w(MquEJp04I?%=q2X%#O%{8R34JM;)3 zPAkj9NR|KMmwR^IfExmXj~JP@u#b@!7bU$5n#@Q(`(#Elcrumr#nZyDKMbtSELSHv zMXvG0w2+$}Ii9&IObb zd~!8ml50M@n(+LrOj}(-bg4@>z1J)X%`7)8iR=yoa-{moQnPOypI%jbdE4;pH1)@( z_e2#@Mp9*3@%)27P4o^>W|~)bHO?jR%K6CczT<3Wx!w2VMiOG=`mv*KJ=@M{tV~s? zX*^QEYLRh$+wki*M;0?nnJd=Yo=>hSL`+;_k!zd}l$lB$s2>7G2(*$ET5`U~Sj;Tn z`$0oH_(V)=N$b<%Dgn8XAV|M|?R%_EG`N+5#fVT}{Q#uRV6u6g>~oodfjO5b{*Y#e7%p{ww}IE4MdF` zyRs5b#3l-mzW2PoA7$gOZffQejUtsXPo#GN7a}%S{Qk2ky-z@6Uk|iSusICmRuMy# z_>jh#?cmWm0qL$w4EASN6`7Iz*0U*R^Nd+#0m!XlNP9(cHnmil=6q@?wBm3a=zKcw z+vC8Zvi#`Pjw;hkaz$pnFMfcgxlOLNl#2Z`KVTUrbm{OadZOA~Jz7GEu!v z@3BTCm1kz@ePC7@?jJgUwDZR9t)xI}kVv!=nn|XKr1?41Nyt8*XS8KtQKfDE?4-ad zLD#3PJh7Ulb5xnpd~thZUL>*&U|u9>TUbT0%*l+x$4Kyy*)+8@z2`6l{JvMH{EzWO zgpjF_hM2(S5NLcLN;uXIH;%x&!|Qi=POdta8q0md*vFk<`88@+{|kndF0S1kKA;Qh=T=bIEs~O}W{0d~j8= zC=Ki5kXU?`2#B)Kh!~TcRwWk0YRU6e!QH-3L)8y{_ly`oX+en4^aCN1C_&2zWa2VN}AP@^`U2Qks(GlZR*5@QK|8SK&cf$g6{)rBG@%9@yZYT{u|i~ zYZTX;mbP_BM1u5VO|TW)rBbC$+qBFim%p>-XRr3uwd2o!e4l7?7YHPXGs_fJ zX_A)I50NsHSS>i4T8vfv@IMrM|BqU(A6iy(OJNl*M7qI~O*Fj+YlKW3sRStm(_ABz z;B;mwCx)N==Zf=X#_7zWq~Oqc3Zrm+KuZ!nc)RP!N6SoU70Zd`I3(wrkCAC^Miw&} zeqKE^NCDf%rPlVH@9+7`e_z1N5@OG)vZ(Pyh7j4eX$15k@_6*LL*URjNOPrv;s4blbjWk#!=?Wo49uLF&sU|Zj$%S|8j^F#khF||x#;O!-nt|KLj$i%i zKsJ#q=N4@QtBEDg6|+pSsGTfmVCkrZI%$#cbYshQ6bzW^`{fr(TslZgd4 z1j&aN6ZS{P%m2DyUKw_MGAvbA@xT0Y$Gk9!jB}Apr7^j%iqolO-#W!_eEhF?ab7Z+ zXmX>NSjDmR92(CTzZ95}wdrGo0NP42A@IPnWv==7d_vp#_wcUiJp0yjXdSsx^gdAK z2Ib;=2CMY}=K|OJF6j$KNrtg6ZuTA9x*xZ+O0d*NicBT9*rCVw0XGEZmDQ{dJ>Ex* zOw{!n4_F@&?VyvopKF>S5Pd`jm`)5z3qC%d05Hon z?{*z#L}_*F=|jLBLplpWK&I13tE6CC53EYd-L^wX!C(Axjh2bgFEh>avyxS5a70ZI zV1&R6&?+f>U7wtBN(f#*G*pG=M_=#w^kRaM@YS|OA$ZvIsXKcKMCkf}mV!(Re)07I zB?WmV`RiY8`OZf(2$4hQIhh#twc}zj&PchEAQB;$kKR-z1)E*ZyStXllZ zRPwS32r+6_xn|dTrj=%unRE)L$<(r1T9go6t#YzF;bre4S*Cc{^;Ct{yxVjXrRK07 zum~<@+4wV(wd5PzFtHjz=?74z*M0@{beph>=`LyiCgf5EHx~d`tqaNbvXi zvE|r$NMx1d;xy-bKWM01&wV}6_i0;eC3v^#IP?j8KOP6(Y+4SZ#URfVXRAUp%QgS* z-zcDGJ~b#Qs5{TQ$CfX@JdziZi_4tgq0AMtGD)T%oEGdGmz2A+RmOUo_W!If$*56i zrVGt#Y2V`}fJ5W>==qE)*W_BJ5pTWid45r{tPI;`U|t#~nMNr=Zc=OaBY$?j%s?dM zwmuG;-UYt@n=6z^vp`j7?zSCT!fI;9K`iYTTm%y_625+D`1oRy>OtM7R#sR^Hw5;r z=h!)nRVbO-e5ECA2popMwsB-ual7l1U%AXuUl?5Ee%ouJ_b~=dZqaL`CpJ zV3BE-Rg#bH9@_*OLWE+Zdg?wE)V6iJ+jjiu^yt>iENeZg#In3d_wNFfL#YTfsq)6!_}c0HX72{h$! zHqG8^D?UP@1fED%X!2Zg``B@}>p%#+2%3jokCe%*_f08ldQXulwyk4`Xl&+bt>Q6&M|2fdX!9>+R-Y(EZ01?1CG=a&Xzfa66j?nnH5Q_T0eGl zt>@4O9*zUA?;1Y;a?iK^-i|Nd9(lKJIqnC}=c&Mcd_G|@v6`Vz*82T!z-Y;0lH~Nk zO3JC`zy3$V#hE3#p^XolUO8)!H9nFwl=VP7Fs+1xz zQkhZogX1v%11$wVf4c{fP{~hzw&RnJC-23JOeGg^nJY~fBGLtHCMk2pn{~skcI27l zxBuZ0fZKIOW)+-`|=E-Ui zlfH&k`u^F&34c!R1+qC1UBiW998aA$0Io3$d zt4cE~QwUxUa6Zo%TuAbu(MkUDJ|-?P zhtMY}=xmi?l_blO2dQg4S5K$OuiN|N8oyh2T%KeUR*k;IG>{rC@k8R(dLM``a=yyg z)=3#XbY2odbV%vjDdgh=3OaDnM;Bpt>F?vIX>%J6F4FfFy_v#W}3NY2;g z#Nd47p>Z7Bfz{mN`oL;xSnr3lfnwzCw&VFCXVVNCAK>6TQ=2U45BrX$9uNqgo@SII zDY>jHH`|_V-ShULArP4vl?2O^Qggp;u`0Phi(K>Uw4gExl|j-RRujV)H%WteyKWgu zqv=E7wjNLc9_yZ5E6ys*BGZ()elJiqeR2bQFfzP-=XrTsE3(NyORMc8S*}o8q9dHl zGK>`5?|OdncF(jh#E`bT5>UIq7q1Sfi5elWd9qFJ4+Hzo(+4|)i2wi~07*naRP{;W ze*MtUx1Jw;x#7?y?C?!JuvVsw!pY1gPPKE1>g+u)?;Bp-)eIr>#mfUmOE%5GFwT#Q zT(g?n1TglkXFej7-Upi2(ffcO0>Af%4Y!X4;hT&aV5Q)pb|@uA8CWHW;G6{v|v`6R9th(woL}$`P6EBA9%CtnNJLbRh(3ocvW$??NV2gg3QR|XE%~J z4=vj|{S+-l%IFv^xf{XuhZhs3qxb6Fy2a)yd9eiC?h?2dT;kOL&BvD$uGc9Yu{{pl zZ(F8?No11`P`gy>UHbpufY7rlOAoLrIXiym4{Cn==M#3Fr}s%Zzgs7}X)|K!vPcfn zsxX|*GbHGgT^ScGy7-=ix4BAqVU}2p)gl{39Lcj~j@6QPkB#Q@n2#XP4TJl$AOt2{}HLM8jeH2)i! z*=nh|nq~B5qI#|t1wxR#2)!rI5}!CXnr;XTKCo#WtJbru484(>X`y*&22RVI)_HEW zJ)3REVxIBQ(?r-K;9M)NHyw35@Os@O;E^lM&ALS!$!6&3`oOUrm==c5E+$wlnNKX+ zW1l=oh2rI1!_B58gow?hPH9q+1gOpjVt}i&oN7$Z4L&4W$-ZZjrBqSfju*^nO4bO z2q~g)GBK$hG__-%YpfBJ)^cne+g&E`6$XMA=n)pU)~?pZs|kd`my87ny+V;!2k1qX(olF{DuN|0jZMj#wv-e(t;N{ z{dZLwe)e{+`N_*Y>&K4eJO!dAMo}2aQ3~#d2&B$!b@FeXObvbSxepQNqo&9tmuJZh zx>{sBS*CihZj;rpDmB^Y3}e)&wNA0#-UXcu?T4OHNzNBJTEoM^<9g4eP~^E{VicL70nKvJmz@aJ}hxyKXs~Wqfowp&J6zF-5bl2X1y9ukLG3mKlpo zYYxqjk}_>FuH9@qPUkt_x|$$mnyYv9z(fkFA{E@5T?db_vxDZ)2ZC_yjwxm&5PY!8 zF{9qzxxnBeZx1ccR|O~26ojce&;6!T*y^9LZ<52sC`n#uriI~bmeKT{ukUL9``5c< z!)^zbl}!SLkNoTx`xJz!@?`G%M!?_KL*fv6&%-hG!Jog{Lr9gYA3~CmmO4cft3vba zq@W)>hcWne{m^i;?Z`99*RN`(6GJ_QMXgQ=qv>Q+uapufK}rS~$>(nl?0e7crsL(i zhL1liX}c62lj9V(IXXg!sUmHU1J)?!m0?*~v=+R%t?67KhDhfkCre9JXePO2Uk`{F z$*fHN^Jeh8y03Y9QgAuTC^N;Ihh}W!1|i{ck@U5jZA#;ILtt51`QF^PIXJ#}d!QW! z>nE!sc`|{EMUK*fx0{wX>qH$sKPf0PnHKN$W5X&K?sq+}9~w@k79Zn#MSS17WM*jx ztdhKVT5>VVP(o;WpIUY^`1f3*_lc1B23S3gavH$1vw~G=2q}fEsXNEr?r*|ykZ6!0 zM(QR-5qptH3DTaJLw@eGex*pi>lZ@(yh%?C{QjGj! zd+1YHpH4J+rtl&qs4nI?p5*rU-VYk)g`p}FX2vBOYN1k`yJ@}V=}FEIAs2!tX9eCx zTp#FK$4~xq#mQ7N*MfeCxG@~^Sf`<*bzXC^DCh=Hl_}g1x!tsUy>3{}GoDliD`(ZlhcA(ZjuJ=QW=|#RN2G6=Q@%0 ziQTUo$G%JT-^g_1z~wCGe%BFz{b8W>foCTLm&+_UYKeS(-zc2=Cv1-n?~|o!KGDny z!=y+7k(akeUfwrJf2;>iCYCM)9yUEc{rOHZ9fwb=k~pDAdq70!#&N%HJWqb_k;X^X z#{usm^QqzTDo?b}d}@;aV7voEXhE(7>v|wFiid}eAO42|V+T$~l^CEbRKkG4M@l2m zQgQ4YFK_B}21dZ~;)4m>{lL}KGO?+f`4AagOywF0)+&lo)&BD4m>v>FFUEeLEE2<; zTfutg*tU*kHA0-%cMV_N)T!2GDj626gwgdfpBldVe8x1_Y>tk7@4tz!B>&0TGUx4W z!`2F|KX zvuoV@uLV$KsUrz3aBU#BlCDqbyGx^(W;!u{ndXNtH;R4uUupV~^fVWlO*E(Tj1b{) z7&tVkk%Tcpa5l^EK8?wB>yqVM0Bz?vom*a9P7-f|pbx1=EURQ>Fea70)zo~$bZI`l zn(%I)Cibg&hCy(5>}dzbBv+JHQrdKhM$;u<_wByt`Du}2>)+TUlCCUy^VqPh2PV1U z>B?Yadcd*wbWU@y^$tsc--~;{AYWGZ~rw_nXqAQQa(c|Ia&xK zcl&{dP0#IZ%jqH`inK$mm9!xw!@_cw>_R?9uGcMfmjsH3eb33%usaM)XNJ37pZwZF zkSR%?sf0`vFv%5KrY-&QHr0dP1+LdEpL|g9$@h2s@-L=IymsLma#Hcp$N!2Dz!;g* zv_kOivE%X3^LQ8#La^TUT)(t@a8@uY44ZnO9Rd;3Z{Lp=q2IVnmqn?@xP!^hxpC%<7k)-AS{L8gs z-Tx6jL}Y~D`A0R)UCF9S0jSMkU{RMpbXjuVq$JXhl1CDx>(}mmBIXnOIsM_|B6lQVDk3fzN-omsAtOYHG;x zG#{ow&?pN5r}K>O{h;A-+Y>`%U8lPuPAba>AD7AXxSSZGNKkgWPwB$m1v-~l|3CY; zmPrXs7w|4JEj7Io>2LTU#R;@dnYBafczIXzdY!z=w~rlHCpm5BQ7Sn@ybJ7-w3KL% zW9K-t7NrGei=54&=kqrQit$>P+s7_NdQS_=OmQ>X2aJ)LvsuQQb;B?O&KKEev$t#x z{rlnj;v{2UreWmqIM9q#*nDa>MwSxyWO`<`|P z7%h3WDwvi^b2iUXg>`|Kw+-*M$t7-$plJaFnG)P=dz=p#DR_2T@*8IbwU5an79&_A zndFMPajcJNSI#Gz)x_|yA5!LV*E6pSvt03R+fnNAuCPOwJ~Z?mq@Zm*vJ~`v5@_qj zrL5y3X${|axBt^G9#TEXa>a2!uxmVv%CMT+lyhtyb)P(}aa6)iCzb%ber&ObWH-LK zYx$i&sF_YudP=I~Veef?Vd^5Wy*@;`kZNU~V%>^wee$mn67FATd~lW&|K6qh!a{&W zm2h*20u4mc?kqEv7>sA9DM_rX#P@-1J>Y$0R%o8CQuIKou`&;VeVu%|XH(0?JlF3R z=yAx5@HpBpzxAYo@e&E?BCp;xk{|wJ!`W}Gd3k+A29kXw8`IZXa=YoMYsYp!@bfo& za;*qNZXR2{{QRK!@S{KF>n}8uGIgP4WwAzLr6k745F+>6o}Sk6ygn`<91ok2aF4^Mb;rOPK6iX zGO-FN1zn#;o5iU3H@&9|DW>!#Oi}R8XP79`mPWMC9LkfgR!LM#=Ttsuf@2NY- z=IGx0u=?@p!%aQVxWIaoit5QcV^Nwh_Y?Vx&)1Sa|M5NB#?iEnukRX`mEmk^X`QEW zfqqO-`9APX*k|8*KEFMpBx%dOxoy}V2R^!*P>hm*?gYoyG0Rg^Eyk}t_(+u}9sbuh zjppJk=iOb)^NW&dqRBGF{@_vsEr2xwYc!ckF}~J$>>zov%5g4e&Z=}pgB>rM+SUVQ zmTvIMta_jO?0ldIiNIa^o_S%oSd3z%8fBom3)qo}eSTWf_n!4};BntEt1L=M`Vf;v zeeh}Y^)b@*0VUIY7ll$>E%Nt?0p|i=T-PIQo>LWR_-W+XrQ|7O(3fo{afUVzq; z7~<&sGb;50kp`@9=7qwfJJOaD!_9r0?vu0%Kcu@;gdD#?-TQR03`v-JI3$ZvrX|V< zUcPH6OU31~KpROU1+1+W325GJJNni$Ej5mGci#27WpELr1xk@P1)V;eF5;7zRWA8p zRq)aIB*pCxf1|HGJuOmM11^`vH-0X*t)t2m7mI@5emd1GCh6uvqa;6lvrBr~|KHS^ z^hk1L+4*~ejcz_?L`DuIlSQ(MRn^sK0jj37&`PL{S_1@a^bhqHv{MTZ1V|7Bs;jGz zERsp)6d9vOxVyQ{_MR5^g=cd~WCS9@&EC8B+;hGg@P6}IEQ)74FeZkv>B(Zl^Hs*_ zERn12(26HlE3ig$wP|rkRk8?3#M?5IHNo&xq?T8g2R?n2Tej7}#n?&+vUk`>41U|P zC$*Z(fUyuGxM7|~oNtBH@%R6DZMf_Iz;t4{x$n5$c1&W;dY zPk3N^o^ZBKu|{L8ma(u>6sf^Rib*QGNijl-8mzUllIvGeWZ@-}=$sceUPzcKkD%TX z%RUgB603Q#O65Dnk;aD+Y26B3Y(0xvziTj7gZJdAl>2ozN~&yI_Vmt6pJ+5$ zYFN)=H1O)`K-oJ!T-Ln1s`%w61v-r2+urf^x;Bvf9Tzt;`tk~%u2L3xL_bQ||Ms#b zjYLze>VaiYGTv`$ZZ@sxiIYq$rN=n7mbv31kNEU71FbMdfmTPB*r%sCi+LOj8cPAq zF?#OHo_*1CGEEp&%U4edv=TbYwiqmp*;&*yvY51n{1Zx1~WB-Wy|;!i(s zsanT;8nGxMv{ocq;XN!T5sN$`PP7=>l(<43&0@ZLz1Mi>+1HY&49*Vm=?C=Jy!iOV zqxak$#638lMtu26VR?3%;leFsoU}Fl;8+z2i;3uFli1Sqg0~o*c-L2X3?55v1n*N1 zBXMLnGy{*O$?;%0-!`;^qe#R$p+hZk)3sEClYU_w9oj=PNP;F$jZFN1yk~TtpUw}= zib$%}AQ!izr>X`a^L)5&s6xVURm41+CEOnd6rQJlb4Rn8aCy_vc8=*pX7%?~&()^2 zWQoCe=tfAgfV~WdsV1TP@i9%m%!^3Q0}p(0mUA*o zLBYNnL{kyPk|K*}nt{;^I3bQSMP^w~V$jMm41xk*7ZH~e%j=7p6Qfv7W4>IaG_7Ob z${F!MveUpnyxEErcD?V|29ILXIuvl|MocqM9K^d`Ry{>7V3lbaak*`&o00$V@>cV| z|8fVwo7=(IEmx=Akwyj$@i)k#U@c;RKL+3erN8syGF zYsI1vO(luNQZh{~C#!^)-|sX-Ft1Hw9eBC&QN@w?+1Gg_Uu@*xc0rUpohN*9mMQ-B zU;G#1#1JdF|FYPi6j-fky(30aRfl%KNO>#FJfZZ6p~-sz(?2|9vqVC1)+yfHR6&F` zV#&1{r9+;f8^z_~oM&_#OBih=p7iH;JN9MI5ARAI|8_$?h+nVkMyyeC9;DNM$HgZ6 zwFl4hRmP)P!oD7`O7Y@vcQl&`|M;zVQ6`zCah|K2hJ7^zYk7D?b?~dkR+B{HNjdy* z3REHcCgY)}^OWgX&h4(VIPXzfQgeMs2HaOYFHUl1dC#uuS>+Kg-YazZ?hjKV}>0#!zS#Wa?oP9E$v z-4H;Wu~Dot$!eV6HY|gR@!}+BcNn+)8J%tq0~o#yIQ8Z@k1E4?Ij54L_Zh?N7GB5 z>&;~)=YjK{|MhZnlzj3`ysJeV1q`Zuba^gEe`GXhcy^NU^81}(y7&)4`d7@SF$!1} zF$5^9HVPYQtXE{I1gxitybqDVvYg3GF%A#OJUF1{nZ&cKQRrSqM|C%{oW$(NtypZZB9^bu_f(iJ{0WcL!k%hai9$Si642Y7=@Qk2c^(`2Ovl-oe#% z!|6#%)s8%x#SBiq;eOM|c~I7Z%CB3;dY-VHMBJ1eab&oex{>< zgtC!wViJ7IO+S*vhCjXCGn-hM`o7!L@cu})j#PTlu_dneTZ6rkX7OBMe zo%a-pDBf`-GY72HPwQpEci-+g07jG_io(lg5bECbgPn5z+Tf zI+n#uf}ch!76C5eg88=_#h>^v%!#brndRtM&tuE4o=&*lb<8IgYc#Xi5^GK41iX0_ z3?4~%J{}dq)?F7dKbO5_`(R)g5ypr4$lHH&RnxR1`(4j^Eh7CUT()CBic{8l*zP;( zc91M_vr z^@}MN8%f%pE#=9@dx6T}rEpSK(e@*CulemKGlt$#wgbO=Hsz1+_WayB(nPvl-+1uI zU1zK&GD_G_qbOQkXak-sQ!e%$+eXx^2RvGqSbEG&OXc<8t3J z407znp&{!AFRbwwk8=Tp1ZLi$9ptH018;7|BUZoe#t#)IOcIg)tX9NG4%m%eU;@sI z7somABR!cXZ1&RD&nK27H+-_n*ta89E7{%$oJrM=yt{8$WL75MWj!2ImF?izwIjNB zoXiu>H#K!TVq&pd^rOVKukKo^+-k12EpcpkziD`TE2jRY5oX->&`X16r5P>jA!zU; z_uG&l>Ab00K{U*}UVr6=TkQGv8Sk7bCljzudyP#smR^F3&B1ZAyn7p4RG{bmY%y5!L z3_TFYEZ27p5mNG{slkU}{XDgF%_v#!p_4`;j>LO8AlT0jS2a~74SC;<44vcrt_h{U zC<~rI0zjLp=VIF)B~XAOsGYz2VtypC^liX9wWFAQU5H}?44tr&rm4YL#pyieuYNHj zwVGc&FXSQWBs?Y);Yen#gc^A@jpzr*m}q|Ubb7STJYQve`(`V5Vk%hqIMUp1yN^^# z6Kl4IA$T^0LpIR->`G*{9=RM_Nz-h5p z8Y{>S0H@)}D&^Ty7QJY#Smu#sSBaIpGU7d~dk3AvS;)15)Ue%m%uIw<65VQBaS3et zPV9wG7b%g^l&Sdc=9wi)We~Bg2JVZ9i7_;zqiP50ZsdH^NQOfxIKLNHd>wx0P3Oo) z&ny|Z4AMxPO7x^1J?EQ-?Y^h)M$NA5Ii07xx~Uikhq6K&D62livLqZekBvkRi~uGM z^}u`)WZwVzm(8)!@`DE>yexpu1+bPD5_&g?;(4-&dH10*sPx~;DclB)M9D}fiG+8M zsQ@Mn%ifF@mA~p8+9*q&iYj5WRIR6rgwt6}**f;ShOYNmFBzWEc^=PWoR6tGCyuCT zA%pADc~-fs+GRxtrWw8+! z+_sj;!2>iVjb&5Jw21g;U(CTOzWL=+Uc5+ds4TT2#&yBGd1%K!ig8A(JzRMlRRr4P@?1Awn=2A-@l z*3+0}7I9w<;(+*Y*RaSUlGv~cq1Ym|;uaK;l=yQO35D$9;dL4nMNzW@7PJ2(0M3~glVf*8WNmmU-q0V5M9he%Ptur1KF|jq=R~_5nQNKU*+?E}Ar1|`GB7_2^Ec39NGED?p zKTX8(@#dxyAaU4`k!OZOt4XcqWFE5?>b3Mh+C!oh^E|?N*fsLV-tT(8`9nh!%Da6z zaJg-Hd)t8bq>(oK`m6seP(c*?UW7)Ym3+>z;o^0~Z(q!0jGkzA<-mZaX`NK6Wi`+= zqtL98iQhDhSWRN4Ma0*iNXGqlpUp(gO5`I|RtcoKYzJXyYsF$|k5$-LPl_Xm^mm`m z`0lbKO$$Wi1op*l1#-%me7J46*|)NnFW?;RKO9h6 z(w2u-`lXXuf;F1ksZZr2?r!pkCNlE{LaWg1!TtDZ+i zOrBa!g6v&Z1D$hZUVPkEE7I7Ir!u_1xNE4TAQ5y)x)SxuA%XCR@Xy&&La|wHnT84R zyZeT|bG*N8&<4wL5(TuO0E)NWcx0bsho1XGPvUIn)D>*QrJ!$c|T+ z2dZBDM`bfmSHi$i3Z{u6iw!RPo$^drYKtP4fAIf)-ZBoJ`v?0-Bq_?sC|c(~0{Md3 zODn~<|1IOb>@5HA>YjOUM7D!?9iFeVBlhb-8hc=Ep3Ec+bkmO*?`7xAzU;{};Y~kT zrL3kA+rz-+uBGp!i%k3OQPk+zPxW}d&g$marIvlj1e)a9~?hl9(cOWaClCp zu`GC;=2m>D&A_hi@xiYz%U~`4^4DvD^2LHme1Bch4xU*SY4+v7z8dI8LF31X-)Xi!$uMDFmx39)hP9A(?{{dGk@dRCK& zLnDd%i)~9gItdj!$7&YKjyLBm>mp*FS=Lj>+uNF^8Tk38l2uwt@$&M(A`{?<4l8+| z%u^glnrJ?W=m*c^x%7iSULH6!1I7tkGPj!79}dK+Axk5kE>c;R+>UtfH5YeH7>kKJ zc0G;J4(_X-MJmjgd=inRg3fK6=VB*xiVqL${Yz@D7Qt*0Hqmhqt zvu{x$lH~`_lUc&hyTB8ZrNEKZtfr9&(ciryoZmDdF%XeQhTDT|8QoU{@2+c< zhDmDC@{n1cEmIP!SWjYpx~{m`w~WEuXSEh7+$cWWHfRm=Eave#C02_2dXS+*?-cV% z#OLJvczIx34OFdTSqO;mYAcTEEVaBi%}^*V<^NgU+|@i^WmKUWUr%FhcQWbJTJFX? zll$YdRmL#DyNwL?`oW8|IS!7+GCdl+i(EQX6#%`7mR2u`H1Fv*Ru@4vqIS=AsGnLW& zHFY}>X_$%aNOJF2+lICihV*4vogqKI31Kh+45&dA|55QUxG`k2e~$xh_ATdk4Uv(4 zVU-%HlF4bzJ!tDIRPYo~s=DB11h8Z$-=9%ayFldIsv)y&ntsst8 zvxF?tJb9dPwiKc6G;BY}6GIYk@pV74Idqmd)+~!ymcKRwkLEFtXDNBplUl*U-ydXe zkyZ*n%DXX%46BLoJOoDGjMRso*Vi>)olS_WY?CIq!1}@Q`nr+a1a%1VqIf`XGO)@sf9wviQEgXj1Ey8i!;pZZc>wm69Z0000Px$AW1|)R5*=glRIL>Kny}3+9}hd&;4&{kwPEa$u#5j3V{&T_t%dFfH1~RZ0e0b z`tbk%WX{RFkOW<38&e&eMoJ8X0^1<<4H!;UE`HCj*hbCXFBS~u=!vx7Hy~8Az$%rE zRjly@8*ZjQM~ZGIs%JGlFM!?J-0bCK6bwlSuY6Y|(SJx%Sf55}E z_iRX7g&vb@3tp%mvqr@0H#=Ns0b^giM%1h&^?p`Mt{RiD-~_~ZGT-vMQA-zh9+DZQ zyf`627e5m@lA}YUPT*{&bbScDz|544xxU@$k7Fom)T3F`_&Z@#SvErZw&pR;O*;6@L zaJr1J;@K7kZf0iY=Dw-=ho>gb{&>s9So{F5!tt_KyArN61R5-0U~qQkF;Ldt@&afI NgQu&X%Q~loCIHuOBG>=` diff --git a/src/main/resources/assets/ariasessentials/textures/block/logicgates/logic_gate.png b/src/main/resources/assets/ariasessentials/textures/block/logicgates/logic_gate.png deleted file mode 100644 index 12774a59cfe84ad30ada334546bcabd493ab34e1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 265 zcmV+k0rvihP)Px#!%0LzR5*==Q(F$iAP5`>?%j(E?8gSeQrjgVHWlW9x~}UARfUKkR}le8WJCla z0%nH2ccqzuB(c`2>`hP6>zQmPkPb8fvsOtKz`w?b_+=-dB64HT!a0M<4&bX``kD%6 zb|8I|P7>~Zv{N&9^PSC;`3CSbu&LmrLOa9s@9uDSJjGfIdh(bn$@-qNs#EAbb0gK{ zUjH}2)XZ+aviMCwSvUb?@$}#K>J%nGe;56dO^^cEd*7~ZHoN0Ct Ud~mdKI;Vst0MiT)d;kCd diff --git a/src/main/resources/assets/ariasessentials/textures/block/logicgates/tflipflop.png b/src/main/resources/assets/ariasessentials/textures/block/logicgates/tflipflop.png deleted file mode 100644 index 63529375ac91c89126e9003ba9abe32cfbddb6fc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 341 zcmV-b0jmCqP)5gs499IJkArmk%_nsM@h*2KaT_a$M`2@VE76yLh^Oe@iP#;?xoN6;h$83z^H+>* z+j{Svb9y@GhzI}xKtx0&#<)K%#z;hjPct3-G1HKS%oxK`SOuQwNb;XlM1H~(dFNaj zUZ2w*((nM_wZ)7vwV7d*mOhT7h%mFBddZSdR{HDps_M7fO)tx`tm_&=*tQK3JpjDl z?*Q;J3`#Py*2&Cs(|n#zzvep(gXW!^=IeZ}>w0b)0JwDB$K!G7x)6e?i=x23@2$#d znyRV-03u>$tvmZcpLSN3B{L(UIuX&PY^0AdrgKmQ5veoFfQUJu3auw|9;=Z8wp8|; nDRTh(zNhP;YVE|fD1G_{H$UF?U6xZ?00000NkvXXu0mjf*HfBe diff --git a/src/main/resources/assets/ariasessentials/textures/block/logicgates/torch.png b/src/main/resources/assets/ariasessentials/textures/block/logicgates/torch.png deleted file mode 100644 index b460d8b28c419ec8b6befba14afe9b8e5ee019a7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 330 zcmV-Q0k!^#P)Px$1W80eR5*=YlTmWSAPhsFS$dNmX77KVE$Rmnc$1k-5+h{EDE0nDqo4!;OTK}R zTrUtXYQOtI70g%dg(^U8QJ~Z@fuGgL=4>Q1Rx&eT1tC;DhV{6* z!pv!|R#ZAV2Tf_;cTY`CL538WU%quuAoUf3<-mkGof9f>Xp+<>A7Fl57|pjDAjw?* z$nau){?U$D&BCK=jx`oCuX(cHrxY@)Sshbfnc4)y_wm@|KCd&#Soj(D*NoS6?Xhlq cHs1UG0UPv@o325liU0rr07*qoM6N<$f`qAyxc~qF diff --git a/src/main/resources/assets/ariasessentials/textures/block/logicgates/torch_off.png b/src/main/resources/assets/ariasessentials/textures/block/logicgates/torch_off.png deleted file mode 100644 index 18b18c2a45a3c2a1e9e74b80fbc40a8f67ab22a6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|$~|2iLo9mV zPB_SU*g$|KU6pmV$pfo9_1r5}c%KMI*!wXmHb1=g(dOveHSf0MA7yHp`0%Tl@GN<^ zTc0ngud%BXin(-+Ytn&$po@ADQXU_>Cu#FLuD+<#=v1)tv!}pw<=wwDK1}ePT7FP} m^7*z0pH1CFj>_i!o5U=sAROHPGiwFV2@IaDelF{r5}E)?yhrc= diff --git a/src/main/resources/assets/ariasessentials/textures/block/logicgates/torch_on.png b/src/main/resources/assets/ariasessentials/textures/block/logicgates/torch_on.png deleted file mode 100644 index 5401dbf9adf45e00f174f26b5bd0b61ba2aede39..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 263 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|4tlychFJ8z zo#5+t*g&9l|MOc1eO1LgLc?uYWO|#wh|S^SEESBo?kOp@Ovy1&<=R{Io82?b^XtCs zDOPikFsgWY&ETDrRw|k65&v=h;+;5xTkvWT#@z*>NW$zz5m^>36H0T|0&)AWW zut9VGBN62%Hl`IH6s~H{X$-E7U+Ugu_WY>kp7^Whgia*X``DN<&p!~Xxu@x0*<6V$ zpB?``xMR|7eO}_mRxyG0pe+mL8}2yuKh(^~g11d^&MVn>cU11{RhXH6S*ueH^bCWi LtDnm{r-UW|K96X- diff --git a/src/main/resources/assets/ariasessentials/textures/block/nether_vault_steel_ore_block.png b/src/main/resources/assets/ariasessentials/textures/block/nether_vault_steel_ore_block.png new file mode 100644 index 0000000000000000000000000000000000000000..dd5593c6f091c5c67c6dcd7175071aa8559d2bf2 GIT binary patch literal 879 zcmV-#1CacQP)Px&DM>^@R5**0SXM~TrSRf^$3?DRzD++U6N1y44hYd{E#agZCR4Tmb_vw#DNTM8oxxBjO=%*h^-`h;L7R!5!-(H^M2m&3~!Yky7D++I} zujxw?kw}E5q98U@l|SFUMT*79ELZG+V6jBD9VYq^``+a0<_pSI?%@V6sxw?9Xt7#nORP6o`YaieT0ne*7#_KixyF0{; zrco;tFjgzx4@V?K5xHDsW*QidM=q(d>3_uxeOxb~RBzI19+Fp8cAkguvRDk;r4o5n z#q&HKwcGr4alt2jN+F$Q>p0wPHoR=N$)rPx(vPnciR9J<*m)~j|M-;|?dvxd@@X=za1GrBBn> zDHM89u#?6~D6SE~F^VdTFvd8_TH2jC(~I3%tzU~~cg zpu0nqk29a0?(_5Z0oPkCI!VH{G^L#+q;ZT9A&z5WkuvZoBBC5&_083L6mY6I=dh~e z&M__u&hnhBD0n}a@YCiRueP6J08Dz5>#Y`F-nvC6NoW~EY79vnV*+_a95o!6A0F`D z;{o*^r;2rs!Z~tlnOI9!6udb)LejIHG?&lyc7^pB7E{@ZWLJ|JSqMg!vbi~6*On#UsL zb(Q`Z2NoQ{+5x~v5vbOgn8A!=PKUb;x;y1#n6{UQ-%W3*Yu<=jqG+ZEoEr^?qAKNK zzciktdKCjO?E}KQX_O7p@H>!SbO4)~@ZsKoF^>zVT2PQ!41$yd3&5l1yo{V_nZjIT zCyFp>hqNt-Lm6kob3`9=;67%|%^RLCxUWNE0 zFd|@gdy72xnDveO=;|?BhvR=w_6g(ucTYI%zebEn$wq^^i_Hwb@ZV1x3otxzI^3nd z_Y@Hk()QAaNw4C_B{(7mRbOfhlir+mFs7~aGsJ%mFU<3Opt@-xKm+Jf!a1TvcD$eJ zf%oH#JR734&UvfeBh__8)!#31BFM6UqrssjE==`+szo)&X;RB5^&YKWB))2`>iz7a z`k|N69BI%7uCYQ~>Vd=F3r+_;-0i#58-k(<@AGP%X|ES#V*Yi!2-7)7_xT^Ff>~L+ z%gV|+Zx2qem5Q~_VH+CIUqz4vQ5t3wTa|kcAD4Onglse*cP)xaJTx_20J^dyQzf^y z#x9&AcdqIKJDAW1#>FYQwWWG($f(aDN(<+hRM<6#w19>lILnWiSX)cy;JtC~v&r&t zQ81~bnW{wqV@!&*LRJ)HMNyJhwfe632%;${!ssw_nW$)P*n~$Dwa`*y~^qjr>e2aSz=k0NA-`#%7=A*})4qqYCM$FR8ej^dl z-m72yN&jt~M%6N&G>sXL9n0&hob>wDe?p#X9lxq)d3}}9;BQPSpkS?Ht*`BOzS`ip i_Xbt4)>9p^+WrsxguiV9Uls`f0000Px%nn^@KR9J%J2fb0B^t>7V#F!hDa$gXIIPE zhf+q2F`hl~L%X1`oD>iC>#zRrihINju&UtYaSAi)H;j8&2XKyBKH_z+Wiy5Qy33%|Nekp>z@Rc-)7L@|RfuRA!HS@?Vab;kfy zRz`-@*lYqDYHgdLW`; z?Rx!Xp0c>d_P0gEfhcCX%QLK%o7H?T3#xz~A*fd{%qm12qJ2aJ5X?L(2_Y^dnE5E4 z%&*?po8^+HpL2ruyNBm}&1shMu)f{h4Fi#(M-%uxD;JxjAnqXElnoig(zhJh@g+Fs(=kt{9>b7~|p0dEX9%cE+ zFdMU7u9}RgD*H>H6#2G}@%cEN60;{%)kXFB`FI+&Cpz~)XP?LJiJ*@U=<^UiWKRTh z;E+C#-4hzy=dpW2WBWXIPb7-N=;!abZd8oplKvpG4>clS)^KEd@h@}hgWd=l#P*w1qH tO=`8*_6RrgK2YNqr1~KG=ppO>jK!tmQh#1dzYTN%gQu&X%Q~loCIC7zT3`SG literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/red_pool_light.png b/src/main/resources/assets/ariasessentials/textures/block/red_pool_light.png new file mode 100644 index 0000000000000000000000000000000000000000..b3ff0995f10f228ee90a2fc987ff6791562b97e0 GIT binary patch literal 1303 zcmV+y1?c*TP)Px((Md!>R9J<*mrIXSMHI(>^|<$T_sj?kER2#E6F2xEh8TzsG#X-b;YwM!@FTcj zr5ithF>ztyS8#=fjfselxG`X&AwB?!Knz5X3^PE_^mN}_Rma7x>b`Snm;pyCsZ@2> zJ^%lybLyV^FZKC@Gt$pAd4N*G_R@oZSMbQUKXLfkCmC3c4d66vaUKGA4X=HDf)AhH z%g889w3+b&0ztu{<0m+IOS$H9p}Bu)5e@V+Md6_n zguXTOtzt3Lyea_=42&WVkOyH^D+X3^(`uA9ceEEkeepm~u5>IHKl+53qM(;$bn~1} zmXRBS)f!_AMr$;HQYh+{Mrn>B1i*)Y_Z}AlrS}Z0iq*1YP*tpqMx1~9P2T(JBo-9i zAj}j65AWDPFUu&bCAXH$7;GYs#H!&yy9pp72oOZ@A>h2H@}AN;M$R#)DlRN60C3~# z6|6zf0=+C-v-?h#)eb~*qcuvY$<9^FjYv#%!iPW*!G%B-BcQbgYOYM`%~%0$wU%jm`VI08!55l9ZS$s5FJ3?g_DocH5R0E7_e=K0uJ8-NQlmfcxK9vvvG9j74~ zYpo}_U(bO^6hv@M^5{?}%K*^UqW<{(jG#2XEHATj+csu99lEU)r10xz3YuwX5GSIP zhGq&@tBU2}kV{KT>?#WKP6zw`-rbCh;@~$Yu#s>)#<_{%zwH5RL_`1`9Y~Q9ks8zc zF?RXFV-!D}N2mALG){ZUxzW0wr!+LX)@%EebrUge!8C^Nw!||4kOw9YHgn$CwN`3P z4Y*SjR7^v%*DY+*I8PQJ6G2DAHfj2u$ZvN5Cpi!#J)1DvxJ+t>)_{_F2h+e+v#&?a zq)??kZ5^fP2)L?53$SX{Ekt*!cz4sD4iQ)SKd>4&!0V8i&7AJP8e1drE|49}B537n%JPQIi=O*`pK~*uRs+v6J>c6^}45|t%Ai+=W1uLTw7Zw)& zx2qXI<=o_6kiYvDBY_gQE+7hC|MYu?&+X#N?NB%VJJuL@S7B^6&a+Yq z?;NXxW%}0^uth<4W|q9$tD|NtSO5MCAB0|ShPnIh!}}1^>?w+Ze*n!Th4ILfHH82G N002ovPDHLkV1kM+TZ{kz literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/red_pool_tile.png b/src/main/resources/assets/ariasessentials/textures/block/red_pool_tile.png new file mode 100644 index 0000000000000000000000000000000000000000..b55d0c5128c01ed912ad9cb75b50ab02a385ab57 GIT binary patch literal 1138 zcmV-&1daQNP)Px(EJ;K`R9J=TzNCch4k~2O_xB;6gz~G=gIGf^K|#1V4a+-yti% zhY-+>OA%Z|6Hp{1Gh+~S5tA5ZdV0Ehx@WrYt>dC@_YC5#4s>t2x&JVl@lkp#->*r7zBaO ze)^Sf-hI8*{*znVcxTYhm2PG9YGaT&4szvDp*(xgM}bi$6g8B=7s%2t}h$oiJDMp|OsS$t?ajQK1%a@fHw~r2XNO$9RXK1_!xP z3AkqMqFLNw2r%+O5KtCQ!H8EN1`{s?PIYfkRdv!{L{I|`b8Vc(w|8N=IRbFxWpP}n zo$gT8#bZ6AOY4xJ87;U zY41Jq`)|93D58P|V>%v^6(uw=aC|goKA$xX9d$Lwc~4zcY;Ij-aL{Kk=(DkTj!w4+ zW(0W+MQ z9`o5eQZDjHLa*kth-@3jA*4C3>lyC||@#Na%-H0xtoJceTJ`;1|+(cW(~?L<4rAv{IBPjDU+S$n@xRaJT}P?eSSJjM9}z4m^iUNsl2uIDMvLkP*a zVO~|~xgdmkWj$ZTd8*$SkA}$ooo!omFQKZ)J6+5IM}q@4FJ9*C=l|+?T~$mcV@CUX z_@bcG+aT|Ban9kK=gB`0se{q&_Sigkj=B!Z%@sw#zwB?k2xH=-oB#j-07*qoM6N<$ Ef+R2eqa)s z!0?$X><+KKLZfBs^>csn4|01rFbN%Cy(j6y+?>uI#~^MIcQE5z`+v?o2i#m#>)hqF c6#kuJy1Ylos@gFs4QMrkr>mdKI;Vst07St)!Tzopr E0C(CPEdT%j literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/scrubber/scrubber_old_internal_cube.png b/src/main/resources/assets/ariasessentials/textures/block/scrubber/scrubber_old_internal_cube.png new file mode 100644 index 0000000000000000000000000000000000000000..42a6f1c4b7103cfc6f8da394491c87325bf11125 GIT binary patch literal 325 zcmeAS@N?(olHy`uVBq!ia0vp^4Is?H1|$#LC7uRSEX7WqAsj$Z!;#VfaSW-L z^Y->e-Ub66hJy_^>QiqtbO{`}@B84<(^L13Nj!gWZd+Bu%x_njH%w!A#3G>HV8M8V zQ^Aj+kf}r1VGco|8llGD`@vnX{ePkv5msS32Px(P)S5VR9J<5mtB(MHVlNnhUndgoF#`#RW6>#)L7^|5FjbfZd~P&#}Wzj4**(! z{{5GKj=>+V7q4sZ8W)ZL!(}6ZBmmL|z`&h}ZSG9c=53S5|Cvc5Y-5ZNmbf(ckO7Hd zo3F1g{(0YwEBN{P!H*EH>mnn#fQy)cGa&+35(cua*z4^|wDMlT=gL|jAz=J_Coc)> z<|}h%{(AAY`EgA)6t#H=uOM0IvJzRz94|>2xMtLyoQ;7Pf;^VJ(?u!V`3!_}A>8OS z?=>{7$f$xv@$i|H3?tL1=;&wOX@+jzswfgs8<|Szc;l8tld0Ouz3&GjIzWu2m4u27 zV{RMe#3_KdD!j>@v_CYr7p+psY}FbS?ODmzb3iou0Gx%U-nblXlX=(G+jNcUfpKmv zYu-@IOQq3rsh%8B$cWbOK|*3|@i!v7 zl5uOkQTCqG&3d|Cg?h1LWDdWyJX-x_I89sv3zgXb$ixw|LQ<=iI|j`}1v-%_lVy=I z?QQ`=m{80FCer!!sby0e22T-}dUomAU9HuvK+B+=oTtZ9Dlcpx;}y00!$8@eNVS8@ zCkN-VN+$JQh+Cuj-VmC#w1aQB;|$yyfrx`{eHf_Cy4WhpSMTj2t67q?TPk>)U1I1k zQr}zwR)hI`70!WqIT`F_)f!b@AXbnHRwiOtfh@>1dNE7C4mu9qEG$0cNL^xWbps@T(A^T z$fsXiZ5xSkMbxnA0@vR3A@b3v4vu`>>wt6l47y8HxLSMndf~~yYG4x1JzT8rct>JA znty{iVw*V7+#`24Y*0N-a^)2nHkZD3gl2fDO zNc9SQ$^mHC`9;?eO0GWNkN-vqv-_ zF|tN#_xC&*=mn=CD{u#oK66q;!L50;ADb$+-p9GF2gCwS^`AyulrO0|_<3S#$$KwEI&pgbE;tkDz^B7!sfz0{ zC!WbVcR(NfcV}qylDIK`-`JJFT6kQWvN+F-hb%4G>KVm#Pra3xlNPOmXLm!vIBWCa zZs58uB4)YFucN9Y$vkAsB+55?^cwkDId?$bi8H5xBN&UyGYN#Ee#Lk`*l2PMlYD5M z^|P(d4^&fXyQW0uy;!?y292gW&W={u-5(V)C)xb@)|$&+6``)6rTm^Nt2bm$PZg-q zkNGf|LPUsQQ*N8QlRI;vJWDaoz&(U&(9QKp-Zv^k&+4iKe9$(Bhe^y~_%+8@5BN4M o&tq4t15TfOy5F>^$2G9cf5d#g_Hr!!jsO4v07*qoM6N<$g0qB0X8-^I literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/scrubber/scrubber_top.png b/src/main/resources/assets/ariasessentials/textures/block/scrubber/scrubber_top.png new file mode 100644 index 0000000000000000000000000000000000000000..9f2ba1d8ccf1f3a7d2cee81ca1bbb51dab3293ab GIT binary patch literal 118 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE1|*BCs=fdz#^NA%Cx&(BWL^R}2A(dCArY-_ z&lxf@DDWKE&{S`Ince8y61G{F&tz}hZOIN)g9KLmdLzuV@`=cK3y`3vtDnm{r-UW| Dh+`jw literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/scrubber/stable_singularity_body.png b/src/main/resources/assets/ariasessentials/textures/block/scrubber/stable_singularity_body.png new file mode 100644 index 0000000000000000000000000000000000000000..e6be8b1e6dcec8352760154467b8fc52801e7aab GIT binary patch literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1SD0tpLGH$#^NA%Cx&(BWL^R}NuDl_AsLNt z&l~bGC@>r_IKZm);XR+A4DZQR3A3x`eB8X0InHzeB{24~Aj65-jkE26wlR3R`njxg HN@xNAG*viH literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/scrubber/stable_singularity_inner.png b/src/main/resources/assets/ariasessentials/textures/block/scrubber/stable_singularity_inner.png new file mode 100644 index 0000000000000000000000000000000000000000..c8ceaacbf2d2cff9cfea44d02ab93e07eee5a8db GIT binary patch literal 104 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1SD0tpLGH$#^NA%Cx&(BWL^R}N}eu`AsLNt o4>Ixsd50E!_s`{L7XdP1;6t8)0|Vo?1rNXip00i_>zopr06)MNHUIzs literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/blood_red.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/blood_red.png new file mode 100644 index 0000000000000000000000000000000000000000..950ac1144044384bc3c6da10a0ea79473dc06099 GIT binary patch literal 99 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|WIbIRLo9le vzoaJoIPbuiu*l`}3dY53JyHfUco-O3FEQpUTHa|6RLJ1z>gTe~DWM4feZ?C( literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/cyan.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/cyan.png new file mode 100644 index 0000000000000000000000000000000000000000..61d4ad38c80168c80152b1ebf771bfd9c66b2c6e GIT binary patch literal 99 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|WIbIRLo9le vQ$CdbJMX}lu*l`}3dY53JyHfUco-O_{AOGq_V(Waph5;uS3j3^P6K+tn#&fBbDmx=yr*OQ#o6z} z)F;e532#1&uX1V7ZPU{Eel)2=g(2p7_=l|qjD0FSuWcr_%y4OpeQvzeOGM(p1v42> dl^NR}GJZ*mEU(Coa0EJ*!PC{xWt~$(699%Px#z)3_wR5*>LlQ9m1AQV6!e{Hbo>fmLXxYZl<1ihW3$8m6N3USom!HT9SU{V&y zhxg#a$MCo-{Q!V#J1l}{2B2u_5C_8C8mB6e9K0WUW-Jnf^aGNEa}wip(kOg6Fa7fs zLf`2aRn;hLPs`YkQHgOnX%b#rL?VY^SYm5RJH~LkY8FnMMAEDCO~RYPV)oPx#(@8`@R5*>Lld%qhFcd{kI}i+EV03}t;14+ZGfXCY5ntp_Fi2o=#~299b1+mT zv?Z}qbK7&<_j;=?a+0aL0Z^qaAu%Hl0Lm^iI$+jjJxC8|AN)NZc@PpC!>PNWeX!3& z4bqDZzF!9b_UE0^mgOiB5gQyGa{!)oV>MBO^x}f&VKdQNV1VeDo07g6RkVrtVAoBw zbN7a!=UU+1?PuL=KD|oYPY!%0)+UC;Kf;=c_Zj~RQqd-|CCY1X*=3&`%o$&nFg12Je4K5cUg=B&=(Azu6{1-oD!M< D>2hQ) literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile.png new file mode 100644 index 0000000000000000000000000000000000000000..5e5b9faf4e4ad452416622c9c1c4ce1bcf992650 GIT binary patch literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|$~|2iLo9md zPCm_hK!L~k?VIqnw@ojXI!$=yUfgxyyh1?*W7qb)xw;Gq6JA;|c(C5Sm$kG>TX@yG zE$r^g&r6pi`YT^_yYAwbn0@H0^#3VWCLKDk@0I7>Rdsy33?`^-WX@-co$Nnh)12@R n3V&rP)GqF6@r-HAxgj?t!&PYIWfxDN6Bs;Q{an^LB{Ts5Fv&@S literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile_stairs_inner.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile_stairs_inner.png new file mode 100644 index 0000000000000000000000000000000000000000..c8ee90b9cea40ad41fb86c7c7214a7b1b5c22a0c GIT binary patch literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|mV3H5hFJ72 zoxGd3)quy<|BgDV@P-S?5o$?HT}GYN z=5P(ZeJwJNr&uktmb&X$enUp~Y$LmUCrj{F$vs!D?(R%TGi#21wzu`sfyU@F^FMLV jh>C98WBBlO`96laU9BF<%?=zuCo_1u`njxgN@xNA!faPg literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile_transition_blood_red.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile_transition_blood_red.png new file mode 100644 index 0000000000000000000000000000000000000000..ca85fc75ba89f7b1241b0de965871c98aab37775 GIT binary patch literal 206 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|Iy_w*Lo9l? zPITmJHsE1l@6N7y!TlqkQiuQX1Dgdh4x)^k0$jIFY1TcT@w6oW$Ay4vO#kCQ+?uy4 z?%=-H&*Oz;62(3Jnv`qQHCap}Ja5$}cKt9j7Wf+5^l3)$ky#HqpK!4m1ZlB_Pm=QS zlCWH?!ljm;Q{wI^VzX<#d4Lcr^NkI<8lJpz4Xj5Wdnf$x5B>sl6N9I#pUXO@geCyt CzDQ93 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile_w_circle.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile_w_circle.png new file mode 100644 index 0000000000000000000000000000000000000000..821d3861d776c94a6e6e7aac068ba6a81578fc3e GIT binary patch literal 243 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|)_S@)hFJ9W zPTnorY{0{C{?*$i&Ipa1Nl%Rgg_mq#7hpA;Z=>ScyYa%^&8;5!7pB_UZFM?#L5jg! zGhME)T-lyk=-~F}*A$*R?_d%-I8h~YZPvly`2FG+-cskl zs=Qrq*eAy=5PUP&rRkT!lMD~@@ZH}w@;{eh5!&5pd0)t1=)Li&89LsN4sL1FS^B`! rrb6?n5qsN_X2z6vtn-fio@@T;abJeS|MGo6hckG(`njxgN@xNA4su_5 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/cyan_floor_to_wall.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/cyan_floor_to_wall.png new file mode 100644 index 0000000000000000000000000000000000000000..bbb14bb58858a8f114402b4504e4a475b3717927 GIT binary patch literal 213 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|`aNA7Lo9lq zPB7#QcGW-d7X zm94>DVCjSEiPsNtX|r+`9?JT}*KT2YD(Mp^o4~Qgd^K-_#|MNR@3}MIm}%hvbQ*)F LtDnm{r-UW|#Whkq literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/cyan_wall.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/cyan_wall.png new file mode 100644 index 0000000000000000000000000000000000000000..ea096d3cbd1b70d0c04a0d6d6252ed98b6e5fff9 GIT binary patch literal 129 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|tUX;ELo9le zQ$CdbJMX}lu*l`}3dY530T&q@>pqooe=;^O{7_^(A+YoD7$+U^JI@Q3qPZ N;OXk;vd$@?2>>8HJX8Px literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/floor_wall_transition.aseprite b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/floor_wall_transition.aseprite new file mode 100644 index 0000000000000000000000000000000000000000..a14bc754635cbeb704134469bf1f720dc6f508a5 GIT binary patch literal 627 zcmb`F%PWLY7>Cbb3|U~Ktehk>ySZtk8M%~=Q8a1fl1rE}3o;~97KYR)HcBpKHnUJH ztdt@msbL{WSfD7kWY`GxdA>p85Ac4Sr?>ai`90_B^u!5q8PbR}J}ERph&EQNn5o0) zer)=G-7BZRN3_vYEyrfCbTS(GC*+JiQ_7!7)}Nhds|b-T^I)050X+p~IO(>-i|$-_ z8uY-Y?OFKoVuLd`RnWU(g85UO(Ai;xE@uw3I0|42et8GAUjzkf8o|Ny8<$0s6Qj zjy1~oB8w@SI3kE0YIq@q5jv`iqF{jn`Gk{9ESUt7MpTxXB;(<4p&)dkqGh1nC(Wve zR(@|OJc{p9pGE(CxV`ypA!R30{OHV?7`rdoox0VR8Esa>VdX?)n|1Hl9$55mT^{L8 nxpk@4g$>4JPw-)MJiR5+wr=qC?{9|kr<1JDcUs}`uk3#TWB07J literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/lime_floor_to_wall.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/lime_floor_to_wall.png new file mode 100644 index 0000000000000000000000000000000000000000..f53a8a70a2bab0230e43564836776d91e766fda5 GIT binary patch literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|W_!9ghFJ8z zonXz^3T-)`33Midr>mdKI;Vst0F*0MegFUf literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/lime_wall.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/lime_wall.png new file mode 100644 index 0000000000000000000000000000000000000000..8477d808f440e186e24174c61f9522fb7e040792 GIT binary patch literal 133 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|>^)r^Lo9le zeJV75%x`2m;L`alklBrQ!92$E{dMZmpFc0YFF9k!RT0S(hEIN8e9v+ME7s7BQ;Ma_4Q3`tavP`6g3)`(JY#JEMIkHp)0B{A{#JbXcXmVwN=H Y@kI4M_IgY6fi^REy85}Sb4q9e08z0(y#N3J literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/red_floor_to_wall.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/red_floor_to_wall.png new file mode 100644 index 0000000000000000000000000000000000000000..bb0f88bdd74117ec675056c787a04bdc04f8668f GIT binary patch literal 197 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|>OEZ?Lo9lq zPO|1}aNuy6f22&)rcwRY>Bi??u$#N@9+Shp1Ft9K_xFVdQ&MBb@0Fmk=y8r+H literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/red_wall2.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/red_wall2.png new file mode 100644 index 0000000000000000000000000000000000000000..8f16e27f64176ea726951de76c851f295a8ed9d0 GIT binary patch literal 158 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|B0OCjLo9lq zUe@MoFc4t5aGWjnVs%lei$24$MQtt9N_(U>em<$PTQ=rGK~;O#rOG{5Y?RV2f4x2J zYQlV9`DlkV9qyCo2>#Ctu&38QHne)VMT_n&B22WQ%mvv4F FO#oZjIzj*d literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/lime.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/lime.png new file mode 100644 index 0000000000000000000000000000000000000000..c1af956ecea3105f598efe688e873bb4b53a7564 GIT binary patch literal 99 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|WIbIRLo9le veJV75%x`2m;L`alklBq_!Zg7^l7V4G7*k>3ku86L3K=|I{an^LB{Ts5NLLy3 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/void.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/void.png new file mode 100644 index 0000000000000000000000000000000000000000..d59329cbd56c69938bae3924dc6903f668c9243f GIT binary patch literal 99 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|WIbIRLo9le uQxXz>oOfVMSmg3~1><729w~zvJPZuJ4vg{*DPBH6g$$mqelF{r5}E)=ml*#5 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/white.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/white.png new file mode 100644 index 0000000000000000000000000000000000000000..a449decfda83ba650f4418e380e7f90a7f528cd7 GIT binary patch literal 99 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|WIbIRLo9le v|NQ^|zn+bYL0EN`JFkRk!j*=DDGUtRr&wf`KP(LfDrE3<^>bP0l+XkKc$*s_ literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/uncrafter.png b/src/main/resources/assets/ariasessentials/textures/block/uncrafter.png new file mode 100644 index 0000000000000000000000000000000000000000..c3e411f1720def247e5f24c87bb7928ad8c3a269 GIT binary patch literal 638 zcmV-^0)hRBP)6hWML&$MLCqZ)O3%2VOOexr0!~9gmxdWihC8J8MN&91 z#*)^^UhpFSR|%rUA7$Uz7M@|dN5$?70{_!80JvVHsTI|n)jF$Qex6Sq1?STtF96K` z3V>3azW@#ZfO+fPMPN`fMQBck4`=#lFf8akt9bmb^a`V(kKi`p&=tBj4h(X(jdeA>o3admPB1h$!N#vN^g$w7A8a(A!ASH$LizV;`XC&^MkM+m z@vP@H6nuz&a?@b*8H_|9B$9o8iID=4=z~OWAF|fFUYeg3{iRv(2!0>L0{Rd}$%haB z?DBXU8|67*qekqr9q Y3ntjyyX`5rO8@`>07*qoM6N<$f*2DP%K!iX literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/uncrafter.png.mcmeta b/src/main/resources/assets/ariasessentials/textures/block/uncrafter.png.mcmeta new file mode 100644 index 0000000..e96a96a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/textures/block/uncrafter.png.mcmeta @@ -0,0 +1,6 @@ +{ + "animation": { + "frametime": 20, + "interpolate": true + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/textures/block/uncrafter_bottom.png b/src/main/resources/assets/ariasessentials/textures/block/uncrafter_bottom.png new file mode 100644 index 0000000000000000000000000000000000000000..9d57d10a5a16a1db961726586a2128c5c22f11ca GIT binary patch literal 611 zcmV-p0-XJcP)Px%9Z5t%R5*=glS^ycKoo_)%A+SEwNV@ei!>(Cg&~klH-@gV>K|!;WLMdG(@h{y zx+!X1yHyg!wuIhxyKrZ4=!Ib(mwV^TIcHv6fB5*P5(0piO~YLJ07O-ZwcXUzwg7`N|f2Ls-$pYXdDYrADGeZIa5QSs^Zg>g?=g2fMrDCe zw<}oJi|xb0ZUIZDhtA<#@y}b41=(#_bMzs$@?GQSlhNHNkI;qS`UD;BG()N z7%I^Y2IQv2G+h8_nf$ILvmNe^hFomcyzE-c-Hu^Z5mhB3s!IHBLF#&1>%&llO;#BX zuB#oZ5mZ8GSH1i7ld~e%#p=zuX>k*ulgI$K@3}obAvdkPl@E1&bX?}r*D8#Q4VmrW zcP*o`U|ejdgm~`6+_V6=I~tPNg(geI;XaW8lU0V>_xjB6yY?Ae0ChHtVlvy&j$C?@ xoA_MI8#eXc2ZtsamBoLbXk2Wx8&xQY{{mejCn*iI_xb<;002ovPDHLkV1lGj8N&bo literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/uncrafter_side.aseprite b/src/main/resources/assets/ariasessentials/textures/block/uncrafter_side.aseprite new file mode 100644 index 0000000000000000000000000000000000000000..462c249d9e4391a85ec4f5701bbfc2ccb6599036 GIT binary patch literal 760 zcmeyt#K7=iDIJ`DhpS^Ertr1_LQAnBc{43mw43jc0gs8oN6tTN%<=)EEJ+EDS(*xBDrWy0TlxKq z9sAa)t+R^otlDR7uQfkkfOlf%!8x!0iEnqF5nHyf`^PQLgcB#{{5CxCc*_0mWqhBD zr+%_J9Q@AcQD?h?Y(mG9i+TU|G_HN+d(LxD`eaiP_GM9LQr|lA%M`LTZ*IxH`y%?i z#mvKdBXf@}`|)wMt#`#q@sD*sXIwovw=C++*P6X{d!$P1lWVNaue9Yq$eLTGw}=1E lRrbmq{XZ)`^jiP` literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/uncrafter_side.png b/src/main/resources/assets/ariasessentials/textures/block/uncrafter_side.png new file mode 100644 index 0000000000000000000000000000000000000000..af72d660757271b8dc9216867ab557ddc10dcbf8 GIT binary patch literal 586 zcmV-Q0=4~#P)Px%1W80eR5*=|lTU9FQ5400!wi^O!<0H4F6Iwlt??!=_r1J#?mg$;`vgj5m%!e> z;lHd@4!06O^4K6T9@Eoxo^5Y)cm*y8e0=p9oB;qT<_o?oD96}%H)FvU++K0wL2bz@39z~WqP+xf6CzEG82Gyp@?gDyo5>$Nl;Q4 zeoKPZ{EI=LKV-0a*bFbS^{N-(FZw5=X$`^|P*O;ziW(mJGnpnMA2gh25P-XB&BG;i z-JOjJc=J#w0)zt-c|sO}Mte{@pC9Gr+YwsDLsW zfo0NPSj39U2y?&jk3ub3X8`oo)k_lAtM8~4w}=2}mN{3%KvGW>F*5l%d4bi6Td2-} Y-|lSOT~do0^Z)<=07*qoM6N<$f^PQ!*#H0l literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/block/vault_steel_ore_block.png b/src/main/resources/assets/ariasessentials/textures/block/vault_steel_ore_block.png new file mode 100644 index 0000000000000000000000000000000000000000..0b6e5d7cc69ff5853ca10411b29f817edc48690d GIT binary patch literal 580 zcmV-K0=xZ*P)Px${z*hZR5*=old)?QK@`S+cPw0UY;m)Lf=#S$t*!`$BWysl2`S>g5XjY5X|}sR zAYhe72&Ax!D6t5s#9}!#;R><2X>x@`gqhi5SO^EgS*$a;)x74xzWu)Mz3ip^!ty)H~)_@jwFczh-R}H#yFg-0C@8BFTn6$2q79m#yBD&1VRX;l$@V` zqDvQm-Tn0jSQUzjijL^;NJws!2B59f9BVB_ammikbCjB+bzO`GL#D;F9wqCuo;696 zB&O|L73M99O90BUA{q?&JU-+`X+9ob)b$Sq0Jr*?0rt7=4XjtU-BADi?F;W;jj`6! z5uIT6_4QA@`K{4twDhV{N_zbs0B>KvV{Ppr&&CIQJvs_|_pPUCT6YO|&(-hW=d!Fg z**hSPyZ6qowWjUeRB9d`(bd&=0GzAXJ2~XO@FK0PtryFGi%AlPcb}#yMRAF96>;1R zH{-jCvTUQlXsyK<7Y@uAN0x2iFV>R-NGaPx#+et)0R5*>LQy~t+Fbup*ebB(5Ra#Wi7wiEA14EOBCJhY)luj3)r#furt#h>929 z`&q5MV+XN?obdThB18m#zoyIBs&&&Emm*yYy4={!VXv+-39JQ3LI@<0Ey#lOca&w2 n4C;p0Drb^%VdexKn||jXS^G_eCGRzl00000NkvXXu0mjflIwEO literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/gui/absorb.png b/src/main/resources/assets/ariasessentials/textures/gui/absorb.png deleted file mode 100644 index 37d83b505fb64501fc6389244a9148186c9e5137..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6946 zcmeHsXIN8Rmv%rD9+47J5u_uCA~h80B25LPND)LtN+_WSh=36yq7(`6C^d9N=|x&7 z3W)R&O6W+5^e#v>)Y&2L_k1(gH9uzNnxDguz1QCRti4yxIrqKpbqLkJqs4HN{Uihe zVYqcu-4Fty0wxuN?gZ#8JhI^Ak*A^74M;%;$2QS%8UpE?~>bpEx3 zx3hrIjk8&$X~#t-drx+Rd|##e`_)(ODfg7x-R9OYGvspF)~z3RmEu?In_A_CANtE( zB)PovjGfi$4g7K#H2_&vvU^fHotJl&k53-Cbu|>htM(Ns%K~K!W4$n8el=^D)o&;6 zvX1(b?P`>CLz!rLZpq@*sE+!^pq>h44Ez1_iXh*PbH9n2MHuFmmI(|>$WChiAs;pS z{JXmPr7e4~Q5>O9u4Ml-3v_hTCxf@Zi|s-3xn+DPVTd8M~)cmfsG)ae9ab@n#H1ImHgS@0tqPL>sJHH#W^`S@gYL|{PoNO zRp^2a?>e6MBx8ISWM!=V3DHj-bx=}r)4QaNtxw};Pp!_QhaT)usBhJen-+=fqV`6t z0S_*%%rxoyC`m>9GZji}T4bLV91`+e_W8wv_ONds`E%v!ShUpDsUF_+g~lt+vT#K~ z53EG;bpmN$^T!ywo0NpHxj%dY-xb*U7^D(g$ge)}!}+OPdKF!gm|Rn+nqg>23$a)A z|4#~!H`J+p$HWSr9)MGVTbb3qc3C3n_fFzJaX2oj%rw0Ev)X);<`y|z_;b|{ktw^` z>3166Bc2a;UF74d8k-YvcaixLUrAs~`|8Ng;RWu;;Ns?KsDYv3=}<(;P~#~mVX(-? zW`>V>AhYxX=`i~g6k7I93=^7F#>!Uh19$pMvav+j9zH_zocGQ8Mg4EA9_{Mg-8gJ{ z75-;{>VP~4&+Ux{C@r7;$SZ2qH+tG1^sgWO#-owRkVdAP>H61E!Fcoq#^Wt4shS+! z0}?RT=c;@%6Roprj!%%O^P2WAPJC?W3BR+y?~Y8p>AaSxQ78ssMHUsdg_!#(d&u}9 zwrlP;6%@$*blCBM=O7p>;I|J>*`?z0{JRbj+hNm66w&?R=`)Zfz=uwlx_ zW*wd}zS)**i_cdjH zH3o-od2V8>K_dkQ4CUyhf=pR9S<%#TVrtv$Jb3_)Q1W(>OmH29>B@HWD0y%88ra!p zYI92`Lzz$P4CX83#>Pv2cEC~VnO$t?5ddL=jTg3`c6|X z!Xk`Mg>bM^k*KcoAp_gm3vqKH45G5NSJL@qDn|Bl&=G?_J=Sw2<*omxi$&;?;$lAK z<38_q-yWc(J*QSbX4%SAt4LhIxEG#N7l4t**RpJtg%1R;V8l}8m}Br5kxos4_1~B| z+a}f;wix^cq;UE>(nOfphj*lc#yw7&7jyNhJTLq+^k@UNz7~gshMe1f7Rg)C__E56 z@RBuH97?#~DMg_U--8A^K|XWY$|edq*n9~B)KSpPe#%`0ZW7I8&-a0oezDAJrce)< z)rdqg7tJl4Svo}wE}mwf5KQa}BXKr4Y>~2d6)BSB>*ZKYA+dL1>6nl#hb3bQHFa__ zp>$<+awRBCnZNc_knfo_{w!q`nUnFlb`};v;X{(>#tu(cis`xEg9O<8L?06eTglKg zdV%lr&qiLwx!6_S@ct?uGJ?sIt9zl)B>8Je^A3N#tB^^2(2*rd9l6ZjbS(H4Og7== z5lg*U8(+HhOWCLAtf3_h_(`*+kH%FNm+1@)w^fs|L1}$U)|w-%XO}pdE(d-`VN0a{ zA*riGC5v6(e{I`ld7&dv^OcGTLN}zLY-q_t(+et8c`bp3<$G}69u@aLA&vZoCQ0#p zU3Rf2lUNugEi&s*W?zK-@D;b&=!*B_osY8Kk~gq!>P#-3*mC3W+A`9egm?pPdinMS znF}S<)Q!Y(q_l1CPvB`9wI6ochJ@@{W<;yHPi-%tdc%XC9y3z8{kwpRkuQd^^})%TDZIV`KNPZ`Yy-#$fP-1B=h#^puz z6yw=s@j8F~4s8&fh2hbOX^}#_gtWA_V;in3Fj8gIY4n*jdWIa_hGtq^<-P7j`s>=B zY7Kr5G|#M-q|fhLV*LVhB#S%FJ(bex>g*l*4yZ)U?i*pSrhr-6Xo~}qeei?3h;+Yz zmQ!~H-0rr`G=yfqk967|QreOMu-Rq|l~xb!p3dfXqIQfy|JwxRE{zWPU!6A%?GY`6 z4ZKcrKJNf}X(3Ko%ZApEOiy^?Sq~{}szR&S^JHT-Genx?M2#p5{WCx2xdFtXLkq)L z_sI2H%U!L-R32kZthY-Eq2CH+X?fs&FXpX_?`jpn!lhHnl-98=aDYrC$;8t0eGi8_ zFBqYgGrj$LtSjtnQ9s7uy$_00*>k^~NmFrgg8^dlmMuLmJ-fu6JCl?;HrnNhGGZGV zD{I%Bc0{rorEJM5cY0`I-IA+1YP^)Zz*-4Q4jL=CYcPZr6jM@oPo~8&A!jL3Ki5u+ zoe^!fGcxRecybg9*^-l&vDFHI>R7wP*6lQyF4u9$m-%)sma z@Jzw(gNi~{s!EbE8)s47^o*(9lZF#{>GYG&X51Ai`Hg^jMUY|2k%4l zpj(1A%6tcf@D%?;Y?kf8B8pZ^VEx;qqe1K5Qe_Kwt}MpEFJ)GlI~kuLCi&r=nW4PY z6-+)6{pL0tIX#$VTZ525(Ngj3JZ7d#OP%jgO%uRifEsH0q#aaoj(%ZF!`IgrsHM3s zUJB;rr4j^8DDWW)k!oacW&Q+Or(f~+Kz zkRXjXMIj_sR?qGGVc5r zF&-Ws@tAxd_Hv?^+}7lmC>Nd7l{K0l3Cxq~h%*o%riqk-;*qBMyH4_#jg|Bd<4MVZI|3?$NQa znvIQ(NwKl;d@oGm`#Y|#qK6Z#wP_6v>bUmyY0x3^adS1O+uGW4!op$QJw4f_rM)}P zFbr;R{QiI?QrB$uXI)^@yLUG%3*#8M6k99{2h4LN&z?Oiu^Hu+%18|?D3tICk4IfD zaU&|PJ*#fO|1dRx!sMGHxij^J)a$JNzQMb>zG$sEyIf8btR?D&hK5dU=W?6L!dwql zgH`nH?f>}NtmlhHMSnycPbsX~d2{1Ev%tlR4u_V&X>Gdg3>}S-fWT|&1lA>H7Vq`rP4m20YFa2)yDlfe3vU(JTn8=Iz~fHH7xt#3d^EbPHt`txp@F9E+`PyvS~x+ zp!2X;ng2&ASrb2`Z3ZhnvD-`v-Vs*{HWj^da4qEbQms#DVx>O^z0?rO60|_?GtuxD zz^(#vD~}fy;DkWTFAbFd?ecV?_i}nhMiUSlchxfQY$olR*x4q^y2-F#xZr{e4-YT( z_3Wg73pn)MyVGjUCqF#4iH?pw4=`WoxwGMzo|A*ani?BxWa_2L01`6JHDOz;1#dum zsZ-w-aGSmSS_3@X(EpB9(f26H2I%=u$wV-AbAhMptHE0) zjSazcbz#4+$cW14zPBJ_sWdgD3d%!*FUR>V7@3> ztam8+dOgnMt(aUpJ5_9LDbC5qSku^kp!EyswH6{aa^oKYb$s0y~@b`VIWE3V3 z`G?N#Z7HvPY%=5jHUq5Oabq@Pas_tH{yvoey_mciK-P4c4n_5293H|GLKiy~HLNP46Wrxn_ zV?(pdi7sh>r$(hGpiBWCcZGiyfh7)k%k;dv#>S0zGjwJtYa`;_OFRuk%4jf8MY~mQxWPwy&+Mg4DE?)1cNICH za}lMmM+DW1&PRe3OjajTU5}%EL|ndAJ&)hhYEG-i0Ymw1|A(^1-m1b%Ea6HQ4`fWuKbMaO%LbJhI7B{;=X8|k9 z&`Ymd3t}u=o@U@&IL{zxZ=0{oU2UM;josEH-E4Lcm*dYxFzS#0y6=p9{l(24eIg3r zE=Q2PW_=c0J+6TIMRwx2!73z-jC2tOjg3@%(p%p}zl{S}vomr<#S<^VuG7&{<@952 zF2Q4Xj37N7L9p`B>^DOtN4T2X6qY!KANiDdTV`%Y{D7@+KA1d;L{~b_@kw1GwwiF< zOT5O-)~72o zMc;SD-g(OZ9ZyhVd_1*!@eWt-dV*Wd{B>)%6Ly{C_hI!jlb-okulv%RH}QE@vu-%~ zNlTHRz4#RR*G?2SaniU4m*O04zf0c}9*K2-(iywt&NsE=0c@?5si-o%93e@`n5T-^QM0v>u^$mc+vEGdjh7o0G#W9C9C&83dPn1?)Lg6&02Z()2qnw*Lecz8RsM-Qs1>lv$#Cww z43v9VljWxdnn-EtJW#1nHkplx{K?ScB;@$wQ8;8+JRd|XclWu+$KnnwZkQA*VJalx znk7xW1gyNEIG94gNOoRHrW3mu?%ExyU!|HaL~z$!rN1U!{&J2ak?(dlm5Ca|;9BF= zRso75rBA0$qF@@h3Nxi&>;j*f2n+55eDINIe6E1r8&!ez4ca#&WA@MdGy<3NMOhp_ znmYP(`Wl|P(mtTFZUrB4_Fa_+5}puCTd0Mv@Fl%BzpWdY9>?8{Vgx|_J}jnx<2m2i zu>#bqF?@xYLQ%r$(+uVc28XqbpeWeLB|Ovzb|Q*-V`{ofO9{7JoWiMV7Aw1oCjkKVhe4Y|8|}sh+t)Y)XJP^m|;w> z8+jyk&pC{wKnEcN2VRHl>wt`Zlv5jTaH3CyiFV*{-3MCV9X_M>Cb<>;cAi+i!?gBf z>dm$%%9bdy>)^AL?*W|)gLS4TC9bcn`D`r>;qg}^Pq4spOS_`=|LD>&R&Djws0fuRY%*TNsU3Iq@7trpiKFmD_4 zula6mvENPM7f7GtEUk~Oj|Z?56@|lR^6!^>xVuZZjaJ2AFw+JW)-&)d8-GUo_Jl?t zn-vlLSC?mffo}h?lG@#E2#1S`iOm87boT%5U<(6-I$9>KsW)#0-{psoaL9SQdRfQADd%w!q`_cr|C>P8Zj1+W zSHbyw7xT-V-MrY!30CUrddj4WK+JYU=_#{GOv0yeG0{Lx3!4_8<0~->9M>MdI8~o^ zj23*8<7@5g%mgwP*V*aat}f~Q%L1rrDbNk*C<8f-g)jC@6 zo?2^uN>2}5TU&ERg1U$Tma(xr+eB2Y%gVv-3I$LZ8G;EiE(tDfKS~{st}(XnNRq== z%X!XRJ4#{*gs{s{aU-_euI=1WfsrSdJO*2hf!R}1o~bEoOiaws z77mA_AQ+2{-C7>DA094uOQmEyKY2PSw_YLFib=-BeR2Yt0bfXQL~n9sGjZ0E{MOF- zMWdnYx(9d6=)O1d`Eqo{^er!{!<-q$_fqn%t0Ag20MZ9r@!MV>=W0hX$le zOkMFLesroV3mwu{b(mN23&9EbvkjZQ9jX=Jf>`hue1Rb~s~kvV_Xj;XuRb0`?B2I; z>qsffr{B@1h176X%b&#KZDn$BrVsrz3NM^+anD}g7%JIlv+S({kq-w(y#TR@LLmG1 z3L~k*Y74^}xQ82oUeQZc(#~myJn;e-5i--id93FonAFgPv=igxA*;(_K4;=Fpk{2_ z%>GjROFkzPvTF#=^MhU}mepPC-}B2pMvnjg{{Hvxz~i1jD1OOA0A)y`&Su$cMYsgaBvW)BsBMR9Yj3qU8 zl4b1tEW=nsc4OW%)9-n%=XtO9djEd^c;|B8=X}q7pL4$FT%XV9d~Ppp8fde#@v=c6 z5O!T1xG@C60ICcS7A8>Kd;A_ri`i}oZt;*M;)_G^>t}`GoSjN#}^6XOr9;gwoU+x&;W~3zU6i#yX@pQ z%h~ICH%gsML<2Ir%yMV$>CK;>e$Z{lakn$aw%g9Y)1|d$z{Q^ntdyHAgfmi$>jhkd zHxfz2B9!>|C#erHiRNFavrge(Cv~hi;Qw&5G3yw}4y_II(2RM*kS$sFwKt-J80M-a zf?>pd!5?d7-2Tzv`-{L2X|@`YF?q%I5q+@r@GO*B5BoV0C!^5K!|;OP>CCcSVMJep zV&H(-O`~}$QtQAkK}O>%neV^g+Y^e-xT4P{AcUc8LJ4x}qDhDtVq*|W^KvN*i$%IR z2oDbYA%Dv8b|fXWuR$`I53tc+C+Cc!^r4os;dSI5R*hL56k#^Lj(o0I1f@6lWc1)m z%oY4pQ7v{QQu)o;DzQGIka{hk=fc#o|4pq#CGlEp;+yI-@!dJ&OKXaL&b_0@Tj$VH zwF|Dhx7tD7VbWD_OWyNR5`4d7DiCTp{=Saf$f_~!fYKrk4ko#eW0IWLAoo|NP`gr3 zisq^(mhC|@qv#J4zdWC8d8>|4G9$Va|C&I%tZWp6I`X|+P8{_h1Lm`{LWN$76i>^H zcr+y&)#El)O>`Tg%}!bte>_?AG^1vf$mqUxN?8MH>9znf*e&-`^C1(*G-$z1g6XVy zfq}|?a;3qx{K?z#G#5cFJ7_#J)d(ej23lA@jSe?HXu z{m@AuhyL_qJkyqZosdnI!soGlY((VHg!g)ij2sCO<+Y>!kW|1UDjJM=(So2F4L`R{ z-@fy+dOt(12Z!{~lvyo5ZipcDm7j=h2&9~d-PswOp!ZoEEIkn`BrGhvd$MZDUUs@7 zql44WrENeB3^Q-S(nl8k=tXHX2yCq7yXc}R@1;>5#`GRMk z2f^UBM~JiU5Wa&Re5%w`SVYUx>y!qyL2%KS-+|Xgw&Ar$nr>MFrHHQRO4J^nrOQJ) z`L0x#ha?Zk0da?8LSeJ+ph>M})mSl9I{Wg{nlGgOXUNHPN)dyNXlar6#GEtk9}Tze z@xK(7iPvoLs5Gz@3t>*&P{JaR*5x4Oo!R8J)y`snU$vMoz0gN#(agqA9{UY2jF70l zw~ve|_eXb|@%q#b&VF!jyJq*er|R4G`oR`wbhgpG$=cbcS5m*MZ?UU*YmJ%~_`JJU z>%A^q<2DV0hxM@NyDxykVQg+p5EeIR>f&3aS!m&QWK4B%wmKu@^C+I;4Kf@88&G=_ zc623uu@Pm++k>pGwEuh|(t34rgIoJ1T_PlIn}l#}*%D6UdgxJ!31QL0gEB(McsCk*~hohS;58 zTV7RYOq;D}sTxE_^ege#i_cHeGqDj;Dk8Nco%4*{Lagm`UzT*OZK4T3SSq74bbe3_ zgzeXl`^B%x`>DkezH8?J5vn`)a38m;8VfYV+UE!H7f8);2Zw;#2o#Xxu52$%E4>v{ zN!^skho4nRzYqff!3f(V6(N7vV+qM^)ztsG+yjF zwM*qlk*N|;^qW5B=_4CFdU5eH`5a9UMx(=0m%X^t@!+;i3o;{?4Wq3+qQ9 zfrkEXX<(|#hYidIA~UcD=VPm$=^wp{3X+L4+N84gF;!A5w_W|XzWDh zj}Jo$)82~vaY+B4P2!>=>l=HyhB~BB{T!e@l|JrN^9&JLqpkI1W>L}go)e}9IwbWJ zq=62Sn1nkK`?Q9V&)UMt#l_{v*4N*!=i*X8(;;kC)!qCLAFk8fMM6S?vAOxh-MhDM z-#!nnK(wQyV>TA6^$R$Xo`C_e$jC^#BMA*M|FEz~ zDJ#cOE3N?*in}cc)W)T9H1yp&;a)JQk&)5gzGHsgF)u$qC_EF)4;QJfutT6PiHpx{ z4!dgW>av1rPIk6Pb*F89etvdgAxB6^$R|8YZ*OmNC_CTHJ9k2Ff4HM-ZVqj2ZOy#O z+843ZG6?b`TKP!6eEIVGz`z@PKrfOgi&bG~XMeoWXPQ-3b`n&L@7_%Yc_nJ5B`5Rl z5EN?zzkJaIqv||(@Blc8fpm3!ef<*K7Vh|jgtvKl7x$jzbrdeIj8+rPatjLdHQ#bh zt||=;4T%Uw+XIK;enf^aF$88b=7i50;&1+Ii1`dog8DG+>VT* z573nHgUw1E5pFRF3ApeBe|uOQ>)MEWmtEZ{!sgQDB!rt=ad~H+Np6fmuF=h#_bE8w zN^tJ8F$hsEwvd=IUyaaY+^u;v>i)WpXdH^a>F$L%)*n4R!DbSn7frBdPnTvib9x9s zj&X1tdbWZ4h@=r4SfX0hOM=noxL?>t1CBK}hZiaTAj@fKX&sWS3JhehwzLqx8%iWk|ctIFGXXh#d85yvOGv$TOvSpG%s zi8_F6Y;I118eops;=q;M+}x&8B3O=16QOHQ!Omm2(pAyFv3+xCm}V`umPez8PCgs{ zquOi5Ge{<21#OV7M)p9XpKexFRiW0Vb%81jSD`;-QSS)y^MCCxu%LAttwMKx{~lxS z>fpe#&|lzAr(_YtF?gZFwRPY@B^yigK}MEWQB+~oey z4tA3p5RvciA3p5;6heIZ$w_FnaPdG;={4;1N69~1yHp2^ay56E{?jXPZ8V~=Fhv4u56i|VaM7c z(1hf>FQqv2fD6A^H8<9^>+lI7>LB+AM7ci^gK@tIiqnvH(M)Z&L9~2ON)oSi-~_FJ z7gu>D;{I~@bj4(TwAk8Yeko(iUPgoDJ0`FvKfAuUCm+YkZGKsS*Ex`~K9#v3Ge$)w z&Hli!^0G5Q$}I%q5pL4%c0ut0m7H{gjfnZOGIH!zd{v^dOd$Gn0JB&=O4{8vC<22K zg0ej*>-AS>woEK86Fx5cYNRa_AvH5I6RwpdCS5uHT7#(1G}wKga@@OUE`YPP`@Xjp zQTdREAaOIQQIQwXwViqhr8TU2c--N#wU#XK)^Dnadsn)8@z;L8OBMQ#^(*%uZk*&} z$J%?mC=IF=7>i5X^%U{VYWNi)MR~--t!jZU_o~>{3MNCX(_XCzyE*1ocIKtg2jB@< zS6XA(jsjN;9`qPWK+(bYIXJO z@i;3lyUx&?dDzbx5T|uAOSk}Gneqr!wmfCFo6zt)=q;DjZo`7D_yb$XSL3%^< zO6sGJ>t8G3BuVJ+9^xyjh8%}R9-R4REm+qoC!o`DYd`b5*@fE82Q7PRvn5Sf@}G{_ zpLQQCQk zn)D%?Na+*{dvj|>fYIdv6Df3bdyMMlXLKLZR2F=H7Gp8h0q(##zq_}5&@uC`aq?!E z18OuCu38G&jK5r@PZ{^rw}SEjL(63N;IjDMz<>-^#YSIJf0n0p`8Y|pXD8&}y1!K< zHPa0CHP?172>95QWe-TQ`3TZp`w-@!&=t}ax6Nxxws>X6L?k?XVk)2La)B#n{<&V}Zvl&hM$=7OFhzl=aX?b`lVu_bD1 zYw~-3F)fTZpMyQIX6dh^>*HNXtdGZes*P^WP1H&cQOT(9Xy|yl*CF6nK_PrOuB{5! z6caDj-vK-QCaJw7t6_Oy3U+Qj3O4f_$^zVK`~3;&_^|P+A2jaJjNwS%By3@^5W_|X zGvBUQNR@U?E?+-PhEA_JUtQ`lYABbw#-^4`cW8XFY#PpT*ly$RvTC#@ZPQzXF$A!&Fdv^z>CH%{ z9@(nDY*oPydvAgpje|)oVtXIvF=4IQWoqg^ArDnzl6N*N56G3zR2Q?HJD&*9SmoY@ zKG2l|EjFFAgn+3xfJo3DkNfokn{GSyO@^!TG@{iFk}|xH(U2|8TL+_Ygdo?)gIZ}k zLOf{~t=|*a+a6G~EZ=Xw{;V$QDqz*3l~WFDN+0^_u2#TlUWUZ$?m!?8cUsl8Pg!;PCJ{y5<|$+2w?X ze>5xB1cu7)+sjkJ!vB=*7vUq`3k4;PeV1?>{TA2Z@H6HKEsT*&C%6W2?zwUb3ay=K zsiILZHa}JKfZrITkW~T&9y3*n2tL+Z@b)>Aa1IsuOIpG9`1*?dJ(wq z?mu*Nl*x10M&mX z0D$-D&P?KKy_}zGZPK&tjLIH!oNPyry3KumTaS?Hy1MuApJ&E!h08S!4TcJrVT|kv z+cu0OONiz`iQSFP_MBU@^?`>`{LIW8{4DL$#-^rWz$RrD7D@rQC(Ao=MmH5BJCf_$ zZ7~AucPuOxaPKNA`sv^X?g&NMAo^?;)*X2NM)x0o)UVC7!F<{hrMGC%!>W8RE!tcx zu)+_~yM%^?727m%bd5y`sM3#zM<~>HGwn0q(0P5pClMkQ$L0pBR|$N6^t0pitG77Z zU@38Ags%J^cszcf(lx{0b-b2-Rv=|s{S|-*KR+*CLxb^Ca!z8z1p^6-3IrAbr5dZz zk-Yu$flb=^8<^&g=2P}1NpvKOoC8R{;`v$km(`y#l1e SHU<7a4$-}C058Px#(n&-?R5*>*lD!IoP#A`v13J`VU_(M%5CkqRK^M^A+64vOPqcOkN(2ox6)hpO zXxO5I!)b_9D)=+jJAJ(HJn((zz~97jTxmJ3EcaRyq~?J=#~4m9M^kxPuY~GF8>pP{ z;-e&@EmS2Dmg7o$u_R04MhHOf_TGZCN0vU{Hwe!j{qd|)qM$qo5bQSJBbFsqP&tKH zP?9DHAc<~YL6$zzI|cw*5))qhTJUk*0}$ViLc1Tf0+8lt`jON@3M{OUm$ZTMDU|9z eq)|`{{Z?Lc>UGsoIdd`q00007bmhz6yA38E?>E`qWwl$>$201Nu!E&fSjYkK$8s0L cOkVwCeB^BNeM_sL7|^Kzopr0JtSueEB3+>nZbGKapuj_fKrSlL4Lsu4$p3+0XcD=E{-7;jL8QWSrkPUFPOwILwiZi5{_rH zB(x=24LT%dTS!apo?*nXdxymA9Wz!Mam?JY!(#eUX30}}&oVQ;mhwFEdY75xx|ETp t$Msp~%Y}>%$w#ibI4eHuVoTUA&ah8|@5SN`@7zF6@^tlcS?83{1OWO1L0SL+ literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/item/cobalt_nugget.png b/src/main/resources/assets/ariasessentials/textures/item/cobalt_nugget.png new file mode 100644 index 0000000000000000000000000000000000000000..48d673721c213104f4282d3665e3b467324788c9 GIT binary patch literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPGa2=EDU1=0+fx$MC^l*{fiNV-HW zd(Ys!l)-$mQP!2iKq*lsjw_ND7O`tAX3=5_@s?p=*z}lbYt6}X*FZLSy85}Sb4q9e0Avv-WdHyG literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/item/compressed_obsidian_sheet.png b/src/main/resources/assets/ariasessentials/textures/item/compressed_obsidian_sheet.png new file mode 100644 index 0000000000000000000000000000000000000000..c5aae79484df4e97c20bf7b2c0035392356ab774 GIT binary patch literal 543 zcmV+)0^t3LP)Px$*-1n}R5*>5k;_ioP!vViefT=pc4CL534#bgJLnXNf9U^DJL<5YrjUgA?cCEz zK}tbT_Vj2iZS4d9k=b}9phPPx|K9X_a59=no}S`e!R7LrB3m6v-V|Ieuf=H1uKI;B zhOR5A+bzrdi@Yl+vXwaN>4%PFR1ktN5Ku}}&E(mg9=v%68 z2PiT>BZ(54L&Mk8o0knDn@AQH80`=VJXXI+eStNOWR$b7*YpfLR%_Pv-Eo7H$%S~E z;#^7y2kLf1*={k)fYQ|MBgRAwLqjn>W4-;Mo&|9<7Jv{A_;^Cwm(0fJ?CLdHJmsOf z#VCt07Of21@>T(uCs-?kALUH^93cQgWMa^o&Hj#lXgGupP?XKR`a3jco?pqxdV&P3 zj_8LL1yt>h$i{5;KlwDdKxsvhEZJ7K&#iB+zM(R|kT^$7)UP=MVyEoKv?urpe+3{1oL~A*r8I)f=2k==uhu z4O$zTZci~j_Zt1y7ByNznPl7kF5Gs3%+)8aEtw`V?Hy$K)1>R9IamBcoaX?8A8 hZ~ai5Nd?r0z&|;yz_IHap~e6J002ovPDHLkV1kjI`cVJ? literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/item/crucible.png b/src/main/resources/assets/ariasessentials/textures/item/crucible.png new file mode 100644 index 0000000000000000000000000000000000000000..4c1cb874fba750902cba6f586452b9c836f59846 GIT binary patch literal 164 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|;yhg(Lo9le z6BY;WU@I!tfFBWXZs`$>HmaW6pnVe|^}1VYXUHLk@@X##sfD zhcx7-eY0P*W!}Tb)7P_@8X6cFeE3{o45SR+?EcvB@O-;DkB&j#FVdQ&MBb@02cFU&;S4c literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/item/dark_blue_brick.png b/src/main/resources/assets/ariasessentials/textures/item/dark_blue_brick.png new file mode 100644 index 0000000000000000000000000000000000000000..608900ee7013127e89489678814197606d777520 GIT binary patch literal 280 zcmV+z0q6dSP)Px#(n&-?R5*>*lD!IoP#A`v13J`VU_(M%5CkqRK^M^A+64vOPqcOkN(2ox6)hpO zXxO5I!)b_9D)=+jJAJ(HJn((zz~97jTxmJ3EcaRyq~?J=#~4m9M^kxPuY~GF8>pP{ z;-e&@EmS2Dmg7o$u_R04MhHOf_TGZCN0vU{Hwe!j{qd|)qM$qo5bQSJBbFsqP&tKH zP?9DHAc<~YL6$zzI|cw*5))qhTJUk*0}$ViLc1Tf0+8lt`jON@3M{OUm$ZTMDU|9z eq)|`{{Z?Lc>UGsoIdd`q0000+u5GdVsxCY68E%hT&o@so2noMLi|>6)Wf>j%?U#-{n7swaKZ z{o^YnIn%{$nf3SO6KwOBq&)S0uz*u`^?Zi;9s^w7vrWVNaF~ zAzTetgzxzLWm~Bpp=}zGG?CkILwNr)!QHBRJNQd3-)hpG>BR7SRTftso7h*oPX;R5 zCHk8_L}W4er7HeuuH!mzr18(R9!2ix@B;5=3g&AU{^g$@ZrW9+o$qinrz0}>rXPx$5lKWrR5*>@kugrgKoCWr6C0wCL9nSz$rUW6q2d6pI7Lb-j*=^+p~@L(BKZoI zXmArbk{1%$j%5n8X4gj4h-p?kn)m0=4E*nSxVdd(6}G?CczwYB-(9pMI-saDn>_Pk z6}Fo^a~R)-A14Ldv5@G1+fuG+}@8!c|e=1otx`X$plI1jKbx;5-8tv?0FoJOcbTB|9H8ilULSQ!( zu*U#8>n4}z07UxbKkvYFw*`%;$(wLa605MiJdPx#&q+iLQ!xs{KoFb_zQM*f1O&xG5JV9lEQnyGO$sY3JF(DLTwpBBh4Hc{ zLKX(X-OTLl9szom{kY>l+?)Zo01Ck_!}kohOvDj;N0S*AuBJ(4-&?7_iBme_g5k(1;rm54P#EPF|UJK25*N9-kNlMIv2&kVo! b&(yo#xuQYJsmNr?00000NkvXXu0mjfp&o9n literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/item/eiab.png b/src/main/resources/assets/ariasessentials/textures/item/eiab.png deleted file mode 100644 index 128cf9cd514dbdd43227ab50b12ac0dafd01e728..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2553 zcmVEK|00001b5ch_0Itp) z=>Px;vq?ljRCt{2n@wz7R~5&9b;geCI&m7Dq;ZP_D7;V-SwI`9i=vb$8zfl78^ktO zs0$Wh$86c9OBO8Os*7yEY>p)cP4+D5@^H*Ma&fPCx36?f_6 zSvYwXPF!&_U|Uj)Sodb5?&g3`f#V^jkOctazz8q~{Jj?i!$3dqJ>cbD6x4uK;1Tdf z6$LGqxmjQc_=<1qcbUsD2C}H2i2uGHH~|a-XUlZq z0I&qC0V}{WuVmF*vVp91@Fnne#|vuS>^_Xyu$E`bWo{8@pg~;CdDA4_Ta*d;Ld#`t z#lN`*G}0s;wD^P0ME8`%c(;jm91k9M;K2et;6Z<*?wV-vtcI9k3I_diFIp2O#oW15 z(NZr8p8ID%aIA`gmdo5dHqOwR%iKIA@n9a|!M{-7pQA4HTS_boUIeZnP;L6Z5j5bh zmg&MBgn_U4ZVaGt7{!gs*9u%qld9yBn;zGP&6Aj=EG@V^94B^4N|NIGpHh{%6 zN#82Ugz%sf#ur1vAq&83QETfI} zb^p1t0)T5MUj9ZE1$n6ZIdY~NFyeEFQg|=}e1SIDRp2xK-6^klgA!{NhS2~%_0O;R z_B&qbrd_yrgV)4Pp zXd#UQnI#;uVBL}myxT-Ojt8?Hc#zTq9vp4d-6C4bJ;ew6&>9$}$8diDA<=%cFIHBt z?5(KLBOc_ng8`t==MbgvU>V3z5}wl_@W=`>tXa5^JaVwm{uy}jD-6s0K!UHqy zg*YCZ^7X`Jl);$^cuc`_v=&Cu7H?9_oj;&m7ONEQ=QM`G{k;*M=u%!q8|onHPSdZ@ zXeq4aGWQrEkwwdCk`8yum8qe0(rmH8nuSOH?`TKcZ8V@~ip-V;w^4lXz<>S{;p0=_ zYLPiKh*PK-J&2GfLH$2il!?_77rYhIK$0fuq{Y9B2XQ=@>%fCKdccEwjk=pb`$3Rm z3Wkw4g0?l2V!rTi;2uJxu9A2e3(lb>omaR`3N7U&|K?HO_6QhGlXRdc6RIC9(C$BI zTfgbD?%4=+Va)h$(P9jpFD$UJ^tXaMa;V5`DY%O&c*C?Sn)z-$T4W9lV!ojqq+Q8; zk+ zF0pABE(7oQ&mW_~T%rP?On4<9b+jEuDBVRNJh+G=ls8cg={`W3r1hdqC|~%s|NO)Y zAF_l)7OY!Rfp?o|$MN7|2OeCa2Rt~_sJrv1ntdq56!XT1{&^Z>374_pq!*k<3#zgO zm%U&@B+Lon!3^>VfK$Lh%ay^-7ji$Cq+Ng;N8b3LxW$FW;2r-QLZJEua_NyGqov@C z7d${a9>_D8yG3Se46Y&sy5`Mq`u1VqdXYI6ALO~hEBG>i6(5A~U;+(VR5)b8x+N8O zw~2Nf57MokFZ`iVclT+pN|R#V_)Fx8mx=7oF$+LP=nrXEw<=k%fKuP!@kmHPehVg# zO6~!P%WPn^;)BPY@dv(b7=cP+j+ENm~}=@jw#=8aGf94lq|_wr1fb+LgbBf{G>oc7Pw3 zQIMbL{1w6ZafC`A8oXUy$hY=sFEj?EXsf?(l>|4dA1wPWJlU-$ZoPicQ@%i>?(#}@ z65@#|NNASMs$Z=lFzKZ+AJP$)h~ z{pb5$Sw`T9AchAiLgsmZ-T0t4JUGAA_<%;;T?GDuF1wkuS-x--UAOOPdw<=LrlS z$SGP9^@6uBF7?GMXt~UtM}5Z&9}CqFEIi2l;5hJ8qOJ2e%8}{qz`}# z7#I3FX|qxoC{FkjFlODBwep2|l=|lfbNf)B(L^EdhVyr;3o9rtdWJIi{0>s-b#NVB zojAb8TTxK*_X}6CZ+@&%@xF3?i7CIlfOY>Mc3*iBLD(Jid!{bokOk|ORN&nv+HpLX z*(x3kH|j3Ks3n)N0CX_5h~PaKAH*y;jWA&%!V|S%6y*&2>G6DF2_+l@!0T2i&{B{G z7oh&Hb$(g4p7~WBE8B%zD5$vO|IdHhbr|FH*HSP}yOs!w4f@MkkY6>P zrCs(I#Q%<^45;RmXKs5@A?oDr?-zQ*gT)R!=(;hVQ_LIpH0mzJC_a@{0Pqtum1`k} zm^ diff --git a/src/main/resources/assets/ariasessentials/textures/item/eiab.png.mcmeta b/src/main/resources/assets/ariasessentials/textures/item/eiab.png.mcmeta deleted file mode 100644 index 5cc283a..0000000 --- a/src/main/resources/assets/ariasessentials/textures/item/eiab.png.mcmeta +++ /dev/null @@ -1,6 +0,0 @@ -{ - "animation": { - "frametime": 2, - "interpolate": true - } -} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/textures/item/empty_spawn_egg.png b/src/main/resources/assets/ariasessentials/textures/item/empty_spawn_egg.png new file mode 100644 index 0000000000000000000000000000000000000000..b650de1ea52d9c6eab6efd3701f7f4fb2b0b0d62 GIT binary patch literal 489 zcmV z65aqL*bpOQC)nta0f}stIwq5sq#_L>32<%W(k5*x&ye zp@|F-fp|QIWzFLIE{0)}&3{;Dap>x9?7Imv)Q2CZlcr! zgTZeW7neeTZGYkK&4dGjK)AlXAPAmWSjb^nSsown0a#xCJodU$ew08&aGV~Vr!dWV zJnsp|`58gJy!?*qy5V_jucHtXi79SwF7UkP(EHU@9e_^fp2NelP!|cY(`k`Rrb4mn zzTozH56Hw%7#mQl9c$h0Kt^G$t&Qvjv|7JNr&AmqosCgPzUHXP{#X40%^0f}Z&MsY00000NkvXXu0mjfVnO5A literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/item/encased_singularity.png b/src/main/resources/assets/ariasessentials/textures/item/encased_singularity.png new file mode 100644 index 0000000000000000000000000000000000000000..216367e5f54ab4cbcf36dceea9f042eaadd8a8f4 GIT binary patch literal 307 zcmV-30nGl1P)Px#?MXyIR5*>Ll06TCFc^gIZ2*IjV2sh=;G~0-gE8*>d>40jG3ew+QX^i^Grtf<{O)iS^+dyi!-2(vL;)Odu zYk?>n)eTmgMeQ>KErbyU0k_8qL*mA_w5cPu8&1g&*wzEog*W zXjXugWx}q;-ypPx$4M{{nR5*>zlD|p=K@f*OgPluaIF6jA)auM7-G$ssq)3~_r?5+5XRVEpDve#5 zKu`z-0zQC$%DdVN;xnwpa5e~EgdMoK-hHY0ul+=G(Y3F1b}qHvfcsm+54Mr|i6%HHPc2}8 lhnZz2w-c+Z>u}xn#@6R_Msq*5$#*#@6=#Mr=dgiKW#XmbR*F zZGBI9c=YcZ8*qGl_kLysO@_W2014 z?SEFmiyX!*mQt-h9;`c(&%n&=92|VP9%QoBIrSI!q*((P7&i6UpZTa6w;Jdf22WQ% Jmvv4FO#qzbWiPx$dr3q=R5*>LlD|sBP!xy16qiB}%w!kQ=u`#8SGa*zx=7}B=%7$=QV{V8M9@hH zm?x0Xkj)P1ROlF5=~&VyFc~w}Atvc<@elMsxaa=PJ>NMe99Ywo+`GP;uSB08lof5s zHnL>1*ShgezILb*R)?@C9d!0di4+?1b_t5H4PyI zqaZ-99>R77v)PiyEoIJU9Ai6<1j%%OFp4k@1K0N@NQsXT0B+|3x^LKy!)F{5+7_X0 z;ZA3Sn_JL*ODkpPVh5pZ!OcBDTBUO#Jt|Melxq##>8vQW{1bs3vUo2~#uA8HgXHKK zUSEn1Ov}z6xzictS|k0wlPfzrG}~e(OfHsS6K;9fEpP* MUHx3vIVCg!0H;bK<^TWy literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/item/green_brick.png b/src/main/resources/assets/ariasessentials/textures/item/green_brick.png new file mode 100644 index 0000000000000000000000000000000000000000..857e6fde2f95a054c16570baed7f2e076c541b4f GIT binary patch literal 262 zcmV+h0r~!kP)Px#z)3_wR5*>*(mM*mFdTsKFZQ98jvm0-S%hB6J9!s37srB=2T%l;7D-=mD5+^p zAEW-KCh+@cNZ@bAj{@aKf$HvyG1PqTmbhz=JeH(~XXCyCHq;$6BBr9gi14F8Is1_L z!x=>Ya#aH0oGVmP;p&Cl(i_ppgbI+yv<}!JHU!YU2G?BZ$QS}BZ}}&nk_r*dfcg*e zSXz;W#U%rvxMsr5PA>r{Z?kA3LrBBc5zNRGWKL^SzlZ8x4x-0oneEP)Px#;7LS5R5*=eU>In?h*QSa;Xexh@B!Rvv1#7(`~Uy+?-1P5&F~+?Kqz3ss(Igj zhTg5);6gPI3Kr1`q@A8{qH7(6Z48!IxJc-32ualNlJk zd}d(a;l(PCnK*16{D5?=j*x0BQ(>of8AYhxZUe sv~?L6rccDsjN1SP2Fyf*Mf2bQ0NpN4!Rl$Dz5oCK07*qoM6N<$f>gqJ-~a#s literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/item/light_blue_brick.png b/src/main/resources/assets/ariasessentials/textures/item/light_blue_brick.png new file mode 100644 index 0000000000000000000000000000000000000000..86a7526c899cce115e59f0f97ca603f8aa0324eb GIT binary patch literal 280 zcmV+z0q6dSP)Px#(n&-?R5*>*(xD2%KmdpF?_f;obtD zP;_cUe2d~DLO0BC(Cgz|f>Z=h%x3_YEcdvck0uYDdO0>CkqQAe*61Gi6p2I8Y3e~n z(h$J)xPAs)&!>>f0^nQ%EPIy-Ppc^a=k;7@+u2wEA+`1+l7u9D`2{rsrBtNuJ0{;1c4aO#-M5sS+VbA5skNCC z$FjhKQ9{o2W~B1jMNCo3Y&Q*Ag{kHb&2ragr}TkEeqst2JbZa?Px$f=NU{R5*>@k}*reKp2J}#YBk2mOwnUSv*9FgCK$~{R0k`f{S3??BeFCpmeaf ziA$Hb>FVO*9}vM}H<1!Vmm<|du%;AjhI6n+Tl5F$x7~5ybI<$T!Jn_b-i=aPSB0_- zz{$oS0858WCM}EH)IIZO?XI5wUchX287Ty|X>xm2<@LcQrfHal0YEO9RKMyxuE$j- zkx-?yu1aZLWfBRMOD0uwPe$ufT35|I89@fV1FFw08llegfPv=Jfz^vmiFlJF)yar(P%m?4+e18W2@|xiZ3uxnR_YCn<>-MS&fa^(eQ};L{ zAK7;=MghpDYK$MfM17G#w)h5sZA$KZAMh!ZZMNp>0Mvs3+cY}{FOhNd3R`n^q!1je zwTWq32WH}o7`UFK5r!PBwb?xW%HIWWJ;{o56CIeeEb^&Z=SGNW8k@&DZl%)o526V9 yR1Gk|11SUm8|Onv5vLwJA%!4lwR&g%AL<>f^nTNTKNUd$0000Px#$4Nv%R5*>@lCKYfKpe$Cu)|?7xiL343^F&2%w*DF^B=aDv^XLb0wXz!$-v+S z20;9QP@S*c-S>Uoz1zW`%Xadv5w+FaAAo7KLYe`#lZ(j=wmxFMXoY+N%49Xwi-A;! z;rJ^=X-cll$#Mrk@2~+N(_*A|g3y2X#5++&7ufpsMzAKC-oQ8(>&SwzK390x(=9SB zMw${4iW=_jUp$|0aCQ~xok*@hQKd|7GB;KLs*ZVPj9SgzGOZkE)%lsaAwR7Px#+et)0R5*>LQy~t+Fbup*ebB(5Ra#Wi7wiEA14EOBCJhY)luj3)r#furt#h>929 z`&q5MV+XN?obdThB18m#zoyIBs&&&Emm*yYy4={!VXv+-39JQ3LI@<0Ey#lOca&w2 n4C;p0Drb^%VdexKn||jXS^G_eCGRzl00000NkvXXu0mjflIwEO literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/item/partial_item.png b/src/main/resources/assets/ariasessentials/textures/item/partial_item.png new file mode 100644 index 0000000000000000000000000000000000000000..b08decaf4efe1e3b106da479df4f1e80589c0dec GIT binary patch literal 385 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D%ztvy{FLo9le z6BY;#FWnwS0 ztd;ZF1A)YZ1dHp=7fwaDKWm?^@bMv=!Dd5)0`G_BEV0I`7~cq-S$^Wchu=B&`n#U7 zyFaT+FZfXRkLjodZ$esng20u8gdb&9lT>`(z1$f2ZDZ4=^ZScF)ix&1kg*YS`C>Tt z&oiYKzDbw%wCZhtceB)#?MXyJ+ToX_Y$?(g84od(g>NS%G|s0G|+72F={P*WN0Z-DPlI8oBH}d+-hhNf)5xmfB1!AjMG<RpNk=fQ|OX+^~an0QzpH35B3wx z`Z|;O+UD)HcbO$j4qUQjZn@&H<=G_09v`-aYuVZotiR;tGf2)`F79$-LsdhFmczW_ zjM)7FLBfsfrUE_%&hzhR@mx1tpz9TK=4#iMKiTgTe~ HDWM4ftM^?D literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/item/raw_vault_steel_ore.png b/src/main/resources/assets/ariasessentials/textures/item/raw_vault_steel_ore.png new file mode 100644 index 0000000000000000000000000000000000000000..228457def352ef119af06f30caaaa35a44a79b3e GIT binary patch literal 630 zcmV-+0*U>JP)Px%FiAu~R5*>LlD|(AVI0Ok@3lwo+PmY*&r+%s5Cb^SaD&D;usFClkhnVX7rDsn z%%rQtjY!@oKa5oo(9)I)rG--3p4^=aB|w6j@J!$2oA;CF`#ulcP@+A|LU47taAAL) z!tKY})0z3l_ojI9@)h>|40_XNc5(3>dL2x(0m&ybGP_&A*9^xEg{0mUr~D~PSPhfP zZaUXF6SELZJbxzNzFWo`OE}hPh(t2U$1hoq1CLP4ms%JmV-^L`#PwYHbtyZyeFjkg zR)6NO$3}>%5fa@AmX}viV-~4IKb{qJY9~$Sv)gbKH43MJbN9jceERIq6adADI6>e! zx5w_VQz+6uHHl(c1fduiGtO{k5;|0>uIEf>eQ1hyevSfA$`ug4&q3}No-S|?4>8mT zNBeth*6SQ?73uBmAr?1S@lKrG+UeyKG&4%RuuC9(><){dGeWIU#tR@M6cpR0^gWNR zYlujQmZmzF9E3Y!GS;KYdc8`iQpIh$Xx%Yx_jckQR1pDKg9Eg*2ztXqzmTW`P^;AO zn;Lf9l8y4d%$4@#*2WIUfy&UWl(g+GS>8Lq=<7o<4A3KtWTs>q0%ZY2>BEX+nwB(t zRVGI}rFv44mGyPjUcVt%uAm&(7*7q#;1hd| zTPCJZSj+uDG+O-5=be9cy$uDtj QtN;K207*qoM6N<$g4|0Y7ytkO literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/item/red_brick.png b/src/main/resources/assets/ariasessentials/textures/item/red_brick.png new file mode 100644 index 0000000000000000000000000000000000000000..5148c05d5ed8a05b7b21a117d65a3a14777bc930 GIT binary patch literal 272 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|PIN%D7sp`fb%nO&Ujmcb{6o19>m+j<9f!7n?R{NY^&i-BP2a9O3*OBc3GhKFE3j2I; zf&S$a@w&<-< zOcdGtZLe3s)F=DzsE8-(K6YTpx|Cz95;}n`-pxSuzC&8vtY329wr8t;iQdV4^+|bV UnDsRgpsyG_UHx3vIVCg!0LD&beEbRb=`s$>4#R&;5gv1Qe5GH@*8`{ s<&OjWH;TLQO7O4+%$d;U7{|cyI7#j3rCOh*Kw}v^UHx3vIVCg!05pFvmH+?% literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/item/scrubber_frame_piece.png b/src/main/resources/assets/ariasessentials/textures/item/scrubber_frame_piece.png new file mode 100644 index 0000000000000000000000000000000000000000..ff45339e266fe387602e328adb0f76cf7fcafd4c GIT binary patch literal 129 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|tUX;ELo9le z6C_xf`6W~(|NK+twn@Knq{E+iSC!ZbwHYeR&F(kqb$$sX9OoDL>Z7t-k~iQ@YoLJy a1H&I_0i|EN)&B#HVeoYIb6Mw<&;$Sq8YL$H literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/item/singularity.aseprite b/src/main/resources/assets/ariasessentials/textures/item/singularity.aseprite new file mode 100644 index 0000000000000000000000000000000000000000..49657ab5bbc8a7792748989b12360667c8321ff1 GIT binary patch literal 615 zcmb`F%PT}-7>D1%n39;4Op!0S?aYkZOq5bKGZvaeQVipgSrEy!rd&!aC`2yBMm8+0 zl!c~dDYhCGE{$YCC>tina|ZDTcu(Kcd)}|U-}9YLSDeVzwn5B1N(>^>&iXB8`Y^Wt zJN>`zj?>?sjj>cC$ELANDi--CM6y*etS+d4olYB^uP=v}eR(jv z)d?R%Yw-Q06t3RZLjRE!mM!%_cXuK5xO1Sr!U-!Y2cXqE0h@ZRp>JJ-EhiCpd=Z5j zC9=ME0H*@eu-os4jrATlSTzfG?RFS$@WHdOLpZfmJp3sX#3VJXBOU$9*364h z>05E4@l$-2S(0UV!{-gAL?BQFC)!5$SI09> cBVO0T&ayURn_O_@lw{r{$tWW2@Ymo#D#yAA3Dyt> ZhHne_xyl}!&jgyn;OXk;vd$@?2>^31CY%5O literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/item/super_heated_crucible.png b/src/main/resources/assets/ariasessentials/textures/item/super_heated_crucible.png new file mode 100644 index 0000000000000000000000000000000000000000..763ba9fb598b1283c0957d5997b70f8459b28061 GIT binary patch literal 158 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|B0OCjLo9le z6BY;WEStr>U_FWLjH&pvn3bcd4)78&qol`;+ E0MaHhA^-pY literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/item/white_brick.aseprite b/src/main/resources/assets/ariasessentials/textures/item/white_brick.aseprite new file mode 100644 index 0000000000000000000000000000000000000000..dd548119555e01ad710e56869048fad8e7106537 GIT binary patch literal 682 zcmb`E-%C?r7{{NZ%_AsH5X7OhH;D?PIvZJxjENvb7KDK!3T-Th?qXUD*^(?uXrkzPb1L5igzHYo5yf@(rd>-0G*(LccF@P2sC^TPZ6yyra35c%{# zlRO?JnuwfZZ4@(WnBL!*Ze3SOe(IYoooeIQ0+z1Qk()y1=^aY_pEx(|q+3&@L>+=v zd&^Ny5%6Oson+MJwj?9^vC`Ed=Jlt}#1Q`p)f! z8fJ(KY_q<*qTv$U0DasM#~NjPk;N2E91+A0HN23*2p!ACG_gQ|e8Nd4mP`UkBg$zd zsZ6+DD2Og6{a2bUDAzq+Y|7fo5R;$suks{UE)NHMYWqZA)^FWkGBmQJC06#``19h@ z>a6+e%$`J9W_(BcwQ!az(iYR+{YWe{+)s8H$MwJ%7Ufwtu`N7EV(IN}3b4#0pCg?rl+_He(<0D()g&SrU z<_F%_-1EUk@xJ(v*+1r8*{8ns?)Fy-#nUEp?)}Gbz3@wknfNksUj^$xi3F8Jnjva} z`_#WC?Nka~CC2okWH*D%;fCcw?r3a^)s2C25X$H_juRu^Px#?@2^KR5*>rQ#}j9Fc7^sIdv;Ic2E$>+{x14CH@ZE)sM-=pAc|$Jt!TzD(WDZ zu?o*Ael%%77axS=?%uszE(y`UA>NH3jbYY$yAw^@s}!U$0AO)DqC1Gt=4+z!ZY=L7 zi?F<(XsxfU8+V$HCfS#439R*%in8)1I0b?<#(1-G5{zJPKKp30vx1_msNU-jLcP~i zlogGJeX0*-)5$COaDLjR5-Fu!W{}3{4x-kpGBE(ivdqcxf|+4vGrkf4 z0A_|#%HKp6lv2p^oQR0RFtp;{_ifIbBne3=NeJQp55M36R%MEHN}>n400000NkvXX Hu0mjfd@h7w literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/mob_effect/seal.aseprite b/src/main/resources/assets/ariasessentials/textures/mob_effect/seal.aseprite new file mode 100644 index 0000000000000000000000000000000000000000..e8e60152e649207de512e46746c14d30a00a5cfc GIT binary patch literal 864 zcmcJNUr3Wt9EQ)TF@sqO7FoegCb5Kau27a6t88AR*|bnnY!2PT6|QC4ENv8$X~8ZM zt+cSrqG(BBhLO`0H1JRDB5FywIi;E@{sGf%?(5x*^s2jlhx2ea=lgh{ALnGPB*fOp zBGf-vgpeG}rJ{u8+ay64|D$Xx2ysnu{HYuStjFX~f8?^b&sc|2`e%o??8Luh2nnOR zK^b2Rszp(tF*Oz((rp8+^=fdU>lWyqjs|az%0Z1;0LE11g9&+&U`j$bC=`o8sq_pe z$hrh(`B$K^ z<{((96)+k!u!^8xiUpcL2hfK*#9<9(_(B$@(1ardVFxvMK?+9D@wqSzETDjVgd-WT z$V4F05XJK)QC#=mf&$@?L}jt+G>!WAvG6&*Wz)r98Qj@o`Cg5_ZoDRWO$QB#lQ?%i zo6$1eEK|trmI`U2+j%9phYp+XjLPH78YVlPs=2qH$~$Az4I_%5-w&8~l{8l?W+Z{? zL)FKlH+{HWV9nj2+CE>9)cPx+;kx2Yi+HowesIyG+C5qN+GuY}-a9XPzFojc)`&ncN5w&C7=zX397 B8?pcZ literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/ariasessentials/textures/mob_effect/seal.png b/src/main/resources/assets/ariasessentials/textures/mob_effect/seal.png new file mode 100644 index 0000000000000000000000000000000000000000..08d078e32830d55847bcf71e329c057d9e255ae4 GIT binary patch literal 414 zcmV;P0b%}$P)Px$SV=@dR9J=0S4j@TAPj`4AIY)5iu#9~qn!JPC_kl_T5^pC2AVXTON(PXURX>F zJ(#ED%Ab2|HN{WRq=<;oX~sMy81WhNG9%xjVxyc&Ce<1>eX1-ak8N7FHHB?W@H=7q zR`)3I5y#B+~+P*x~oTW673cse3O zwu5BAi(c?pA|yo+U72g4vM{&`o>FG$f7Nk!xGhG z8a4~>v0s83Y&j(DY?&0egGiG~eKnb_Ia+)U`Z91Jcn2hUz0gqF8_Lj^0lU@232zHh zxNsYC4p_sbZHRQ>IpD!Nx!Cl2Yoc(r43JP0i(wYE`@?kz-QCCt(+_N`-yy+!;ev*Q zpM-V>TJa<~cNDX|UPmwZhiy4S^ivxrKg}+Goc6t74}6}#0N#X0xT^VU0RR9107*qo IM6N<$g3d6q_5c6? literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/libzontreck/lang/en_us.json b/src/main/resources/assets/libzontreck/lang/en_us.json new file mode 100644 index 0000000..6edf1bb --- /dev/null +++ b/src/main/resources/assets/libzontreck/lang/en_us.json @@ -0,0 +1,9 @@ +{ + "itemGroup.tabs.libzontreck": "Aria's Library", + + "item.libzontreck.chestgui_add": "Add", + "item.libzontreck.chestgui_remove": "Remove", + "item.libzontreck.chestgui_back": "Previous Page", + "item.libzontreck.chestgui_forward": "Next Page", + "item.libzontreck.chestgui_reset": "Reset" +} \ No newline at end of file diff --git a/src/main/resources/assets/libzontreck/models/item/chestgui_add.json b/src/main/resources/assets/libzontreck/models/item/chestgui_add.json new file mode 100644 index 0000000..f4d7910 --- /dev/null +++ b/src/main/resources/assets/libzontreck/models/item/chestgui_add.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "libzontreck:item/chestgui_add" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/libzontreck/models/item/chestgui_back.json b/src/main/resources/assets/libzontreck/models/item/chestgui_back.json new file mode 100644 index 0000000..5f591c7 --- /dev/null +++ b/src/main/resources/assets/libzontreck/models/item/chestgui_back.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "libzontreck:item/chestgui_back" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/libzontreck/models/item/chestgui_forward.json b/src/main/resources/assets/libzontreck/models/item/chestgui_forward.json new file mode 100644 index 0000000..25bf73c --- /dev/null +++ b/src/main/resources/assets/libzontreck/models/item/chestgui_forward.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "libzontreck:item/chestgui_forward" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/libzontreck/models/item/chestgui_remove.json b/src/main/resources/assets/libzontreck/models/item/chestgui_remove.json new file mode 100644 index 0000000..1dc6f1d --- /dev/null +++ b/src/main/resources/assets/libzontreck/models/item/chestgui_remove.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "libzontreck:item/chestgui_remove" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/libzontreck/models/item/chestgui_reset.json b/src/main/resources/assets/libzontreck/models/item/chestgui_reset.json new file mode 100644 index 0000000..b2052c8 --- /dev/null +++ b/src/main/resources/assets/libzontreck/models/item/chestgui_reset.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "libzontreck:item/chestgui_reset" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/libzontreck/textures/gui/chest_gui.png b/src/main/resources/assets/libzontreck/textures/gui/chest_gui.png new file mode 100644 index 0000000000000000000000000000000000000000..b3e27f2ffe56a12fd8eaed9a02ad88bfab0955de GIT binary patch literal 63782 zcmV)DK*7I>P)PyA07*naRCt{1y?MN4SykuxU2E@s&bjwRL}o@NAdo;xGKx$ECR#R=NUQL%+A7=X zPnA~Lwr#bRfCDO69}34(oN)xJtyUDY?Jl((_y~f^AY?*kr_xLDQSO<_4%B5_nx?S-F^1iYwb1s);jWn7relK@ArO>^?FU$bpYVr z{s8Wd&+nPvZ(o~HYUKeBcmU_=Jbkw5mRoMY%m^U>AR^lXKvnPXT0|(NaOB7lp8Vt| zbLpj*-s#`_&EI+%X*k2z{PSl4@Q1H_5nuVt=L7H?ulzaw%`=|^z*VpOUcT^|KMKHy z{_t4{j^HScile|hth=4$iBEi@U;Ey-@xc4t6A;{u)mVr@S$2_%VCJYO%!3vYYOS~% z7hQ0SE8qFw@79YrPyaaSQ4hX9430*0RBH|{Ql5O;TXxz9Z>;&bnNPdQw_0HKS*y^kN^0r$N(L!Y?*%=%9K&h3RC;H$pk`3K{8#tQ)G zmB&5)3QnC_alu%+ylY3NiM8kp0`)Shu z^O_&!Uq1bN0a(cak7s<@_itajKoLPva8T-22W*{ax%(A?JpS>I_kME|x18GL1J|A4 zYrpcJ@{}tc&U@Z_EpK|y$9V4tujSE~-;)Pjb}6MA)tr+jPjcV;+?NMG@c#VKYhKU) z`t1L3H($ni`o~EB`KN!7ul~xX^T7{&gb#oC!`$;8_n_;0#4GRr&`0^ebtif3!# z-g60EPXXTYt`9S=_PFfc7jg5n4`1@sAK$)z=c~RA5hqrs_eyX_ zya~O`YCsMtfxE*EP?ec&~(d*gZGKTmfX{k!jcA%FI|H?kZOkA3tbS+90^+uPpGG_JYe*abZ3 z;Sc44OE2T}vHS7B2VTlku6Q_?TyO*=uo}xY*!`K(tN*-N1N*}N)>nNOZ-3Qy^5`%B zSzMqh7+~9QU^{NV|KCN!`LrmS8Bqjq?sJa|VH$bI$0z>fuYQ!@`Q9($>mKpQ?T5eO zc3*z%(>|+XJx}N94)itO^gY|x5C7t`|L>Rn%P;e|Klo!Fw)ao?gKv5OCvLo!oHLFS zgF^lEe(P7?@jSlaF+X;P^T`{dKl{_?^CeGv5jiMVJpCtm+iSm#4&#wu{tNu|AAc+E zkm|maH<`l)#P2p&Kpy+p$NI9IV6|TJv0GO>^s@VL!KIh+xIg$~{`z^}&6hmz^1Eqh z=jl9s=JaPD{t&iaal<>_$>!wEeDq@<=lGGxy)V9ikFR^a<2%0N@8x&j@TcF!lb-gI zyz|x1p#)e=jyj|YO3P4)9M}W8&9MEw4Cj-Qx;xdJdtZEvWvBer`>*BtkA0lqyW+9u zh5tPL|DL|&ftT~8k9Z`v-g+zV{ou9q5$<=73#iChn3lVmp7gYzutXJ7Es0KDO~&)c3q z-3LxD;WcmgZdOT|B#>t~kc;5LSqFS}gMsSa@)Bm1BS&^{3B28t$R51Y) zr)tX-96*IWd!&cWpqvZSIP&1jFZ(PH<2;?GzhAoivinob8OL#Z?vuFyKmU&J2jCap z{zIRV@5?{*Exh7G-@?~C>?HvFk6-w+tadW1oy^PM_no}rUEjt3{DdE6rIFp3SckwA zgh_>>LRD!BK)~)U9DpE%5IA$@3^(0;GY@*ugFgEsIZx;5?~xw)`JczhlP9_Dw%dp? zZi|G@MPuFp;8~CRkDrq7*IoV+zV`B$@SE3s%l6#v(TQni1B(?NjF-Rd1(ZCHiENTE zCYU1R0D1mfLQ?>D#sVokP|lv23)=3A(>^1uf^kesKx><7-%dHRPyn{nj6_qi`Q zXHMLDVp}(G&d*wZ*888n`p3_D|FUbIwSE1H546|+`av(@W!F55U%z%%1QzhAgQoN{q@S_q`8~dh}yi^npKn-5Yt- zQ$F>VzxkWL`7`?Q^K_o>3VP{FU-~IO^ZpNhn5RGGiQMXFH2zjIz#XcGv(6n>0>|Q~SC0?Ze(}<=9*Wu;>Q4&UH-Lv z^usUbK@a|V`VhGOJul(WU+^7V&?Ua-H+~bYzKWlC@r!x=n}3jpJmTB=%Xj}Wg@`1> zC33&d{W_r4bgKv-y7t$3)I+|JYd-jkJmFE#y#t@q>kWI;bk=w(%`N9chz|A44?mYc z*}&)uVno@n)HNy-RZ9CBpWFy=1b6w2g#Iwa-P_*By*}sMKL2}O{T+P%m;KBg&i~cx zpT%RJ+_d27^@d{)eHL$i`+wosrC-Ua8aLi_H9Plu2DhDf4^(CEX%vEoH2}jdyz=O7YZrZz;{=`W>wz?-410Wo|osR`=0hKOE5|Q=JXr)21rbz*n@_%r2i)`V z-1vzrdGzH^<)Yf3#pm>T!wsiSb7H+_&jY{nroZCB54r!A&o$TI#6uqNIYd?7{lODF z@$>J^u`b<#&x?NRjkt_F^$8E=OwO#TF~S|j6IJO#WEsOb`J7&F__bI530FMs(RYf^ z;~w=;uG`!Dq}TQPZ+{(+dGJ5E1D|U?eghA=-+k`Xc=qS#Pv7}IKL4SYpL0C-f6znt zz^OBLiqB^%J^}mAm z6W{-Z{~mznJ^s18_#HpYw?F0uXYu^s9@SvMFMIEI5<=iNulZ(70ap-5LqVjX=0uAG zB3NR~3&ygbijZuLb*G4&VZgCZflqdXin7!_qJElK=5tUya^dFzXZ!r`{?q61$fx}r zp7I^O@RzTDHXfX}y}9{1Z-3{DxOH=k)AcAf{LNe0#08~0&ds-72k{aR<Ae4R5`u-F^*pFICl50Wnkoe z*T0Sni%u_q_zJ)gLd5(bC?UoLs?t*6`Pk0jpk zp%cVX=*vjADckXU{WBiTM^2pNRd2tB5+c?myo=BUj$gdPsWa;t1}a3WeD0<9W~#=U zuY4C@`_w0F`TWWsy`Hu9+_<;mFF*V-?tSS!nMAnZ%$kdiA44>7;`AB>?tjUJ?1=DJ zAABEA{k+HUra%9KEuXz<;?;loCp_c>4U53z z%6IXv4_(*ZH1V=OzlJLwc@d{_X610*%^OG&Ny3E}A8GgN(0Hb5Xmu{MJKD-W|KnHk z?C<%a?fd`qfBh*%gzx)?ui!ub^wnp5wi}M&L(2+$-;=&+d;SOB^vkFiKX}zI^1?4{ zmOymlrSJTYs1|DO=)!~xXsD;ov~fn^eF7OZ5+DjZ?#mXvOZ#U4@z8W0tNIMFNEh}NE1Bja?SV5%q9zGNc< zH3Vu(SQ@ad$3ue9BDdLA#Kk2jD>_SLue|I1zX03|fOov}rQDn^;3UV`#3fT&lEV^9 z1D-l2uZUIDA=FA*T*NguUBgb=L23n>@VX0s@xiw+YERZBB`xs%@x%^71X1?=Jt-hl zC2xAz99-A0{PBCSxS_^?bpanD-bd&Xw-(^Y5kwRL%$;jbo+3_#Gz|RutKYfhGt!a8 zc{>i&R0#|+T7U%;P-D`)s)3dm6U|pQu z)RET(#JK3f1)sS23=hBmCA{rT*KwaOe>eay{;4-pQ{lPKdD2$+fA}STfkoqm-_$DB z{==`mfy-{U_-j|lI~#uB%9r5Xq0Me-gd#{){?nU&i5NzD?Fb4kO2knE57q=#S}b9U z=2O59%=L!&b42EPKnF2}ns6VeESciOh|}AK;1ePR-ESar(CFwatiWet`tMUbr?X)* zEXf4a5os4J)`Z`5+kA=YiA>KJmrQXyQu;Ra_kLLa_}c2W%=(52CF> zKvDxG)xM*23+xadVnn3z!3%{%F~Q0P%LmBC8kEsGMj7Vu>|osz>z8;s%m?s7@QG3q zc{JSj*jE6Z2|~m|PfY{X4|u<5N9rLq1t83|p4q8m1+Q2*u&62#(}X3#h6F>x7d`aD z_PSgYK@c~rWIRr&uSn|y3n{4MA>b)seZczxTMYQjM`A!EwA<;9c_x=Y9GzHJTRy9L zwBgca$rP5&;)Ug*pm8W27CK5AsNDh^miVyGXFyWKwJ9X3p}ByLP(b7WL=$Qx zhlr=x6vr^M>zeuO&$A&&HGC?#PCy0Q+w$q%TOK@x<{m8uSj>F-d443crB)pc6|q7c z*X%A0_F&yRp(aW&n4Hp2#1im9 zPKX-XO^6ss^TliMZOy+~z%5~=!*d5&kt~EN^q%Q-57Vg)%N#5*p^WNuq0q~;n#ZcGuP1n`W{&#O6NuM(}uGPTD*_#Lxt# z?_sger@2X@GMj~!SqtK0CB}oDJE)^7NK9DQ;a%UxF^|V%2deXes!$6|Mykru?x6Rb zdm`%si#?wDLwuHPJTsqmQw(AzAav_OI<#E6+%b0AESS{hXMa4hou6jJdaZaWh$(SX zi1lFST2yC~oRR``aaNLN&kv%A3z7}hik1mFgV=WU-YOoPL}pZ_t599Y$q3%ea2@Zs z)ZG<3tN=)%|GfF~3B*=jR2rezWaImOE6hdtC6GOX>bihYq-~1mOuZ~NmW~GG6BnN_9 zy#tL90?fNEhvz4DNYJLS&CxQEJP@NIB%tv+Lg5sUwFxiV>*}`GC1F-b)lgAluEY@N z4sD~!orpA3Kc?+<$)Wl2AZ-bo;hK@P6X@v2L#|&91j20H?2o5Adwx`BW7C0xC$KJ~ zVRlu->8uiFUwi|U*nI99l$Zk{pPf4g8uF$DtaL56UIXX^-HNE0E{t1Xj!DHlpl%0W zjZmkq6&Dpp(u8}U))wfqGT>!_lm(?EY5|HNmQgPxw>d^22!c`x(hiwziN9}(*d42) z0$@`@a>FcISE$Q1sN>r7(!R?iNDE?#A{yEeno=Of`OsP50FAh{|F=UsuBhW0+AgL| zXe7iIYzzB*0^kie?H!(bf(Cl2^Qa+cGfpH3gn%3pKH29H=fzM3v4odIP+_Or-HvCf z3p{p+#3p!$uFJRMiQ8PSIL)Ej1_$>qY@Q$0_J8||AOr}h?Vxe?-KDk&PcY7uF zqGS|p3PSE0ZC(1TdaYY zg;)aB+IM`u=Ny_JM4I6j4A(a9#SG^?Rx=wjPIN+vPG5{;V`WrjjE*Ivb_EVX812>o zVT#xksh*kzAc3GxbVIG(Kbw7UERu_WD^+2wk>ZJ90hxL_*`<2GT_|~&6+nl3q)4Eu z;8B{T=Z=|>s6?rBWO^M5A>-mq5}Pq66~%EeG?e|&E6TZ1jGrz=IfnwsM_1^kLlnHy zglu<-IuurvAyd;lfY26d(6(qz8iuPy(-U}YOW&Q~1@(dyhe@bYV!tt4*l$bXIxpfj zNltqJiMW9qV%}J1!KR33$mQS~EI42-NHaf(!Ewa*Q!usplMZT?P}>o+A%_CR%eaEj zQ)QS%s0Bo%<#)iEHH6b*0P`Wm;1I;r=L!#@DH(TZmXOaDk%3s#^1&<73c)h57Lp(M zd5J7RteR+I?_>L!6)bRNZm&El)8cIH(z+8d{Bh z$}G!)!tN$TdPPm!qV$%=WacT>%-eR&?cPB_nb2@3yHS;B5KIZy;!I}q{BHlwz4NTO zH-+|ak5JonU0g;!5nze|6XBATar_M2vUF}f3MY?DXsB?z$5#jjp`vjjRma@g{g@J( z2Vy_s(Ws(e2``b!BE=GuwGKa4Bb|VRLUhF}wirO^siniL`SYS6$;eg-u@bDd^=C~c zR5GrGjVhxI1QH#EPA8(|c4O!JC-XhLD=6+q`VW(p)Lh%6E3`z?$qNW)mgtz~E~hIb z7QoR-iNWb&rjilQ6raFmjj9bh5HO-m^wWxN+7Qb~s0R`k-RLwkQK=QYIBvC>kF_Et zBQ}RdCWDQ^rec%hUVvuCC95Q@BnsJE#8@o1z+nxukQ?ewsuOA2(B(B<8A0Pa$29I0HPL>W};W3wdzI1&a~#(bg+d+b5aqy>P*$}Vt6&A7+xw$!7?o z7$HYe7Hkq^0?URc!%9V{mq4LB2i0f>(!pGraV%GI6;4LzC@iNt z?wIOA9+&gZ@5C@cjU+0mfN9UBMAji7I93xYixdyd4EMIdG()A%f}b#-|5|8CL~#fe zr_OFwZW%EvEkJ68Dn?eAw4=~|Zy?iaAcg?*hSr;LBp0+gdKV~x=;u%Xx*o7D!B$vNtVm0vSVT&T0mM4ek1H1IUHZ+2aHt|{ zp=*}1VN;HgCr6?aVug?aMXfXw*Fi@|_6oAjSQggP0JBLH;>bdF85uBEWa|hywe_JD zEMYk{H>ZxoaYLF`#A!`DWFro`VeK7*kJLJ1rBXNhAdiZK(#&NSbgJlTLRV7*0iC4) zqzQi!$c|*g$J#(7R$K5$6;VU-gsvxS&!~GsITW~B%9_c;>|4%4I~H6EDo!Ys6pet< zmkr%!O}|>xZ8pew;F9=yNgR}34bKJ56FMb4MBEiE1(iVZO3ImTJ(5-{G>?pjmda!a zs-PKka&#V#N@@2?9YScy5uZq_kzsE|Kdw+eY>OMQIx$1d6`2aGGetYH6eJ5#jlLRE z3d`M*xVvVt9uaQ}U@r-KogCr_x9vcna%>ci6jwSBDF!hJvx1k5XhtN17tAW98XE%;MoFwR zF-e2xbYxPDgg8Q|4GEbG4je1zz%~3G=$vW5bmAD+Wo%5avqDnFFFJ*;7R@wY4Opze zif*rC=)iR%rWH9WRUM}wrE9@A6~u&CC%S3H(di^d%55y{3~&T!0hYl=ddpaz(9J}Z z*i7io(5Q5wAXQ+5x~s%#jZcP`z`g>|DUyOS=m@sQIQ3*Y+!e{S1*#-K)waXsHF4Y! zrxCRc`#Xty3xtAFEjGlLIl(7vR0s`|B__yJ(anUeMr1wV`QYYw2~Y$kMUud}Sr1r& zD8yvA1_Bk&;G2T23bwA4LxM|HVzp+aOcTC}IL&VkRfx&y<3u#*^F+59S&pX})@$N; z;7SB9bT#8;LZ(R6MAV2I_|%>W2})m$R0@mDntpGO#cGXi4tCLAH!MY<7`6$FDd3)o z;|5I?(FCHzET~Pyyr!G>=r=3kAT322L4G}E&N6MC!cO@U2T>ZT%5XHZgT z9T_%?=8RDA;;dFj*pC#g#v`oCQOeXK9V8neuV74MbwmaCO2~68VVa7~XHt5C|fu2Rf^yQrX#z#Lb3&wFjHB z#eZ~+EQ=tM!)~N=hm8|;BGLg7mk1RC8D*Eg?9y*`NxO#tPUC(w-|$c=mK*pe6>7I3 z)DHE)FgdYShO#2$6=~dMSZ7#3jg>q&R+Ysh3>gq(t&y5LvJ0r)akq1jPzhSlB8VyC zP%PmpZKsa~aUqulby_k_JH$9rhlsk7YtJ+u!6v5$N3;-PZWf)^87SnaRz#b{RHDh;S@9^m7NGAwRm?HQB9}|)aRcKNDzO=N& z9O+(;6%Bio>e$pwRG-s98ki&bv*}))ng!bgJZHv3fRG^%sZe#KgpNhG zCZ$3jN2Y1OtKgHsX>BbFO%GO2;)##`UWg?D+e!W3MWEDC*3Cl3CNGnni zf@k97^u9}|69X%tb-6hzXQ-B##-1S?WshK+<{{1d&ahUJ3P)Cj&7M$>WL8HZ zhFy{cmg_{0+5}W523b>NMCyid)<)~D;Q-t!qa|+Xl$~OnNT~@J!m`{k1`yo2K=vRO zI;%|dGz?%M%|Ypg1#BQ7KlEJRQhGEv*%r<8F9D4i?KY_7_IkDenl)g!8byuvxWLe$ zy&h);5XlnAu2^lDgqA?5s6iq(>#kPPC+TDGccHU$Xfp}4O2C~JxS~_Ur=EIb)uu%q znRB_nI$eDGV!}H?PFvYWwr76(#J%QMw|&|dahQJhgAYB&*}eI=^Yp&eDd5z>iOsn` zx9`oKI(+gV9>uNQyAIxD_6?OS?N8l40^uxh=b);kOn}yZRB>-GBDg9jRfQ&R!#jjLz5I=Wp)#o!gIRf6i`S{kmv>c05+46=neqrNQb$#nmu{8U$0N5L&R%A_PW{lQr1N~v^Z7f{ z`jKA^RY?^V?u;s&=z4ItFlUZWxta0l?C(`elrzU@S!8R#8#6?lY7GqK1ekq(6KiI< zE2Z=ex3R6yQ%W9CS3N7qAfxh8s_huc9Ndgn8nK7XiEx69rVA^U4VvYoBljv0P`UtO`fUB?KnO8iH z+v*Oxni!)pdf!YX72-V65hsL#)#f)@j>HPRPyChM3Rhpn7kt5&Qluh_6{fJE=eBY& znhM1`q83W+30Yv%Gv*}{3aQ&LgcX02KMq%4#Y4aN8C0oMoKic=v|y|YHZo8;!Gn+{ zAr@K$JHqkqM1x4yz_sZ^aP?Jmk9ZEsglokb{s#>P0iv{Y@u5<|8PT9X4Fd zY5u}SxcVxtc-+&t!H%-lhCXx=qCzK?J``MpA^{J^(f&4e(k@4Hp<4%rweY(d;OeXR zSC4!wqX#DISjWH^g`5g^GK@3qB_wGm)4=Dv&^5%1Xo|h(;o0Y5i?A&GA;|_ z;Bx^{-{9futUF;Nky}&GL}V{0N9)Lio6L3LBXIRqJmYiz1sjh{qLkRm&TD6kgM&w~ z1`I2qL1eW$?!v99Clt7@`w+5j*_f_?xTE5%MOjp1Q4De6MAvcjcI(`{_12@bRAQ$S z+Ksqri{zu&7#kM9Bt&gS6v|v9(@c92Yq2tI{=Qj6EK)rJh7+kKRDl+8YW)Lj4)(ds zTduS=;V@^2YDuGh`i&+q~zD_pG&Nl#WSyYDl<7prHVR3Q2{|DxFWL8&MP6pc|1@ zFxFaFhr~vprhvtOL_rlgDI^uBO3evd52VRaF9+slw`Nl#xps^mS;v8?7f7*1mo))K za%&On2^ub-w&It0K1YWsCu*o<3*_F(p;EdLj}4iY4T>wFG|1_$CE^5nsKCT25Lb9C zNN_AFmIUtv(*_ehDFcIK)Dk%d#(V^IXOkD(`Ps9?q?N2q*?0(eR3t`HXvn>`h$2%w z#-vJ?%%TW3RhUy|t7M$9#Gb%93R8+qeIO4?4G{=P4Mb}Xvg~{YtyE)~fjMwHh05B6 zQ6sAeV^nG<)X<8pB(#)imAMiW0~E`!Mz-^OCOH$CRT9<;o1N>CXC|(!|4yj3!+ZAmR5V71nYo4LJANS zRb>>#=#dIi6yF3kdC93P?8ih-+mcN*N;GOxtP{KoNT-z8ZQ;&}W5iYrRX5<3Ax|*Q zIr9)W6_hibunCc|>&bmb9U>NEOPzTjIHYQH)fjRnPL*T=rNvTmSJ+FDb*iiv%Cv}- zAyT?lBHWt5%(({>q6v!vXyS}_TLrM!gL`E?z}}89?m!(9wU2m=4Q|a0mA1BqEDJRU z_Ecfh?)C9p$v#(S0>|^n@hNZN!pEnHd{8xhK&JTAQEJP?&^6Fa>NER@{C$Bp>;N)e z!`4M^B2$5ggwkqeqy-9H0>zXPgn~3MqaO4-1ls00FD2h^D$pct{#+Ov`cdvS*;wT?hF^{w9o{AAQY(0wQ+xZ3gvRyIo;i0Yuxcu8$B%;d3PWh+&V2_dVj*lF z3l+=>*^m^-yUH}mHt;po4%3l3H_osj;eCQWwJJ;vv$A!dvhj{oBVE|T>bQ+oj#1c) z%BqX3V@K{6lzzbaZZ5fQbrb>GwUh#5Caxz!5g1RlMeBi0C+sbhaT&;qL|Jr=Pq#lF zX}++5R40x?-55R{EMhH@&0vfR7?*)*84viRIIkZ?T^csOR+t>yG>9@A$R5F*WNm#c ztg@(eEByPfZ#;(raBCne6URL;)gGlH9=Db+>dlSwX4bgNwoJJ32+d8hi07dd_r%=d zXR74Tf_v4P0&qM0aL^f2uHJ-S_JzLHP1MjT8z%wPz<$FTXgm7*F1%oC^50$o?4Lip z>)+ljIA=AWZw6d8_;QWKSp%*XbN#i<82I+RiO47eo3LO?OQ!A!by&7q{%xn4gN{I2 zGbM+%E9O>T4Xu+;2}|2EXf&5O7gUq(Op<;jv(V9I6GF=qWLfQ%~*( zYCjw_y+~=^RhoHe6(|)Kr{uAvXl4qjP`iqy!yRviR;%8%+^p}H%FOU!3r?*S+soS> zE=naw$9lyVt$h}Y{(w(t4LFP@B$8WQ1txT5cN;wqp*CgFfe#5^>^I@)Tc3fs(~(Gn zP@5%6QA`Uy9)#6R0y!k6d4BS+pbiUcShSMfxwDYdAjY9&Yz}7W`e5!qRo<_W_s%-yi0eOAE5n$Vga z2(#FXoeAVJ00oQ9_cyI`J;}aheb8FZeNLh13?Q17jzy>9jG-kXhfs(G4lVbs$$!}Q z-**oVoBn6H4DoniOac@&wl5e0Z##) zJMfqnyiE8AW+S?e>?;7%fTf7_sqOs3LB|`PJKnfzs}XZ+s6HvwF;MlOjCWm+kRz1+ z<|K>O5ae(tpVp!bq(GeM!1Wv^^g{jl6 z0tg5>1n9Kw){FiuK0c2J2d|DzhLQ=zh=U{^nL8WJvgG@90x$!t_8W?}0=62A9F5T$#JY+w1!0}SR*(-1 z{yuHv06R??obD2rvO4Q?EeM#24g7L8S?*x7n8$3;kGKogPt;+=`h$hwBCY3L?B)(L z!`y*qx$WrU+eRK4sfy}Es*1$Jb@PgagvWHyq+;0T)jHnn_o@>scr@HH(!nIlEt}C7 zlu+@Qu-kR2VHgf|1fmu71cz$)Xm~mpkE>For$#+!2C~nmALa%nbNzj#753DEcH>-} z(x{^{MZr>Nrg4`JIt%p&<8hZ(02L}`8Qosb{=ch#Jy3!qLA2TMQbOB2pK6g6WwiY|w z5y)F^T(sbp3A;{rs1eL&aHa*6{-D#*9Xl_zdG=}$D?%Wx1)Bq#>kwL?uRF;3-?tnD zVpd7n{4Ey1ki8WI;fz6BWPh&t0PvEiC4mc}n{aDYkS@}IJ~LWS)zJTsy?6VyWZ&+) zKI3<(nsct+-MxDs+s96@R|txzE6_vQyY3HY86fQK{I60%L+&e;R@a6u0n7W;6y$0v}0kPs$_(-#RdS0a$P z1#Jd8-CXhOgNR-=7}Cf05_ksjM*ED=>8U`f6mG%YVOnT8`{K#@Mg*EC{~81y0VEkg zI-yp=6kNJGj&}pP|41Pg zBTvxe_Q3K~3E2ivBwvY1ex37RV++&?nLlGusASoZ;_7Pxj$w;IVXa& zMhcm%x6MNDKhyO*)0G5ec^-0UuxKa^DG*}ibSFKT6c!mdgFDjEjVN^^0@2Nzb_#^h zDe;|m*Mubn77ctlPrMp-_=x8K9^cvPu9*nW%6SQQVqoh8GuPm|yEx+V(UgGb8bVj>H^&=D+pr=Y_K$FF;3!JFYRaW+PgL>D2cx)HbxB~$}W zZ>y)i;1#?lL;y(FEav@>`NC6rfrjJ;Wl(q| zjdSJkdmGkU13ov3H z2BeBa^+gY!6N}xy-^2CKoG!?``3f-|N$`$_?$TnD0XFeipLDnQhX>%Hfq8Or{EQ4E z^o3r4<#_x3>5H`*k4W5aX(U0KU{wSA)!PXg-qaezCLbSKpp%&^18`;T3!zeiICc3*E6bT060){9=RbuS^ zvc}uOb=r^-F*<_)6viSL=k#iVXZi=Q+(j^Vt>c!I5R3%Zy0$;78_8#fraB3z;~)8| zb@lt9k{1iv>s&8dZVcK@;X2@YggQsC3c&v6{j^#{IWkj^66ckO*g z9~CYK$@uT?pQyyq_sy`>$L>Ge{_Enm+h-Y$ z^ZlYX8;Qsr^R^ss2H^PRn(jU6_oj}#!3YbIO-YD&6lSPH7LK?K1XyZniy4$Zt z2o7Kf+DTdw+nD5u4-TK)9%g%>G7%7xbkEkJ*YjKnMT&zunn5>WZ(dd!N9@q|navu! zTr}uD*I5uU=r=p)qk5Vd-0a?4DCix z8PaTVdd>AbT**SBO4L5SD$(w|JQJcBNuXn1ma;*^F$2{bx~&;9NJnOE(4NLSqMj5B z8rgvkL$KQ=oAAp2DHUPm~$nRNy6(qSLk)SZw zA&e83h3+MDci{cz2$1U_T}7vD-5Y@28@ONma1{o5C?R0co7OH9Y%^RQ;Pne%{I5R! zr-lOWRs!Bk`Tfm6ZuSJ$BQ%#{_J<3W`mN+PvX{xaE5@36TWR-FpK1k-UfQxwRLH$B z*Ogc*>zdK+mb`lr&Qv>6`b6*q|M+rv2GYE#icV@3SsSUWJoHEAyZ-XpJXttXC^n&k zD1(S5TtNVPegsI26+c?yhZjJk(BFD{*PW3$*1HYMBXHVQz+0a~e=ptah)pn=fQhA+|^?oIcu;rT37w;L+s9ruyZFrErc2vRu zdJ4gA(>FxiTeK)ch+=mx|Meg7w$}mI(&3IH-ew;?zRmu!?%#jU@lQ({zW*l}AO7)~ z_cg0vhZUVS?6_j$ z#DcK41GP4^c66&A?^qp@M3BU*?-sVTcE zuQuYck)Jl&QqVyKrlt``H(#71Y(u<^=ZU#58UPVRrZOrF4w@ae+MiEsNb=TR|BmNp zWF+h?HUB@`C=UkT`8};5*R%xem*R!fofjuUgpnOx?W@Y937T@sjOf zRZH;tIh-y|zlt{_vhVos9`7{((h{Le$m26la+!E+^WkfB-r%qihXI(na?*`fC!}`f zvr&`pb~Y743Uo5j3@b+N7uX7VQ9h`T*Z=cndc!8dsx!SFU|lg0qIGob&i{|fBn9hA zU4(d9uvNJ{J+L?AZtF8zfI}(%|D{5Z&09ZfLpgZm!XULu+zRosaNM5IyM@xrgcOhs zSUrCby7^1EDKb?;7_M*yTNHWfaPCn1)d0*^p$5Y0qp!OtsvTM-CL=`%L5R5FNbN#g zHgu`9a(fAa8q`QA0;>^2L(E%OL))+%Nx?hUr?xSd3&-=B!+If?n_s$?E7e+fq0cY8Mg?h%X@-q4ZM35Scf7Vlw5=twFs736e5=XzbFV(t;{%1&bU z_ikXtO=L9ta1ArA)E(pf*SNd>`wm|w|57hka#;QQExBRXCWzJPQ+^wiQ3T)L_FPXIjmdh=asM~=lUx+K@ zxRRVQNvJ*#Z|e^ZX!$=I84>-vcIbI+a_XyfxTGxowILf(Thk_|+?AOb@8VB};4RGhJ zynCI-ZSmJU-2TG|b+}axQt`Y?558v2JVBjC#^p^!y>J6FK>Sk}x;4XY_KUwnSah^^-glh1xl+g`=!Y){xChRYi|b zUJ`A>G%#@?Yhh}IehJ8G*9G?w765xdgukR0+9eJ+MDzdvAOJ~3K~!;BCZ9(jokJ{y ztQ?PL!l99*Qns1P`GIwr=_O!y$vdeI#+*W@$4Xv1Hm{f+$R8#z}(R6?l4ZXEkcx){g067N`kvB80c)k3eGQ?A6( z+7P4pmj-M-(AJq+17aJ=7OdCneQvQksB<$8%{lsn$}%|yE)HEoM^H0jQJ!5Y&z3@7 z`pp1rN>MN!vkW)iEM^N#8i)jRn%Gj}jm(s0JS>H&u7p}(#@+wx&Uz~cUcKlZzGQb5 zD8ntzm2g-*p7uNLwRjDq{nEu+bcNmsJrZ<~o~4hf6IhwBF;`_T?OA}f18p%vjp#l% zA$9iv_WVImu1UlF8hh|C<7xorYuMpGFM#JHe4^7{*cla=k(|AD8s7ary~i+mOclH| zVRO0RiL%eot8=A|n(%-9q5}caIvP$s8=^CB8sQD^U~cY-u(z1xFJ8X??)#7M2scj7 zZ;$KZ9rVsP?#$T7&wU2`#|vLVy7`UwebbLSJ;85%`1juXPoDPcsJ!#J#&x`7Qor-! z|NP=f?h7xC_tSBI2yZzxl zv>X));J$CgkJI?NJO2AW{9A8-<2}@*cmMn`@Ns~vz9|g%U+{!2_~OXzDq;V^wZL$% zcjF+}UKhXigo%0PzhzG%ig_Nc90^l%a`iO2Q#E4OIRKt~lonlU^00WxkUiHh4GjRE z(cP;F`>wtl0T^C_3$*$+N%In*wcy`VFH>K~go#%hBwNUH|31h3nw%DLTp>Wn4t!kfgpyDKlT<{54-!#j($1lG{*HbQ-}pK|_S1ikbDhVK zpCRrEpee8gzosOeNtH^Z)|nPysy>|Ld$0ZueBv9qC+N}awiGIc_&)* zp*4tX<$=fcjM5LprhNY5Z^Jjf&QJaLpJNJVEOc57&X$XU#z2@{p*BwoV#XxiwjC8x zSEg?Kb#s!>zw+~ciXMh*8Wo!q4FO2#z*<}LId)Pf2+fCpXy;g!zjk~L-}pNJ#=rQd z`8-4}F?zeJBzg>>iG*;hkW`530NJS+FqJmTXPVGWUJ${Hd|47|>fA_2C4z!--#7EBlhp!$7H>TdpfdS0$ZKn3dL3A(6+ zG(zDA=@4;s; z$GcGAxVz;x^c}Y^m)H1bv>rTt5S=(otk?Esjh@I1_!J>iP%$3`Hzo@uwfDCJGjCWn zf62;BtclnIz08yZTj+3dKlam)9y!;UONgAAD0!x(3f_bam7OOx$u+Hf?zqIDbZ3#L!g>dfut+6&GRf+ z7c^g}(c3#UMZ!Um$&ehcv7^5f5sF}~awrY%u;48yJ$G7E>a4UJ9So9zI1{20Wg><~ zG9`8+)WBRj4_0B6IE%m{LJg6c5-kN<$}Zhz^7?g4jvVWd5KgTl8}z$mVjLBSW)3uI zNoYBsNw64rH1FKp%iMD@P6ei-^gDX!XGi04?p!8g%ffmP$}Cti?9zsLA{@VzJXHh|`f`8|^Nn}CRsNb8;?$$N}8ya_Q+0>0}l52NiF|FPR{6XAUF zY&>^KzimPuRv#U&arDKE=lk97=c>rf)tMW^eHWGS#n2VF6;RD+b@id;>XnII^||W` zg75skdG9&Lp_4Ti=e?H+*dqRq(uN!bJ3e8Ti5LV6k#=mfkyX5$DsM{WtOw3vVw*DU zkkL7yQ-tU^uOLd+&eV)kIY7JcaPi~?fF3V20_T|MS!h$D&SS!Ca=EMq?;nUwiCrk0 zu^a++PS?2e#o-fLD%4~wGE-8frh~T!rwkIE(t;Zj)r_sKR_k|Nd`%-I2<2ed1YrW3 zypFFqTxGa6lzCEvm*`@Ai%-x5BsW@yo&}x34%zhpIfA6&wgzOBvO@t|gjjFSCIp|# zbeV;E5ZWBjIiu6i&4)11Yf7@_o=tIa($oX=r(pmRXMrsmB}H1!v^;qyUUUM_t^~}g zOx|~)pyy_-I9gn3IV)M;_%3A^)G!8lN*x2^UPW<9~?l*QAhuKxHl5TVOY@4{U zy7oQ+8@Yuc@MEYxeb-MuFJtFQ%o|)z*mCq_+}yn7c(3Ev>89LMfoEs9JP-~~P@IA# zo_luIAsvF3_*~zT=xufx@^%~abUO%HJ>*pTO~_zj^Ef|Bvmve zw#ji|ZJr&PGEJj1F(00qx;^;-d!+`J} zCE)(<2Uqj$Qeu}x509)5gJMItW4M>Fi-2$=U2aHo^9g%cZvV|TviJK-S|@~# zy!aIT`~Nb0?U&(l;#4Y?iClz!tiDita9Opu20=pe1r1QtCl|MfY%>y%$h1Q6B&7_1 ztV#C~a(Fnt->vt009t3CcB%r>+2%rFdWFBkx>)vo>DI@Duii+J<#^5Lue)jK?|F>U6zw#N&S3c)BtZZDeUyI6sh>W;C6>KV`4<4Z% zJUm&CzOcIxsyAZEu9S=}OuP2d*bPXQz7W^Ih;;(pJo(k8PRoV{I4qH=4vjnzaF}E} zI1{d)4(K4d*nAiZ&XHH99W4#B6-KC{ozTH14Jggyt~A&=9I3^U(|Kw{$Ye^El- zn6)rn3Qyw&zw{4S(?p30owC2&$9p1>^92D+&1VZz=}WyOVS!nUvXgG-8x6>g?+}6T zT5u@pim}#_x!p=vL9plsKo8k*SH~GnPR^10&((od5i7(?Vam(3Y8n#soal3;&pR&d zM$WO6Av%E<>(DlT=)Dr}Z~z)SkJ0n&ti+v`bR1-%>|`MTHKo>0NUN*k)?0{li8C!H z>O9d7GyN@+&*4f05uQ!=Nde8D7BaMYNS0q)ImkUjV5F2T8QN#`-kTzq_qQ|21 z07D!dS0#g-V-kkkvUzWKbKLhTw^1_=-Vnkh^f~#WKi&~<@=ll$Z|cdNn3S+7$HN_= zCGU%$mnx zcTSb2K+h4&GDtqd2;6-x*})=p9~T}-$3{Mtn`}ZSGz2W|L?CD9z4f`G$HLY-+7mSh zrEiq!mXoN=^e|y*`XcG*aKLiDk(YWOI(Q?NLaPM_Nj`>$H71Q%BeHeM ze7l~fBeWc`yoXn}=PrjC+lfFTjuuNE2Wu5X+ECDXkA}xBdoA63F^92W-gg9psocte zI&wR^JUESxwB&%?x58z+c?3J+3u)+Fk>p<79-4@qFpI<*>8C*%TAsn~opZ*~EgHK7;Av-kGKcDA9EEr7Hm4?yXe3@556Ji&Fc!_cMio|T>I_1XT z86V}nO2C$U?tQUD%Z(PG%%hd@)X0{YcJa#O9JZYd!+b}E86=;bc}Gtm1(7rHT;Cp{ zbvRH{_l$nZ{*r%zoa2&9?HQ?!XoWZx(w)q)>jcvdB^hMmFA#6W^{9DLrPyeKx$P23 zgEz&5;JaB)?~r`v8}u?lkVf3ZhkaT`sE#^m=X-*9I#&+Y;2akqMELah6^@$576 zuGcdaLe7H*lx~Eg>wUhFm!vCHUwBO(=yFpmgJ{R`x!38Hthg+5w?Yp2Bn zOSribC1iSx^pqXfHcempyr_m!X)E+&hRdA+I0VWR(Ea_{$wK>m+KE8mB{6Aq6*t@i zD5H2b+%e9{>1;BSdJY0AF?FT<){_R(6JiogCr{8@=dvT_I-)nEjk1j&; zgxV;3j@bbsMwpsMU42AAdpXqhWT1am(;X~gh`hzFxgA{`MVw5K3@sY{P@rUb?&JYH z*zc@o`2!MNa=XWW#4+ADMz>OQBzG4zJZ!`d-dwTZhqTfJG$w~oUWq_Aa?U-;$IO|1 z(0tL4quI{LABeFy(B$!L;te=qMidC@3-4}rl!o9&Jp{t_dfxd;@v0;<4OkEY{i=}w z@0MIcaJM>yx5zm%=t7b_c_gT#%woo5h(`9qMpihC`#kQAjcbvVoknC}^r0^8bjGBf z{b>bv10~2H`RwNz&nw>uJhbM9Kr$17!(ATjNarlWJ&)0obvp%UJTHqQgD>9q*{6o( zz~S!x)DS%qU*DbmsC_@c6m0Q(8#1Zl5Go z;X?T2Lt?1J<0CIW6Y8nmZOsE7GWF|6lmVb|Mc=r^dpA<#ro^=92~7i6A%-iQWfu>n z_Y?s*HqYFGP!Ecx&U&h3i&$0;;w}hyi7UuRFvyq$Bco31A^=393nZco5JKvtwDFK{ zgoZF}q!e&~<#-`v|B|si`tSE)z}+&*0;Sz{rq<`-s(A;Nw^)X2J=xt!CkuIU$ae{o ztIy=;-aFZLCeHW)&!3LZHHbq5XA269j<0*c6a@9^MX)gbF5JHM^Mv7^iF;pYMBB}< zrMwa2G-5az#HIJ0XZ(>s>O$Tk(|uQ=xB(bX=SK1wnfCp8`P&soInRiu$<4Kwn}P7%GPvq)9!$VAN`Ioa?z=rad;aLdbTxVxZFgf%nLH%<;1LYI z`b#hP>?gj*cYpC8^VProqkQk-f$+%#ht^1WftIMJjdPrNxfIBO3RqNhYUte9dlH-= z9$o(*_TGWPV7yKlkx{vjn-MU(CLiHTssM8{_GwC{VA1hWsZ1Q6W~MD(4XTeUQ^$EJ zL>IShFV|m(D=Hm_jWolm(c5j|_T?FN3@|6hXsNhLaaV|`I&MtGAuQv1 za7$8YFa(O}$B@rV8Nt~RkzI_o2Q-xX73 zUXA%4ywZYGlej%^Rr3Vx2-9plJG+vUY`|s5ODO7DF6qAT!%)4nGR<*=+<-{;_p&534$T301;EVPa*Gp#(BNcXQNkx*flt1|_VeH3yTAC4nLqWs z*PD6fqvgW0LFwtyh+XJ0@iGYuRK_f!^?9Qf6qxsmvPTWUV`zA zWJrR?ulteoJ#B)AhR?DGBnQ^>#1@3GO*GAv2)WBRfsbpNyHcC?{LAF^bz<`!sVhl^ zR2tK^kgQQ2Y3&^9E%r>^ z4Qj7AjHLP;0=i<&u~Eb^m9{8hZOGD*qJHiB=c--BmuwGg3YUxi|=wk#{wC;?9-bc4w z$6CFPxeBF|md1Q(9L}9^*9;{Jp^Nw0bO_bxgP5evRWKv7f%Wd?(XB!0cTGZeTl6MF z1E9XB_m<%I838eO(QG8jObOz80NoR_j-f(g^>*LjNm?)$fk^^8Ty+74hYgl0@%aj$ zy<+?Mw;Q?UPak-wg>#-b=ZPOUJJ6=bJ%12*_01n<`GH5)uYL}@06}ioZDPL8qlbm4 zc!y$*(8SSk`1Nb-gy1COFmeX_@&3Ue@z$ASVoW7+c#N>jgc5Ht7eH*xT{*5w4@L}~ z8Y(KIE2>9?dX`2^Pskkk#nf(OV|! zRfvRxL~*c)TpIatoLZ1p<3K6OY{NE_&8SJIKi_WD#*1MM?mkqXx?bmaav)j!xQ}K7S56SJ}z6Dv! zR;_)oU{k$uDC6$M8}%=I>wU$$FB~uagFk7A5XQofp^edTTyrDovwOAK-C^pr>HPG- z!($}iSSF21)?2vTj|-8BgU*EINRgEy&|-1xv`t8x$!lWLmE*cFtxr6(CnmYoJD-(C z+X9D8X`2s5klvvd>Lxy-Y><4k8LVwAmWFNj*DX%qDT<`Q-7_VqXZvlCWrH{{Gn~5{ zfTa@3U5u-ci}%N8F&awOjujt9LhK_J$1&WcFu$oBmyLNXR|60m$QH<}z~bY~%qm*F zG^kM_6u0256P8MRD&(h1UhUd9pYnyQ5vu_%O2km@guW3rAF|@I1m$37V!v=IXL4W3 zdYcC~S>xC%)+(`Vw3xgN!3-A!NebNU0O13zIBN@`ls8GV7UBcw+Y-4`HE*aa4%KV`|gQ=LgEf z7AG`#c3`Rv(G~i_VcYnq-kP_%MtX;NbKS#KjiO3#6)6yxNDh#CB5yFgF?ec(^9EbL z_VULD(`F=;-WysAp~F`EJ~8GXjE)ii*{#62dKdt_1>b|wJ{!iixtE~d(+#+X3vg}F zBjQQC(Q<344{e4a4MK~9(BH6H({+J= z{ADZm_wji1U;b_R%Afz^mb#Hf;#BwE3NccWz-O=D@K^rY|H7a6gb6QLN5s-y*gd;bNpmyFxhTH?wESl0sB^ZfL?wK4EbAlM<$a_K^sD6Ul3R zYo=c+!X&=SwTr+cSXL}<^w1y(eRjZPj}7TcT8!|d$o-h{X4v8($@FX?l!X}I(6{Fv zhi2t?cp{wMki$w#h2!djG(#=yD=x;3DJan@$EA|DGrBsyQ_6{rnKlMmdg`~brH%Qi zv-LY~u|=L!=#wzjMht~{S$R4odJ5DO_@F9>ns|5$gf);aAX_7Db~OO00hlAj zB9{usfW$=00+Q%)u=ZPrs&FybMhNh(0njkieIrY2fj_(8)koxkxn{}x*r zwftT0AG@C-*|q0K=$<4NBlOYr*CUqpn!F7IA83=(p1;i<-(H>JFaECrZ)0%&-#$eA zGf5u{e_Xp@B-FdVKKb2G_)CB3FY)s~_w)SJ*M5xcJO703&?tunWuoOySPs-4I6WTd zqYUsreD={5{^O>0y#2oe?vH)`_SNi$_{eq90{nMh`;{+V`Tk6IoB2L+j=X)IHy`}1 z+aCtT8{jSs{_^9F!1Jwt;hVpQAK-1e&-3whcl_P2{oUW&Io=)5@Qkbb5AgS1{>JSO z$`|iN#Z`=-zI$?kyU}3(^LZZkqVs#ZDepgibN!uv=D&Ft!w=(9?xe|o|J5(Q{rAfM zebSKzZt_dJEouqZa^WBSi67^ef92Qs<~P4dj)5>g1H4ubUhznS&J)x;E8lRV)4iJH z6M7<{`OK)$gjj_T8q>!wX@AJ)Q(VUGzc2oO-p9xP#kb^#|D&HUpYdVW5J`JN{_ym| ze*CAu!kplfPe13w4?pCmf9h*&-}xmTzw*dBEBSn&9SZa3&u9oQfBQo&A3mYEu^fGc z#hQ@N$lY&<#73(}^m|`LUw?>Pj^4qv91)C5OnfrUoMYnDJ1l`En?AV>LZ_ePqYCzo!01y zk}dmiq>I6CR z#ziJx$H^H1aWM3f!me@MhQ59bD7g}W!56;`G1KUc|4)AASNP`N{}xYAPyE35eZ=ca z<8S^(hd=gbU3-C&RJ{_QUQ3T{oH`mcMl>mDi^Oik60zKvSEyt%^|tWgEm!{!%JIYh z>5rI+5ke=Lj&|T4F>?^*%a>cJ8tpXJOYCZajFY>R5a*i%L0F?{35w{(e|6dQebk zJ#&l;D#~eo&E){`;WbMN#9R;)rnI7SVVi`Kl{TsbN#Sx-rUoS&FV02~<$dKlw4w{^1W%$yl&|t}g$V9WiZA1nN$+iVlRo9rHXBgYYZA`s@7IPyZ;>nyJT) zV9*W~2#yJp!5d2z!85hj!vqPJgb z>)UM%MouepZ-g%B;|rgTBb6K%AJ(FgcBrJh(N7x^HlG&}mkE{$ zmN$viB5%@6vBWtfP6f7SZy4odJ{ozyrisrcA#6rZ#(~OLx-rps3Nzo!N0w-4a6|E2 zg=gEuslzrIk2y0-;d5?=W2dARKdCKtK@YSV*CeBzjFRro@}quX*+I zIY0L^e~in^kG;jvpv?uH3guyg7FiC7csY;6rt*Y95)(~57U{ooe(+;4|L*fhtN3s6!w?E7kV|% z4rX-f@lqp_zZLUU+H zLI#P@+;|{J3rw*=Q~IIN!Vo--V+je`2V~BidSk|`7b$MUc_mCMK_G{XErT65S`Bo8 z%dvAgdYw9#$QB}7P}D**at#3(e}7x}JLKbM|D`{QSm){K%**E=u9YrNkx4u znivmkXcgkLvYd?dq-;@0qg}eh;a6E;Ns*G2HW^X;S2dxVP)i{70{V#L3tEm?QfdfD zTA7=2P~*imFk>{941t0sFX3$=(ZmRGB_-hn7ijQd6?zmd^8>47$~G}?6HWRxFT2FV z`JkL7(V|hB5^O_c<3m03x+Pw<#u~g_U&cgYVa(QR(HD8UbN6A$Ja3(O2z>IU@cPZi zJj_1pQf*)PigdY_{(Ne$^A|Nji-O`gp3i>V-Jxf{d23@&D7>@ikH7MRe;`8ufGHGL zHjdksELTDhdT;#d?>zFmZ#Mo2AMm4-Pe2I?>IY{p{T&KAb!u-u1axl19*OGBJ^`?D z7&UER+D5%NVN*elXVQE|-aO}_3vG?0QJXH5}0(R6DWOVZ+z(LAc!#HoE`)XLQK^Yfh{|BNh(oB!mbAn#mHL%GfIFqa~(Qs zh@-|rK!bDcz>S4$ksz*5&_h8FI-0VC9*sUL*4(I>I3Ocb$gvV)Wr_~ioTX8cq7qS2 zpB>l&GbGEOw3O+ z$jU)h9#TPjq}4{YmFKlFb$FplO~ym7#2}os@r+wzzzwsGgc|P&S{>X8NYu#{o3SsDFlA>9i-`65afHk3_y!@VT9u4;b z;yakJefK~A=Q% z$0E>OQ!zI*tfb44R1T!iUU)au!wXE5`s@s+3zDEuMt|`{d-X(mb|Lp6^DLSFi@i7d zu_Vjy`#!(lIVU3S&8(%nx~qFO&L)B*atIGOG^r6qk4R9G1%V`J69)WZ*ns_D!0&$W zA7B{pn+5pA5M;qm0%=(?Ef}Oc7EK8w5~hdLjJR|5g;U+twPfCVBjPMSKm1PI%pMNK z=@FMP%mXBHc?jF_jD0l$*(bWsnlk8O|L+5!BJPB5wf~M zt%zH4TX$}~O(2V_Hv&TuN>QroS!1!fq!@z5>M3$>T-DHMQ>7*_QP*h4?ZGt^st6j3 z`$qK6w{$Ld%<6$97>A@B5*$Y7eCGgj^dK0tuwNS&9Z;m9aEe~~R154|WlBe6SYTKg zpHEE39VH7X376G);Z&JgrP3v^TcagmpdeDYteLTSd9+c`C(E?nS7{1s66QJ(*T`ty zY;!s>kBy7uz?3FJa1bZ0MLr*1;7SG-8_}vn8p#SJ8ihn9&^ET;w)xLynHy^h{)4|h z@)!S`Pw*>0{x`W}E5G&GFYuMe&)M&GfcUdml{UFxXPXKZ8#YzKwJQ;YIiaDD4=)3d z?mL7h*9jXcvO-%f(D6VDne>^LzIOQiEw#S7Jmi(pja_2hEgaXv_0o9Pt1t3{AAARo zhlSTE`vpyv z{DO-dG&9!Y;F@lh5L{0rkM2%8seyTVb<)VLd4FLJjXAJTdKVo zt%MxV#X(9nwKD~^2G?qn5(veabUER+S0$nN^LtX?*rtuOC9DPRv2ZCzE|aI9K21nI zVZa!xpj9cVw9r^XCoPMhG*VS!5q8C>32Ia3-~t*ltjaTp;8#Ms!U6T9g-cXg$9rr)&= z9A#tu<)Td;L7k`P1`#D8;x)y1Z|(2(oRP{aQI&S~^_MNj*?*oUQdmKc|EGpdA+8ovJ;`Kbp1tAqPaR7V=Kct!{C^jH7xx7-Nu z_S!Z-K&-(i)z!jNN__CU-piL?zvA!zC*MY%UqS1adG;$G;KAL2-~H5Y@$K(_58wS4 z{sK9#{MPUM9=kDMhfDPOE^RkccSq{Qk$mTfeu2Mw)7$y8eJjZ)ymvWui70`q;~fsF_+uR9!c22rF}M z8dgitJbO@SR8?a0`8XovpGz~QKlA`piCKc(n;*GhDBpL^G z2yv)FGT|ykz8VutgC!YvnK_J&M4;%7`<&QWK9B6LLqb%zmJzMa4+v(|=)gxc80$I4 z^8?TS34iUceU#t%^ym4#&-@M#UVg~KS6(3o<##{(MLzp`kGRmr!*>k4{iXNv+n+}ZcV3-&t4%}JCguIXrxuhcb+rU{8sH6 z|4i0a2FQbVVc+%Qd$3md)Mp;?&*Z7)BpRQ_3!iN>;H%AKm8AXjB3Kq{_M|^QsVyo`;6nr^JmWxF+Tg% zE0zN9di6z8O1%E;n#Yfy@Nd2U73SRd7hk+Y-v006HA`pvZR)ir8dmr-dcf7)HeELgZ z)y+KA@gvCQstdsyVTptc! z8c1;<#y|*)sO#-PMWo=oq8TT0T=CgYKYyzRtM|t@c)GYaX-orr`U{VkmyD|N(!EP^ zsfY+M2Hv<{F+fGnaYit7yyW#K*Zkw3|G)VBS6+W>zx1E4KVN?g>!1F!U*h_-GF{$d zDPUdvv}AWjQWf6z;2y`dP-sqPf{%Wj_zNE)e)xOgw|?`)mzI+o<``Y0txs3BrfPMxofLJELZF1o@d>>2 zJ}14z>{w~JHHWRiqibt{Pz2TyU875XX=Ns{kXVR)MjfaY3B^@uf*GX?MM$VP5Z5}; zMX22n(q*B&rZ+enDhy#oFtR0V3$DAj9^dF<4b90*>LQc|6oM0b#KBV9p~}s) z1EXA(NX50F1?!@${=U?D4clBxeiQGMTkl8A$DL|+#^$@|q<@pp&hQH7#hZhoHpH#= zpDEnzA;aC9H`L>XS#Y7%{=Usf)*B{5zs|RK7UK8U5xsK$x|^Q>|M=Iw1nL;eGxBre z1^CUR|1kfvRo4@&74%i)!H2wQqpgd=Dz}#@6s+s~-NG;Q%?}_KM^1-(=l`np&EMmX zTrplC`hXbUNlXt(=|017hm>~27|~#;W<+M-8j&Z!gh&OR{Sn{&>#p+AkKg?G7w*Hq z{g<6wwIm0YT+V*Y)(FSJwef1-P$g7Sb*leq^ttVBg>mVYL^(1v>nyzD&P;RUXcO(U zLr!~k&nLz?5r!krb>z8@Jk2kVx>(%OMwZh(78^hsd2mMGKqkcnHKTN!u!^EpX)REe z9b-JvL`cI4mBwYb!c2LbU*gI7A~9rWN6B;%N*N|Q`xiBsSAk;MS?3z1)%`D zwX)BRJ4>M|M6)gzZHfmlM}9Q3G7-hytq&XJ0&Om!azsMx_$Wp}r3K z(vAbTq4(abexd~@vayWr-6tCq*u3G_Re%h+0h2WkY^Fl!4O_W$ja^+L7f0-{#}51R z-@*6F*D|~RwJW9x)%(QwkYRWmCJe z{=!E94+L?)`ex3-Mfs7oRoP<|G-BMr!6z*#bsk zYK4khW(~uE5R@<+A-{n8h&y>_AFurs+`(ae;7q;hQeedyJnnzj6cq=*R8wk;WKq-- z(9r7iV{I9de)FKA!Hg8Z4RVUB3QuI$SL@2 zJjX^X)lG*QJWT_M%3zhT)Sl@134N^|0N&6YvqbKe6|KU4HLk_gqy*o%rj2VxS}?9f z`=1W+c9mNfU~g)uRX?Ho+Vp|UJn)|pNN-{Qb|hfk{;%&9!yA3(lNVj%89&fAN%o#) zZR*t0Zcg?6K|zmjP>vTawPuGsFF#XWyZ08;e}I%mR4+;CKI8a+ae9eqy30827>3|7 zPhmkddMUsGkqMF1%_-mVvSFou#C0lS4saaZqG>zr;Raqk=1uO~U$3>%x6UZ$^{Rmn>lMbtvt(jIjnaXr7-D< zT|7`x<~9JlwT&!oqLxI!co3ejlM_i6qGnD3KlK^9*+OMgO0f+u zE$*N)$-*5gBr|An}ccw&RoeKM<<1A{T_K_pN zS_5evS!*I;H1j!lAvnxFRt~02wG#S_e9^#|JK?Gc`%)+(JRaZ>5(gQ%Q&vJpkk00~ z0%Nne^1xVwajmKQMs&2}HeMB>;sPAj)SY%V=xu0z-#6MX+<<_(%I_8cq==`s+Cgib ztkP2J|AxPQqyF|XM2o91O9u#8ulx15<7yHv^hRePLQs@bM2L>p(nqb(a0o zZO_H=qGn2yX>ARTon5{90d$%>_X3Y~%))%?Xcd_P_UexQqDtfMqM_t%SVH_3?ddU!+KqMGBC{@H~)+kZs zY`Q2tlTZv*H<`&nSY-5?v;=l>MXhII=Be&Lp^1>i{aZ)RWx5!UpJpXO9DVLw*T_s{ zsD^~XI6Iag;R36haB{5?QR6TILnR(Z#?y$@9i!DAz+92Jif0bl0xiHXxZPD;8^~50*22lpe`7~Z6@qCD^gUf1F>lssM-M>Q49v`{|fa=$t)+M`(Yy3%5 zNP_ghfQ54%4|vwrC9h0C)d5*l#hQb_&pm?f>J+L6GK%*ow0Kz=x-Wx?mj}8=AaiFn zU>75M7Qep#pH;T1aU<} zVX=YGvw&SZAQ(wAtwrbj$0I9|wI&xDF=HSDLJUVYU@&horLcI`Q711IO=(Ri)@i04 zIy=iiUN1Pd4mn;gc(y*EwAA|+l^9ke)N@1aWD`3U0>WNTL{o%}kT`@ulO3~-sF@=h zRmd?Av|*~KML*qA0V`BZ*fK%zR-O$FlS@AFJ}Z~SOr-}G$%?+%snXnG{OzKH%E8otqP@! zaEAW%-PK7qlNGERTnohFI{v}adQw3b2mOTX{sAGo3zV*r8eIG(RP~^vjl3)9JaEx& zL|OqZU%TM6uRMH1$O+zfv0(WvX62zy#yA>jY{bxMkZNA{_K$zVHIM2U zz`dhq0NZBoMm0=5Qdf1mwcXlPlm*tHbmAP5>fPz+$E9u($fuSx)^NzO58+y$iq%!G=pv7&cfoLmM{dZn9I2R&TN(vM;auW|W2vwyw zZXs&J%q6XhHWvVGj<~Cq(2~$lS?k2}7P-_T`#_JLqmtZ?gF6N=qUQ!#Ty$0%}5>Bbxo*gyNQM)|B3OpvM%p zbm9K<$n#f^?5-2nFM0YOjw9cB{RXe|kjHn72X92)c=7AY?Ej%FghmLJ5DFm{Ld?Xt z5~H~hY^tPK&`|xNZRCWlxc=tXv^3&=xvBeexRF}h?9|Gw5^J}19jGwOoGLJi7^iI(NYk5Ql!C?=E^JiVoxF-oQOags*wSH!qbYvQCz%EHi2s3n>T zDZ)-qB+IBYiVEv3OJ%F+>_b?zVQa)JG9JC&uPsq5z?#^Zu*Ps6v+mbMo`jtI#FcJa z))*M@`n_6YvB2CCm*Uv{sUD$4RuV_sv1>EeIxtYV4v8Hr&qHJup=x8Yg~5yyezLT9 zYgXybFj2T5uXTI@Nu8?GE=2>^Nike>CdaF z5UP1~;EjHQ`R6Hn0EkP##Lf*|H+b!R!|mUIcyJ+*-F0#$>wZGk{leAb7kIdPL;z_( zmcPDw$UEXA-r&WzwhL7os=0UiPXs*@f}kOx+5<#f31M;DrnA&-pP|0>6+Zr94uAC% zHvwQQH>1)Go?i7PFlf8k$eYuWNMkT3XebS9&Xu;JDFv-H@aK*ar8DyoBh_X=INX^l^xYcVttI-)+ z>M80;MphEh+~=){kcsD+xoBkyCp1)!ZAb3uTvg$@ObpY?8Y-fdrR})p4!JsENoB(Z zbRR%biaF6pyP*jUvL)a6<24~R4~(swk2c}d_GD|UWgu|Es!-!X2rDrb2F;vsWSUmN zQYNmEqQX%VZ5X()#;zFTfm|m_bFmk)16l(3`zsL@bKHg7#=7L1tV|THEip52)%FaS zGZ&lkq}@ZrxUdr?8V6110JvkNg*{gxa@5Fa9cThaO&nr!3p4}FkQ|U@gf*bS6_vml zoGG0MX~k-w^$xy`3*=1#uKPrqmq|z`2{pQiiz_*W?#v`2Py?a($-n9Sg`za=W|`u$ zX&e3kocB?OLYB&P3cT%D*nRGjv6p3^eb>rMU-8ZV$-6J|;v11Ky_MZ4;w~tvM^vv- z9UO2WvD{`s?Y7g*!`wFTdT#fZ^5#kF_`WZhydLF5;bC zgQ@f!$;@ZeeNqrRe_gP1x+Xx4+4b*QPrI}tU8fENjhX%U94(pqL^8cDYjC{=nyu7% z&uj&4LO$Ik1!0v+Yk{TgsOv~G7a+-&s5NzChsG%;-%P4q-m3$6a7nO1S1!^O`*h8* z?O9u7sTY{Ir;=?7a64GHvx^C5fRC6_t7{n6 z=6Z-@iQLm`?%2XzIdF|~VCWi#h0w&udo5rO$93Ct)h(8$pupO+VyQsnh;aV7~pBk)M?aKbIM zu2P}}-+O#_{ z0ilbsx;rxt94jst9_o!m8?rePcb6w~zf0-8r7DURI9cTWRby@g77KTWXFQ+p@!gM} zKsfNF@{sR-{)jK}@U87ek=!@;6(UbT=%2@)=KK8E;lIx@p5cn?Gsau2H+<#ye1$ib zhoq~QU65zn@I(K0sn_{i2fPVg%;M|{&b0PNx^??Cb&!<-n?QrilYfs`KpHJ4tPEba zYejR!5Nb|Hg0+rlT-l2QoR&IL<~`bskd1%8iDALYp4JMdGSV!u z*vO)h6lRjT8qX#~K{$i6ilgv{}q=S?gd0y^z z`mxi4cexR)u?CmqI^W+OWPDlw5Ly{%RLF@KPQ7#$=CXG?b`4}8waVBkcZVm$2BT(1 zR%X;EGHYZg-t!=3f;6AYx9DDhDGptSioy%1dEL}tf*ARRS_wK;(=SM6Jd)4 zvI?stj6!ZckAD;|Xlh&yiHn+f6!x4-VlEDhc`ZUqg+oY4-~6F=)M1WZCYqsXh2rYX z))cFOvhJ~Ez~()S1(l4Y>h3+QbNGexsie{%x%NV^=$-tE*Yvn9Lu>`r;2Fx0@fF^=|2$XA3)~r>@T1@UzX0(3lRxp+cB9COaE-fb zM1%zxK{ml&=ajnv-ZjQk+-&0j-&_E=y<+b0-`G#~pc6>gtb@tc=r zd(fT3%{n0S1g9OU4cj%>gaX2NWUxvyLyB|Lw={Or4wkU3w!L|s_Z8gkywyZrE*YlcO+Bk_J)JT^D;3Bl9NNUvCbVUy zaAFsg%pP<==K-OzTOm-HN<)_c!)4V~XNEO(F1;(>BIS&PYZhrKBdkQtNS(;BF%Okv zHV$oIs)f^JjN^f(u+LCSVyPoq-6p&RZ==uOX00axfBE$wmm;tZiyz!-ETx70;X>FPp4lGXbN zn%zI3Le%1L+dA?3{7RQ`e$JGHlRES`XeJgIXJwodlP&~iN^Iwjn3;14qGZ=D6e0KX zCAO7BWn!hK%x+vcMP;WaPP<0B$mEiE9=+cp)d4byPk(a12B}qcxSY1pk-5nO!|in* z&jB*6Fs^8E%W|z3q%=dqfl>yg45)zAfMz3{24q~_=b^h(HQ7|1y^F7T>q0q61Uf-}r&Q!+-J7hxWIB;n6oXr1zTs3D7{U5JvhI1Iz_BF|Y#XAaDSl^GybT=`(I7 zb9_*`CZ{+iB?@%O|MQ6-%nxs)|GnQ&Go>2+G;Uiabq*4Qj9H`gu}%OiRl7BMlb1p1jx4Zt%ycZV(vdIDJ~v2tpG*aG`r$y|p>pt5RU*A}WorZQ74 zaEg^S2qoU6&09vbrTt-CuxWAYty3bz6-}!*_SWPsJ?72ipewdJB2y+Ob4*DSS9dn0 zR>Mj>KY!AE99=D9Es$|u1KcPkZ8~ydLf8yNn+wQppu<;_%V+)a@BS!HURrt5-E80U zd|_GkFv5?2-~Yfb{`ybyJ>T(jJX`Mbv0wl9f&ca!*^2XVJFu-| zjZz1K81s6G_VL|Cyhf_hQen+|mi2;#inYMq^%+Tx+H1BPjkz1K6s_F3b&6p^Q}cN| zhFPLn#F~?dG`MTfK}L>Exk`y$Y3vu{PHV_G(*~i{K+J)-Dyofx46JHojUMdP$9J*0 zqLb*6MxwUFxM}d4aR_~k85(t{$l!*kp%?_Et`oLKIC}c8Tf z2(Sb;C_3i-i?DixuhFQg&U&nYu&NV{T1R_!n=zGkZmnlgp3Dybs1kt6%Z~?M8Xti| zOf$Ld_{CrUNq*=%{{h$4!DT=GUH=n*`xn2#N9VVH^Y}-<=#O`O?!7DT{)_{+;+Stv z?%Q4pw>%X#dImjP_A$xU9MIN*KSEr+j*i8VQGUu7d=ls7frLzH>fQgQJ;HO2Fi|Rm z1yh%Y3N2DwqG_enKrW*r#kc`#%*T5U%N0)nuksxh8Qe%hv{QgP;;ad=Io3axc2+vx z09><;J}scnfn^JTw>S9BU&XlD@8UJ+*ISE?j+2l~lG05sptVG+%3KCoP3*@j#^J~) zGiw_uc4J-UzjGg7^_x*!!oYY{C4GbmPBY~rL5sm7>V79$w~SpZY0&@-O}O zU-$n1Axqw>n8zQ-+BQExyttJ_2)^kzxUck6Boq$-iuA^xVj@Ttv^fw%ahD($Q*c;j z2;K*fN{_ZaYY%blXhyHubt@sXVKoq`9c*K)d7=Wf?rBZ@K{SU9OZDBG%jgChVi<`c z;k?0UU1d-kZPRx%Pwo8xZ6p!b@mFI_or`|k2o$f?;Z{@d+~3;}Xj_oDeKmRW*Z1Dw z#$UG@Y3o35j#tdu-?BMr|awu&=U!KyNpfJ7rjI(0aBMo}HO6U}INf8#cP zp<_}obrB7JY;HIGJV0y`;r`ZdT}ZoC5QvCPFM+A6~$kQu0JWSxC-W!%y!l?#q{| zIQnZSL?eBFfcg*qR(UD|z>+^k0soxaXHhKSl>7Q&Tf9R9= zCPFp$Kn%1FLh()Cn%B&08;Oz~xFeZTM-Rs4(~3+bv<#c^N$+T@L2Blpp62&wwE=CD zTY%9^h&&Kk$Td(TQq_r1`?j)gf%~~~5U?hwH7@IdvG~+RgoVheLTf$(v>M1VI({Jf z{gUDVz*U-878R-ujMlJh*jQ=v;F^51vnj19b>1V(1UV9DXj%{vS7*+X+gh*5O*rKS zvwzO!)ibdsUSde~jqjKTWuvUCnCpN7b!ddc1VtIlaU1gRF+6gmpD*8;7*^$Fz6uTA z^^Si9a31}A>{CC*k9_c_`JaF3Kj()(_%naJyY)|CJ>o?k;(;tm=`hjT>8p8%*qXD( zYJYqi(y`=;))H2|>5`BhRqJ{5BsJ2CWAUp6*JLm!ZG_GS6lu=GZ`;lax5nnuyS$aT z`i8L<*iFyLd8G7SKq<-LtYshvKY6N#v!&ODTx>1UnxFQudA4w)^WgGe)&iRSz=(7@ zX-BVZNVg_(-rW65{p;mxq5@lXu$3Hwi8JRK?o(j6^ROY57H_V74`Sdad27K(tJKc1 z7gAA1!==z`56)(kmZ;5{bYi%%N!wu^F^CCw+RTM4>||xOk$D}EHnEch#ked5W2Lrq z&a6ye(izdpsxJP~+6CDXxejQK1S!PvNR5?J2dY)F1dNK=NNf?Qg<^@eTcHWbT$CfX zk$SqMo$k;Uw;U6Ib?|J9;9QttJ@1h+i5*rzt&!OanRmvUf~z+=5&ZX>6*qn3eMC)OMYQrOo4ONCm~ zSsKf1_RK&QLQ_f&w8N#3X{V!4esV&OBdu#i))olZxv%14IDQNnO3foplwy%&#ZiQ2 zv@Vh(imONUk~Wxmw#NoeH(yM>ubN`(fQk~jP)eeYjyf*DM2OWf~MU4eU=Xq)S_ZOu@hY}`KUO}C`-R?+`8%Y0p>8_N+h=dVwIpgCF&hwF2^mUL zcO6o{)Vhc{CBI4iIz0sqK0qGoD@o>D4Y9)kB3>j4)7qu41EwT0>P*or}T{(p8o_nDYt&ya-6U`>K)E$9q zO|;s5=)^Z(3@bt1kaSa}rJw$o*MYVLkebM4bivOuB4V6QcR3tihkfARyamtBod(SZlpQ+eR^bi%QNQIIB=_| zHVg$=Zw7WxJA@#sBPPwrZFBYU)5&^cr0J#t+?<|W26F2*>Y)%q_V6QkV;1`T^p>Ur zVO*bKn?BUuD$PU}AC;j8MDJ0omWZ;EWsIfkGaO}LZE#?6e1*BAQm{f0bGot(SoLzl zgOVS?4bGFJ)EaUeX@ih$pzddM%1AKJYUY7j1E?VCa}#ew2cHt8^?apDnP{y~LYikn zvC&6^TfhKh+x*U_Xyc7;!2OHI9G={95Y~fdt{ZUg3b}LrCKktGNEG!0==1m7!T3Qv z^5GBu9{}8)oFMf7h4mqR8-RE`-bdBF=u?`BaY3~C$f-J=bhYRxOIsa`5u3kW3Xw|c zH(Tiv%D3xaX)f}qjid`nGKu1~^`;kX&d6iS9%`hNp*P07&#){Ptm~e6yo)YEnd%QnTJJL>vFsIAeeH@CJ#Fl(m{cR@+PbqUm9(XHP1KP|Wg_!$^=lepYk zos3epAP{I_%NlOu;gzD%$C}ME8Xr4s(W7hPNiU1UJ626L8FYUGwRg3}!udLyfNo+Y zt$D-NyBdH?bRBKSN@BKwgY7`P)(_UGZOegt8!v6-WILX;yO=draV4GY8g8%jVX&RA zS2PbRs8LEJx9EZ#$C22CRsVYarzT6Lp7VRbmcU(B5PX=Zmdfnq5lm{TJ&v zhel}D1Cw<4oScL3MCOV;X?M-b?V8urry8wCc76Rm?bXLUv(R%!CI**_H(hgh(+%h2 zkAIMlJox9|#5Vl1S=Pha7kNlrmJ32Cy>|47A1wPVZGl#U8!nikK?t~hebSXdGf}EX zTmQ}&PW26;5TiG2LddRrpJs-z_}6S3sn`2{;>SK=NPg1g$q7Q{ss6I;nb%8lp2%hB zzlZ>R9t3A#PXBECjoHeJP`Xy3IFhl_GXRtGsqJ6VDb8QRjJ!<_dQ%X%)fm)f#43GU z>2GiQ9^01-yg87FHw`y{m30vYr%!{#jKoF}A(IFe8D%|h>SFPxtJw^xp7L&LNA%xw zqbGYaH#h`ZrRy{nVujT8|HT|lmoh9((H6)$xJr+zL%3V?{zDg#*#cMSNx5sM!t2?}OgEqF7b-UeaFS7P&K8TzHaQE>f@9vz*_sxdAT_k+3dZIT;8qh_14&wM1bZq^4HS!g z<5f}yQ6qNI*3`U|sS=?$bQUvI3fPD)(F0A}IUtOHEQ-ZKFdyGp0SS)G4D=d*aZ(b^ zJQI*ElecyK#f@5|2Y^@<|QqKQxT?ECC z?f>aj|txA!G)xq7Of}wHc?yH|8MSRpoLLZ5{1}=wYkWq)qoqY zB%ds7*Q=TPRc_a=*%@;YoAuwht3*}LNH(H{=5f0#E@uXvpWg%AoNhEd4Vv|?f_V$X z?dq&s*!dx{5qGw12l0$&%EoD@#L}lmTe5{ZOuSo@MP0~s@b}Oot#oYIL8op-H<1{eIO z;t}14R6b$}R38iWlg{uO*6`Q1GXyuB)AwfK)~ImLx?V6Zd)B;v^QLd1|Ge89e``Vc zlAE)c?eyOokQ$2HJNM1swltX=P>-ko&Edo*H%-dzJKo{|gvJ>vyw&lWAH}AdVEud1 z2%@V103ZNKL_t)CvNiVlAD#d?!f@+>`VY7nG4$-K7rdS}8)#@y0=eyx>gASd!Qz6% zj?3@OL>0T~Gni7FQ=)^xV42khCk%;`g(h7f2V#lj;tnuXJVSG!qY*l4GWKYdtdUy1 zDQ!eZ%{Qqw2T!%+z61c|=#Gj6h`EehWNueRDs*#tgA z%&eDmen;zp2&ej5V5yO!E4fDgU-I6hN0KbN_xs(!%zTKn9BSVG96hKNsbhE0vaECs0dbh$QA3vuKwf4l+y*Fm_ zKaO=h9GU;9{k2NzP1~WZ3>EQcNKodKo05H0lw7k?1ama$#|uxv5E#r+{yhDr=+(fl zK_5rdsi?3%9xL#(W8T=C_6&Xgd{Ap)gfuW zRG_0nYFL_ry2!ARRg^YjQAMnkpspg)`4uj#q-koZ(hP2)!tVd!cdjqGFG;4>lfqyj}0(O|qvP+=K=mIHw?x9vsJj={=&B;OfK%7RGt zCKZ9@-gUW`g^GA%rKeyFgDiU_Qu^vQknvErL(F|$T z6+NXA=I>%j9||!EwI>)w=ZjR1oaY!A>EuMJYe)At3|OoFib+ z@rcXFwfibcuR!G__a77PLM7KJDliBhL#4qqQHuc5Jsj4S54!8&J~}LG*MUlD;PjAm z5{S{~Dc4z$NE$hUWME8?UIm*Tf3YX7TEG+c1?&q7Ww2g430>G%Y|S;-VJq_&@R;K8 zBiQu!M;3=mEm1oPtaH_ndV?tQ2~?V*5(d9$k4%;jlVo z1-xi~9}8(s-Cf|@wUiDg}Aix#6@f)$sNA#hRykpIUQ($N;U zX$fQjAfv@>(PGOzSb@gkd*}nM_tLv6rbU0q3Dkm035Zy z*7A8AHEm9w#^6dsC02%FBp7rYEGX%QqX$8vgF^QTrF9aF;&v6flO766TAgROa7YXr z6=>zq$_d0*2?MY6o>F(js0IPhs}`#qL6_1`A=<>aDSi_*R{0c+Q*y7uD1Dk-zKlh{ z8F8b$6=e`?>HsB`qr@Ys&j5u>64Prun$n3t^Gboq#a3!SXPOSeT4B9o+snbNnCMY>=|7+Z?yf>Qw~7Q6k_Dg!@K@B4nCb(QE6LK$!ojMoGwGY2d(q_)rw ztpb~>!Px^r@7TuIzdNq|9a0|RlX@Xz+io*xRFfD+24$vZk7!&d(ESRd0vJ2wNh1nX zb|@QBu_LG+8Mv6Fz7e2JAB)tsdn<6(ga(uVpfI%eMQZ)zDTdaB;IVj9fw{6(m|$|p87?LDy1i03=*bS#-&chmKcutIu)gTRE)>KUH0Ft4AsTv zF=>O(&!FX}f+PF-V@;pxOF|@|hiOjP^+{3+ZDjfAfb^h9g1I+>#!T5#0)p9hR$=y0 zeD9*-U`lk1>}*NZ2YfsRD5W+a$9^PueYDE*^HW3<#1k>8J|+kAyp{qvSEVMR0zm51 zh%|2_>+N&)Rmo4xo^5zHV*p~43xF>Iwr%f;S*QZ4NWmv1lV?@oqysD9`-(n5)TNlT zX<(r7E!ui?)e>zFDRwGR)trJ$0l%0Eh*Aw)#&x5zA1Tvgl@Z^)EE6(O2{N(w6^Hf$ zz4OvL-&M%yx^Xa2iej`5!~aSLl#!H}(t@8iN;o5)e#jJ=Bq@ zv-zJpC*}A+UQ9V4I0pKRqyAC&Ln;z&lpt9eIHHqzt&|oIJ}PwTQ=j=o6EPuBC{Lw2 z=`$E2zPG94vB7DLQyNc9=|P`NelM1X4g%js8hUC%5&%#tM=?OcEzxuYUr1enidaH& zVNwBD$XJDAKZX!RNd%u`;wH6NPwBfHdx2E_2s+{Yb+Qh0kPJ-jw(OIs<&DNhFIk5Q zX_XlQhScs{a)nZ6;%({$kZ=-7abcv9NrdFCh{Ez#5iEovih%Y798^MDDq_3FIYs9j zDtdf0yyzdYDLv(?!`R4L?f7s1>eo}h^qn9>V8dZZ2io3Am6KKu=PJSL2Y~}y+Y+o4 zoyaf-n_6W_<(LXuZvJj7<-Gw|X`<~?+vZ~vLy3=WH%C5kn=j4sjH?R9UB_W@DJrn|*DuR75Zs=|4!$&nGk@lAo6#Zy4@f{(Ta#6L+HY za9!zi&(d*Kz@w;Kz!1?lDWLlIDgJdhX#80K_J`xXkU z;6Dgj<|}prn3Lf%mVF4U%u5R8SQ{D8{OC&Emsnb!M_B^8-zf%7$T`wA+2_!J*DbcsTLg~ zeW>U{F$^0Gmchy(fQkVdd)DT_#$Kbe6F=Uq@Kp4sq}7VvL}HW_s8IsqsgVAJ>(J6s z5kkcIDzy(&!?jep6>yHRIAaprJ5oe1fSL#H9Ck8iAn23C2iUjNqYm%1bi8x zlIK1ItdSCGr?lWe2&mxY*sVhMRx(81;$j5^l!k})8HI9OcNbi%idFfV*8b>u9ltl) z&`MkfO^+D~0QAsa*@r?*r`}TNNaticw=G)C`n61w=>pCdgl;8L(OaA^Frh%Zio&)S zr(w6o?YFX>DVQNuM1ZL*aF09RH7*mTe zD>-Z{>8+3gw+1O5l1@VfE(U^E5`%FiG1`QGmo{q31gz>PA{Zs09OF}PCuc^8Ir2hw z^;|T=$a0-4J~iZ8o&dxI)s?7wO7AHF69p@2J3?-BA`yDeD- zFs64Esw)LVq%7JPOspt%OX-o)&Td8MOQI_YLAnIFfcTc>4y6u+(m~l1Ba(LND_nm; zcYwBt6n+c6rEeb4UO%L7C3u-idyY|m+Y4?W<*s8c?1(7UuomalDa$98+>dC8(4&U@~0#B8|M)3XKFxO#tmQeP2n(rOYug3AiKx zGzr~ke2SWR>4g_l`~Zn_=nx0S5e|&$_nFjsOfIhLSGZJo<&|O0l_c^4kg$J4}YCH|CnTADx#NkO&*%kXH`#0888(9S)+L^etuubUv>eE^xBZgIacuN0ZSW%=_UIh zBhySWt8*&Q#6TH*>a`c?qGcD>D1x{RQO1eHykBM!6;s8d#zp8uU?0H;58lxG3g=dm z4T*xjbXY3$inV&hy0}IY=v~DjmJ)!C!VqFcONveIm&A-h7Q8B1P64!17%i>2vLBj# z{)m|067eS?N=3Dss3b+0-G=1(MXm5Dof?rUz5!t2Gn!KbW;F6gf+|Z)Kp)+b7$J>u z*QrKj$lapoRe_iACmQZbpnCLO#2)HpJVq>6+GFKofIH-~~Dxz07U(m)i2doTg z)j_O-6yJzS(g-Mm(y}PEMQKHuQe4r=oIw`~l&gdpkl;`-QEC}9SmP;- zxDU!}!Q4BWCLXKfDbuA4NWYOu;K$5A(*9Whh^&$wOq4kaDo4hZwC#>j#=#fbajc;< z*choopo-E=)uCzQnm%kKKka4dJEL(1yw0u4VZHN}93s8xFA&sH;|j1Wo07m1zkr<0Wn|OArV~M6`)!L~^~9=2 zMK5#J4=cjq0<8_fZ3!j{ki)HpGz>)#skOJLJp=8EV0-Z+cNJx)=+i`)w%gM6m2|Du zfcDb$MJZw^P)-qp0FPo{3fDM0;KPTA+YNo2BFaj#3xR?V1jekj)ct!TnC5zgi3K{W z#TQg^E^kPy@;{MzT*7%2VhbZM>B5dQ0r3+fE2lq;k-fowl^8_DtorW;%+ws~D!?h+864 zroFZ(BsXroSWsRoyis5zbr!S&qbXv=b$@~DD{zK`+pzN++E5adP8FaYts}vBumZF7 zTI{RdcwDJ4TDm)VrEoSvAq_rbOqG7gLem7I);KGbrSjN?{m`JiV)%DN?}$K71#G6+ zW9>eT_}a?4jYaay#5xHHSk!9`I$~2!HzcK^fGT#L zbZ#T@H5*-|6lz#mMf+X`%n95mjTI_$5@ckya11VrV2mqh|QV=j_ z1eA&RAg)M(gCI5fKBkGuD720g222r%mBX7T(fZb+Iz{jbr!@y%u-BFjiAt-K|IUM1 za`Z9wsktfP*bPW2!3J=A?^DkM7bPYUDZy{?uB7mh*op8yP~r?IBS0bxsS$}xmsTp^ zgTiSm_hQx42Zi#5G+U`0YQ2}}yN{?egI*=mO57-gPvycoX>OBRxhpTQVI#oDT<#>@ ziA)g4u95rDmywo$*MjUcF}1pn&}&7nO+sQS6agEh^?Cv*W1=4v&sYe!R8UhE*OaOE zao?Bh;+kE*9(oqOi=>;H*RL+=_BB`SCDxUm5-6M&Gb$#gO11F;O*9@=$`D5SLRPny zCLvU<2mvDkLVER=;7jP&A^;)-+KRG8)s6f`2rur#u99MJyC*l$7?izA8esU~81c_w zAB7eski@UV6R^^iHi~=Tg2j0wbWtAbQrT5yFyJA*^h zq3BTfBwaKr1^zNas=;-MMv6Zp37kV3a*}K0O*Z0G!tH}+O^5}pQluW?yGXB}UGjI=pV7D^0Lo5L`H~e#g_G$e`k%to+AFz9s}@zdAvh=IltXQHsEgOA zvXgj#v$9Rm6KzQhQMN_wW>vLNO2l7AeMe%EN;hrF+oBRsK1JJfNSvjU(;bJZMd?hW zKVWv;2o^E{NIg|D%rw^zE8AhzUgjSnR+I0fT-ryA(}CU!eyUr0f^q1|<2r-tN_>d8 zAX+kbMEa0=5C(mO#JV9Qu%(wL+0Jq9Dl}QFVl( z!<8PdgEZmnk$w+-K?o~?mmYs!gR-(-*mS6euTi>3wHoCNI#{%iN%_bP%dU%0kn9Ml zOjr$oDwPVZq6SAw(YZB!SfLO+i!){b1i7e)M$=iHAjbNL(nN5s22ZO>Iwb=%P4t-P z({$ivD$5;Zcy|FnOJpyaimHd$e2jkZTfFsjs-Ww)xFCTWwtFZeT0`8eWrcTD0>(R3 z*}-Oq>Ljg3Ax%J!t#Oiy87gEVu}u?L$`-ZWrJQzz-C8EY!m-TG_$1~L!GO#kFj^Xv zpv5B43Cu)x1(3Req4ZSAA~QiuN$V7ajub|~9$rb59Bl+9N(Vm5&x}^A87FfCGx}_3 zft5&jTm+2C1t(fYj)yc8LE9cQ}ne@^B9}5B#BPK}NDaJ@2Q%iB>C``wyxMo|tqEamc z#Q|wp()kFbfRmIFL7~bPTX+hqF{(td;h=&{#44iX?|Vb+1jMAG0A!?Rpne0pFf3~E z8U`Z^j?GST1*FVwQ3>xKF{Yu1p>QnBig^XCK%5uxOZ9rOv$d-$LS^eL(Q|-mpprZNw>N} z*A3=B`Ic~XiRLBl*&|6A6+uQ@2Lm>uT!r0B8L5g&nE$~G^uy<R2-`G1T>W7l|3dZbW{m{AF!qqO>1FCDKiw5 zr?w6E%r#pjg(O88aIs*=3KgWxwul~O4it7rVOmxiidaD3@ybWM(KsFOCJKETBes-8%$&re!Er%8}H{b)F*X_4S+p48-$(8>i_3c!f9hYF(QlN*yg z$~bAfat_@V{m+!GfZ8_bLy5NU_C%mD*=Nr$hd29uO>E>ZTwS6+`xXFwc_p7=X>9?> z5BBW}*8Difv6RqD>MG6ycohE=hb8gFkobX!41MGe~1 zxsuRJC_e@*ox+Mf<<*o}G3t0N8Sa}P`~q{;ky3e7(MitRNFhzBIx5v-dQCWNxpo)y zzN9spmep|tTTm3eVs)*!=mLfGUMKj7k1=U#jZy^!EB6;t(M`OWG0m@M7$9#KH7GyG zxZ{^GWe1F6hov=ZuHyroKj6Hgi+fNGV!51oSr-m^g-X?z zk|NYYF^Q5&B+9u0CQY$`(y8?oj{x)y7@Fg*0yapbeYf>)C!h zeYX9U+BRIZms}k#vA_EDX8^3%%`rOfMS_K$d}NDB6_LYz;A7psx*7 z7GJfr>%hUUaDGGA-;+|^SV1(Y<^eqF2rfFc67uyA*$Me9$7^FsWx73DIx%vV`6}0A z9j_ZO%JZOj&O`egkKu)Tz;pM2h(fFJ%=`1`Tx~x`UALj@HfUS18%-B}7pb-lwQnHx zE3v=&ha>=24I6(o2mua9Yd~Kf`7__W7uYV( zv@5x`ft}ybyEVaW@%>8DhiS2g0j9_eKlcXZY}eQo& zBvlb|wq|<)1UUQ0Aey~&SGvBCZTe(h^abqJav&e!P!gI7-w6cSD}&b>mvb0{fQq9I zz&EeIt{N^^S8UBS|L@_CanbV9J-9RT|5)le(fdDi8$Q<0|Dfl-D_yk`1guTNXWMV3 z9C*EI$gzO^UV?zY4R=7*4F#5qdPmPb^%pOQ^&WkBg-t;eRUiGI!gNHnV%@@_NPd0M zOEnciENUycVO6}AHMzYeUT+E35i-cgTWD9rE+PNYpVtxu3#Fr2wP@9)hNfVXMG(Bf zE74vajp|GMev4Nfs%%llQ*K^UnFFg}2>k+~|Kj*(Ku{@^2b{pWqlbtg*HPbs^7m)uJ{B;;I7|#7p#6a{L*%?=|cz z0e|%d-x+~;XbI7#en@HNfJ`zL9LMNq46qQzh8-W--|~~ycT~E=Md>Ep^fl*FZI0`; z@#pV1-nZ7x5LIu2{9pga|0Xv7{=fOdN}@C9ul~nx)t~(5|0>qDp|%b7XFm}?e}Aai zeSeu6FC58VU1Bb;=&%EGm-LjW7^0)#dEIkCPgOsq!qJLHjRMNLL9ZJ&2n;a`m;Jtm z&a!{@5$e%XK?m9%RtHq!QVXvjO-Gtqtbid1m=>#&?y#N;&kAQE)vBk8o){uMhCUiP z>u`niE@W5Yx(cT@SQS{U4>Gpgba-zmsaVHX972UN(8dBE6+IGz&pa@B=zK3$SNnlG&{<5UZ zG=6_GoN{CTI6cnz`;2E+QGEMrn>wHx;>AHCbX_HlU=Ay>}Gz*d5m2fVFF-a;5*ZL2lt*r*}!g1-S@B;i{M=i z1zuKH90kBnza6yxewF?oSpnhdQW)^FzeUvzRs9qYA@G_FUG2C=p>XtUfE^tLB|V4o zxZYMtnXgw3s~%PccE7n~mmZGVTn&gY0Q<9FbI_Xb+fQ-6M0uN9bupO!u?U313&=xj zLfK>2&neAbYR!Y84=cKr#~B5#Cq~6?Ut#?ULQ7>{L($`+Vjow$iW^?DVy6pw15WjL zwG&fdw5K$;TM*(ogpJOQnw?p=`}*F{fUwZy8&X$8JOwWSpA zm;gqDwsNAr5C#iJDDNz@Mvh@}#u90g{GZa;HJICO$QkA&yas|iyX!3+*7Eo2o(KRx zvQko)pL~32A}Yf_fuZtJ&MU#ep<8nnUV&lp*2O%F)ka){+B7u&nDee}GvvVUs_oyP z^$sqc!Uxab;(PEltk*P8ABkYxzq{eUvCy-R9$xY5;*x`}Ie1{w&OA2tp!vt<{ggV2 zVdy|d!9~gxR5;pFj#FKWAb4OJ*fzvf!;1xgRcLD3?=IQ@a7k!BX49wsd87_7Y3fg~ zy=Y18(Pf9-zD8HC2s+XkCF8VLQfBPC6@GQVHx;N?nAI!n<`vOIx^B(2+w!7&z)Sal z>$oOr50y*x{nBhxsni)b%>;mBuxw~v!BGHYIUsZF1Wco1B=}r~2b2!A3aC=xw9%!3 zAPT`;tXheYv{EKbU&>jG#3lwu9&Vcbxua>(=TN@XCr8aq*MZ}{w;HXZ)Lw=<>L>!> zRn5?LXN220bu7Uw-8`vhWcKHHM!c~bb=eFZhH^yv>TpTp#lOu$pm8-T+E7Wglcz*m| zJ4?0MVYZE=pfudGuc_D1F&7Q(#Q`d$3$T`kCH}C5)t-1^iRv}zJ)zuTJA-PaZlMb$ z2Vc>K3Zq+$?$UaXqRi|~pI?y*eiBcOiqr-{Fm%AS9<6( zvdtdqSE>3%LAy#4C?R3`RC<`l5RXX*Saqn)YiT9cS|S&Oz9No&fVp(RSdhf=XG(&5 zE`3mp`YHA!%tp%aq~VHU9*yG(YVyAxpLoRlQ%W@qO{lr*E(c9M)#&5**%GL2Gq?s< zh``9&u(r+Jt%CJl{s5jmg8f>KQ39{uT~TmT0Q|#e913m({s2^Y6aed0gYLlmP_w_f zB-A~zRzqvy0!w5~Nzc75CgD-gl({%UCZ@%vCSF7Iu&Nu@+lEzNb0|gQrx}uTyPELZ zOWN-)2cfWAfvuq2G^El2RNY`Mueew@Y+Lvbx`yrQirvG8?;b)<0b9Ud*Od2O)9q^X zPaD)VxJ|>wH54y5(g&eiaZ$WxA69f;CdEoBG92R%Ns(rr$Zo)3q3UA{fTSE%%qUz> zQ5-0XJxZ0teuE2@`1RhRT!K%R4pb}rT%-vkIvi0tCcUl>f;Cho_(#Q!-1RGFA zPr16LDt4Go)8gr_@8cvja&u*jQkyqE%cPKfL~SR0txul?*}!-xJNfGi*spKmjtvum zl3x4C=Od#AMz2*0v;}Am^$iU^76w-b(fXPBK}_Du>WbPo)b6;x2O;3j5CZE_%;DLi z^x32Yc)vbg(MR7x2S|*wpx|OAe*wRsD)rC}^N)*29EW!;aMt z5nVSjcId-Bv3?5mQ*F~p0IN;I&$=B~D~mCnLs${f zJbivixouDmLKO*Zkrt*SnkdlI1fG%EXe!~}rO^dmqkAKevlhL?1a_Ipyxb%ud{c$U#_TC9s8R;BIEl6$ zX&NxhJ zWqP6w_`*Zgp^5|EcEt5w+Jw1+uwN5*D`AWxY1cfTY_kWFkI_~GjzX0!dUe1!BkjYx zz^asJyUrGbk0jjGn}Q(wE_o1Q2HShM5o^d936IQ&P{3v<*2;P>H??k#R=|F9)56G1 zKi2++W0C(`(2eMS%6GHgacRG!DGKN%8eJbGMv(V;tDxY1a}4%n!LVPy(*eLK4J_5y zJKW_{`g$*#m|_qLPdi8V!7Bh<`8})pDVhS)+{26nfT|nzhcz5(%xaG=u5LU>RX4ON z$IBXCY+=_yYZ`QVW`$!g`Mc{H4D2g#j~X@yS^xGoVli~-^DHz}Y`FO7ijN*bohS3Y zs5unkQk0vc1pr4^=jGE&`cJNCN+>k==aL0kuNywScZGEjyPCMKDN?m_T{Oe-nqGuu zT{KiZxMD}x=0)f@r1R8813mP?@+xHms!c2@`CbuA3>;Scb`Bbv&>59uCX z?BSzlM@?GvvhWHAukS&BfT+;L0aNWLwZiloI?G{KOCQ0o7PMcH8te^`{0Zp*WrFX* zQ06TK0@HnzSRg&3^__)#uTsglKOGF5OEtbl_Pn-Y0p!5n;Pa=?o3fzM8*u~T(}DRj zWtZVrnltbB>*MF|0rNLLWkFi783a`PXjB{ns^m7rg4YSZm% zq7y7ZX%d9o*6daimnc8JqI%TuYAvyW>Z2>-g9ffefaqOKF3jq7$-Vd?#SsjY+lIDn zc&%!>zUJN@baRP&U8AdppIlr~ZWXeZ6OWy`%2L)OY>^)S+fWkL4b=*(6ut_@j0G6jwJW zdiIB!zAUhZntSDUR5)TeK#?hx{UN<~4 z&v4&=iu?W^ugoLt$KUhG#ZxZBjv{RM;6=grDazaw1%B1Dr>9^?(QF2H!CYQpnl)<* z)}(p?Zts$+>xRBPW&);6+grG9Yuc?as4W^Enub_3*aufP0)B@={Q*D_*5I zLU%3hfT|nxw&DJ&LBFVZ)HPHc*n16|Quep0EA1!s)c}=l`kKS8rgohA-GCT;sao!M!U!sjrB|5nVby&MNgizt}V!I(WLPhhvnRhH5Js|G{l#+8 zMpQcBULAu%_t#fkY~j0y$%2SAmzyhIY~=U=AHQh$yB8Zu_9ApP&uIFZb z<3@&1yQ@(nzT+{UTlWPEVdv;%ypxf0HB>&ttTy7-i8zQ{u#AI)8 zN&QV}HDbsYTM-1SgjRfLM7x8Sm)%Y<{C^Z19@qwbzv0CeezQrzrruJ&Z1`|3fy26J z_`4rIW7WYA-K8+}W(UQNrm)mF>O!o8Q`8ietL;WidJrM7?gfM1^X&NWk?BS1p z1%LS^{KZ!^e|ds2@1ngYO!m8`UwrulfM0&Kz?}JW5g_4S^<-VfTn#nNKw>zzdTXRLxQY3Q+*E;kJqA6^X>fvOvH-S8|*z)ruc2MxaJ zrRx+NgLoguX0QaxO(Vi(JI`>3QiQ;F58%ayfr;xvj`83cK7DaKS3drO9q1Rw>t6Np zK7TeYO)&3o>LB#6`>^4=0?Lgr@2ZnOSRy}W;LeSDw) zuSdML>Y?jJ7+vizsc|&D`1zUfn_h&#<>pGPgpr9qClH4Hu&~(=f_F^Q_h->5%@1!f z{FKH*VCnm%W4?u8_~loRZ?^)b*OkvXbH1sjUo!tsx&(i~xW*rf^soNmGoC%aWVe4a z0@@T3?8^&om+A$Yq8Lp7zTQ*Pvuz}tFs=$5zn>NfWvie~VTjD2<)#@lY+Z;2aPi?4 zAN=vRJo@8r2@jI#tpwzg5q+zEACXjTNw1o-#=bt@LS!1e`3rJhzpSa zrnFuQNGM|gisl%ta>>lUuHB&ZbC;moDg)=J+Ddf(!~0i!9Ge^FcDJi}m2d%d(eTrs ze9Og$SL{A+21Xs5=~-is;lNoyeEI@Dc@CdGm)D=Zkk?sQ0|CYyL?xq0Q?2>t3@NfU+zu@2g%YPvPAyHj4T=I;+ z`VT+4ao)#Yf5Ve6KEM4&jy3&Xe);D6IU#ULFf1|elAu^($lr$$m@?#7Uy2!@&NXND zk7-Uv zgT@_%vesV`4r5Ke8ky;_x-BcK@FLaU~DPm@2Z(h!JG!p(fN<#Q3$-;O2yxc6Mxx^&oP44 zDD?-j&Hwk%@|&%t!-}AIeiRa!vYB4@j?3MC_^W$&LxaOni$DJQ8=ibK@jXY(4a=H6 z3xer0xs?*rJ^uX3!01_s0Pq)I@#LGw^4%6;{H=V>^};d7T7E|BE~em?K6?vadK?n~ z5eQjZKl$Qw`0C4n;m3ab)a1W2qb|5R(_rF{I>$c(X3_sSg zbDy1}F~gs${cmiSHQ?lVO^@})?>Lp(JH@c$eEe&G%_g zFEi)ZI+(K*#wkNM-k<3{CtZebp1eg_(;tXFe=I#$9{(9}td+j{>&JZgXHRato?C!F zhWV%aB%c$@rxW|mA-<{p3cr(e&1Kc-(W&-`%I+DnW-KKAte^qQBn>G)d5+l)=| zInAHH&x~~&^Pfv&tv$!cd7EW}XU->G!wM z)CCw@4sd)>Q^AzqPqqKtzT?lP+b(TC{%%Rj&uQl=Lr=HAQ}AzrGT!}$DLeihW34x* zz2|5Sf_o|mn6~-FmrvxGor(#ZuokA*IsQ#=;QDhWVD5L0@6R0>cFCQX9_z{9KYphz z01zuc@%Zz2N{dXj@*G2-V(cXv3z56T1I9vVDm>;i|CoXDKIbs_Ip5{)Pci=VI7?>v z+&OOZ;ivmd1F{$^BtS>gJ77W(ecI%e1n)a=@a@0+ zYW6w)f^TjF{NA|kx!;zq`$n8<0tr5a_B$0+ym78m0tnt80RXoIiY9cMFv#27_WfOG z>YFcV_c7Do#R6E;#!LSHDQn<1nmflS#y%CjpB@ib*7!@2`f~$)<9(JspYz=pTryx_ z{<-aM2!Ih|-uPWiT!Zoc3m~FJV9@y9pTYb$1P&9S@QyP-Ok99di|v#jI%kT*+iU+* zF2P(DVNPR=-Gs5=SYq1occ*^)Tqa?9taF6u(mh@><(IDWtQf&5Uww{gmuSxXKZE(F zbV~3~-ODk}uF(^Kq~RC~S%)Rp;FQa7PQ2iK695`+`uXD^-?>4kU+~SHnSZ=bj@*x9 z3gc-0((#tkikUg)qWdnD{?~v>NX;HRqI(&td*)3J%^(8J^m2{NTqAe|#OcxeH@~k@p`9vgz+RxKI=Q?qa?AUNJ;T2C-rKQMlN?-BFE1PVOWyl+EuLAq1hPOX5k1u$jc+XTT> zh@9GIP7|NX^Dns%a~8&&`M$K>oGCwb3FZXSseAil(3Ur7uE=KzEqGhe&>gO44r4O5 zN;8e`%Qz*tXo1~g<-C#CpA;26`Qr0gtKbdS?LDd*)bJJ>V?^29`qQtE40w)~8q=Jl zAHTj$D9s6qQ^IU%kxZF!E-o^sftKP1)6Z`#*olTebscl(xsAs6Z~QywnD7_OEZQZ8 zz6E@9?lYgeo;kra7V2=*Ma}Q0_vIYszoF^Jj6GrcrQ6Ds5TFh15& z++?Zf1y~dgQwwD-{W<4@PX+ra1vIq=r`w)-F2nnj6`7(Q=dO1y7Bl{TdY-w@?HaYN-*BAc+xSa48J76r`Frl8XW)L+k|S?$TtG2GYG;{R>Y}$e@?vX zU8dQN>~G@^%$a6zUI1?{6?j_)VClPa8GGvEFYPQ1-4Y#>T&MNqe8; z)-A<*-Zg;5J%<`evGHnK4Zz|9C;1a~)$V zVoax^zjL2Y&;K^o!0&oNEm;ra@6WmBY+2;($7SPL`%Y84Q(DYQ%+Pc#jJIDp*V3~- z*K$2&{Z5Z_<37Ew7QkI@%qhQg?g5;7xJ%!i0}Q&2si)S!TnyoqRRGIOc$-$99%soy znDbTh|4aMaC5te3>?Jy7S&Z+~Slf@Awv0{hIi{Uk6X#@rmY9F;IMXb`-0!<Y4adQrIY~S<moSi zQ;yHK#PFxix8$1T&rih;#@90bf1K(CVfHz9YtB-ezRvHb`^*WC>9J3Ny{7ABu6+BH zz@AfVQz5?e{(Un4VI%;izUflhCDYjVA1{n0t-AEkr{CW-lW-T@!jh1g29>71?3kvK z{x4*7H-}q zo3PWMSpL0p!Ots*<89rUGm|dGXijPP>9*5# zwItA&;tF%?_BIP@{Ce)0&;9>C(V_(aN9jH%O~>!Y3kBXR%9)Gek0tzAg3jgp$246G zOBsTt{PuV;upm*}n*!~4keV;VXF-G#>fX};NW9eXp)1%lwHRp$0P z@fXWG>B94#@opvG3fSU60l z1TB5H#MJryn9gC~KZN$b3(d7UJJtT|)NxMH+;cmXDn18GuypM4_Dh!D+dPARb{4?c zv^(`Z%%iu)+F^Q(>HDcPpVMULXo;y$IQIFo78_eGV|QSD&6!RG;Lgni+~)89F8#@K zf^_3;mdy5XAb1+(pMLf>0t1$Vcw^?D3k=@o7LEg#S>R5uA5I7O{;AU&qrpzm+(Mc2 z3Fox*IezAnR-YS4vJ_lAm2aME_EWy_Dc}B_G}_#;-^SlOMW+~UX~f#O$5;{^b5_D_ zbepv|W%Rqyk~@(pANR+`L2ldk4T14KSpawW@zV!6-gj;>o%2A)*2CB@9jD=@0wqiJ zv9Gtp{9{b|SgS2%2IhWS{(j2Hb7|D2W6b%Rze}1vo2jpU+uX%DEq{vP&mGWuPO5PH z|G9KZVC3~Mcm4S}j`y8Q`7On6PAP@=jqVf#oJ;xS_hV!j9GQ2nAY^F~jnhZdRN|P% zfxGF$nKKLLz$xbho~EYZ)Nel(+{@QLt-~MhbB>vL+q}djB;Iu2+cfkAK(nnch`UzppOCTV(;J3t-F?(|}Gk?X%>)ZSjmXb3Vpg0B8zO z$+Yyarq;t!TJo-x7g#>;7)?0-P1Aj*mebt-x6v4XKRxH%XLDJOxwy>u`y~PMw*LOx z>~o5yF@mYWm_Fz6^UiB+%>3i`r|6$m7GRF13w_Q^hh?Uk(<)P6@YLcRA7^Ss%w-}@ znTyj{#W`S+@im>&taI15wC#ACrDNZAth~)BT*mkuOWB!ovNY#BpQZEuK4}SKkZGC` zdi?b_H-7U{#$b--+(LjSf6aRl1F%2#0CS9cmtf9#G2{nv7fn2VaC2CL|G&L!_p#%w z;=j3fvnIA#$KHexzmlwp@*p9xh-?XgB9Kt3EkICEA%Q4p@+Y`(MFRzhh9VsmBn2)g z!m~gr0&)TovJ>G13?#9$8z*))Uhm$$6k*n9kI(D-=5c5C?oYCI@67i&GxMEue&_ei zU6+WCDN#U8?DH0il#w|i&Pv-x;O*Mbv9zsO9t1SUO?Bo;l@Ij!)3WSoA`EXbB4e#^ z_SSb6kW~TzTPdcumn$Jcm8Ih;O11@w67pA(OO&)Q_hC!dXw~jzA8pGt5-?KUv(Vn^ zv*wBfnJ$9gSNa?xZ<|UxKz)W<0(hd4mK~zmpDrwmhD!FNWD)NLB*_kb4AAR#T5?3` zzSoWiN9kVh^Zc55TMu2O^K~H_sJO^$1%1jEZxM_8S^`*gEkB+c{rSSt#3`+hwD7d^ z(JaOLMB0~-UXPWoNt!S9K5KonIX%bLb`tvJ+z~|Af%g3l9t^CPzfK>26gbn5(%_a7 zprlBt55Me}LjO|{p`(<#N;Eo!cGLTyePJk~kXug6ZL$`s6;w3m);@cIC-RIqi|J}P z5V4DH&uZVF;91`MPC(#~?REj824K;DYip$0>3ZNAh}gO8WeKQb@9|5bFBF2Z`o(k@SxxBE87>%r^5n+$+2RGv*Zv<#99 zNr2;XH8H=ocs1t0`)W2?88IhY((BX$rN-J)=b&Rn?yJUBx&-S!NL0Q`w(k>D7yx!A zm#Az+T*`q(>A5W)G$)f5r&e}wdpI@bbXfu)Thk^qJ0%*=ZR6+odHPHvOoslRN}r?b zrfUIWTCt@BkmxFhcP=*=MCxRXR`X+0ee5xX6pE~Uw&2n0HfVHeDPy(IJ=Y{G7TI>d zIeq-mew6@#o*jACO3ex>pjn>NUTPC>%lnt@v@xV?$mf(`l}1({?Viz0A3+Mema=)1 zke-p&uI}~Y1*F!|1Lp^XT>y=8O6?-YENB9kH>admXk&T{ky3NbJ}G!u_DRRB@gw$n znv7>pP9HumZ)dS7Yd-6qSA`S^yw7za`Yq3{U`qhtHLdsHQ!5ldZa&(`@TO zrz}41NGXo1jYVyYI%EhRt+DN0MiU{!dFpNo)I zP|z5HH7{L2JP^@2t;`su*HJOg>ua%ux}XW7(lba|2e~$C&s}1JR&r<>efyfQ`(+?0 zOVtIfwwG+6KdD`1KkmR^!4L`*4xqR=RN&YH-{#FmD_ z+f_L~jZgysrB`(w`>DOX*2!o!OD_!&glHy1}SJ**_OAD%pbY-h=cNZ zHP*p@T60BNL7l-t8#5Y&QiBzLMt!O2yY{U>9+7=Qe;{0H_s3Sc+}W&yke z;QN*AkiH85__a1gBs)knl8+J1xJ@sB)N!?-6up0ZUW@f;OoH2?jT^1qb0|IUo5D^s zW+|aBj_)vlpB+AM`}Y=(d`ic^aiYZNoGprwV#$Dw2KV^Or_>{b~R9go5rD>6SFH%i^5 zF;hwf3sH)1*+OA4LvKxW8BPFr{=`EEzxMFLAzZllHr{;u3Q!C&#u$5d4RGYHeHadB zFdC0B8m$8WW@cuvytIt@JLmD$uRMjHKmTi-eeJ)M0>A*c)v3#W*23rKy@h0DC+Vj) zU!Bk#BSM!o(EBIdJFUc_b7=R%DpmM=Wf{Pqk@PciO%%Mu@W5@M*O1BxQ*ECV0`>pu zU@*Wx|ML!Bed7{#?cRe!pS}}!&)iBqGvLeMuU7J2-z3#mvkQckG$Pg^Tat!lf0gU0=oQ>W3KIzPmLe zD*xYr5olsos>&+~UsAtZcr2kRyfLHMSE`k@airh1`Z|Rz@cw)ZNuS_-wCAm98`}(n z(Z(3}%+KMytJiV%+#C2zF^hlw=!f|0OJ`eqfvC|E0MHkr)jlE^_BlIvr4eA?18ZCj z(!HbeXn`RD&v7I3wW+tX1*Z)7)ydBuU7X*$3)faw@ZstP_Ra0X@BVzQcIR)c1kmbG zN#)f_0!<0$*@chQCq#u!{#kR9$UU%}(VK@ORhYF{13k}e>$CF*Pz;IzHpak>wGkdV zb`?*k;~Ef>AC_$@s}>%;p>K_x2MNw!PJq-U1m^xFji z5paM4*w`3h@7_Ha7el=A>iJe|+iFAuuofcC3R(uE41wzfZR{%K!g37hTBCML4zEE9 z9Ffw1_xFMcw@+evQa}1Uw`px3#b$t5TU*DC)m1!j?7r5GXhj61kf@=RH7wPcjzP~& za#3maNr8`lPH{S`mQE>;BI2AhcdGMxg5eYff}%iy;c$qn%U3WSk8%9*$AA~>WdWYX z*XTB&1Z$B;7prtkTKsLpt6Qb4SH(_=A!&irf)<>lcAB~$8K2tB=bb_n>+9>deED6B zMk6dNEMRTzM(akj9smG4tMj^)A}T&vPS!+Vkg}T=4Cpbhc8| z>yw_t5&Syo>0Bxic@|w|}|N`X3N! z{5^mYUY$!9Aa_`Aaawd#+G&VnEo;jxxxMRVD@Q-*6T0$O zfJ%7&-C6*MKw<-$U`CJe{?hNfZPXrV?kEef0*HjDHlW?3y7iBg0AsNrI+n%8wnJd( zTL73?37~kR8;A z#sh%llp3V%p{Qb<>ztDFXjv*(&6YB0N??h$$%R$Y(EC)CMQL+*?Y1e#|NlonYwfZS zDer630KEFn>tnSk;R#C~s_p=!juWYKqjpE`Lk?2K)vAtKhc?q?Fb!agn{WJ;ztf*E zjzMSxcAmG{{CsM0i%mGS`0>vY<@wqeKtzCwE?TVwXrjjDrGxZ28l)oEZtX5a`g-%E zz_W$UOZA5+qtoWJKKC6gp>ju-lC5@5OUz|3&;r6HPM^8y^wjz3`C4}Yq=?QJeoFSF z{UoGj!W;*pc3azCe0+}$X-tNn~_#;lO zIWcu0-j6%F)JHnM1Q-bB3{8}^z z(`>iw7RMFzX8C@5`gXe z-gtZ=Nr^@!aS5b$pIpSLvsd`<=asJlfWqhqq2LeEN8?an> z5&CJ-e!5usPi@{NGE@@|W7%n4>(gg%{wuGys=z7P)fbf8SDKUOIDbUt&jO|M9dPJW zgc*P(K9%QFvsbi!uM2I>Q_dwJB9xZry!t=N0{X@fI+fi4xn{3Y$M;nOh>B0VPfB@U z&D9i|2n^oNMylB6iK*ULQ4MC&(6-!K16S?=+41@D)bTsu{6GZ_AZ5W=)Y#j)>LaY( z2~F(>;zDX97?UpZX=7GJn>BxA-YVr%c|I~u4ko?t zUkg&+wu`FpWjimJc=L4>p+5_*Wp1l|32#rku04Ivj;7!_JHJ-1Jn-gF(yg> zYe7nF9dTx>eGeU7L!}piq=js~v=Vv2rSI@w1oDDKU5;2~tTtZ^(%!6VR0~MigYTGV zS2xu60Qf@Xd(%=ND4}H@{w_hZF76tvy?o8_c#x$30Q)_Qx@=78+m`d^oZCTtP)h*o zWfs0zquW^C+kkyx0}|Vjwlp<{Bta5F`w|dy5&42n?MR{j+dTUN2^xR~&6%xnv=@T< z1TC0JncRBcfugJGd{ZcCf9rvu37w#)FiQX_6O{{?9?My*UCsIt`YUCAeqQ>$M0wp( z3Dg$-?gFUeOW&*S1h#SZ2MiHV+pdc!*nJWBEKyFo25V10=U$cVrp4(aXjJ?IV&Bw@ zwA%)7zYN3|Ce2WqkYz3As?4EINKWZ(MS5GJR?wv9C6RSnLBIUdco{GSPMrcZ07Qko zNFOOk)B)pqYaE)15 zd-A+b4i&d{OXxh)?BEg5{r^S+LR8e767jEuy9+>_LMjI=P^XG0-%)7dB%L#L9PN!g z?*%7r2Oqpqa*=BIROh#Tm*$O>9g*`p*ow}T z08@fi{%^o0Xs|S1?sg;}&(Z*B*%1jgJ7V7sx{Ut;GS^abZ{~HY00000NkvXXu0mjf DIAM6; literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/libzontreck/textures/item/chestgui_add.png b/src/main/resources/assets/libzontreck/textures/item/chestgui_add.png new file mode 100644 index 0000000000000000000000000000000000000000..5c06a63942f7529f101f13d05f3369f00384517b GIT binary patch literal 125 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|%spKkLo9le z6C|!In9=yK-jMlleNEO3jjbsX5(hYvD;{#___DFJy^c7t-SKPC8>T%8CQ|J{~t7(8A5T-G@yGywn$ CJT^@L literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/libzontreck/textures/item/chestgui_forward.png b/src/main/resources/assets/libzontreck/textures/item/chestgui_forward.png new file mode 100644 index 0000000000000000000000000000000000000000..4da62d2b98ee6ffa27d23ecad9f0c1c058ec295e GIT binary patch literal 162 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|Vmw_OLo9le z6C}PI=x%&iugQG4KIW583(tkLgoGWZ4jgDWFVM7LO5;O&#pxHW3#1sjNifGUi8r*K zG+PnZ)aVh~aF*L;H%P(%P__>76WeC4kyv2yOQWxP7Bj=-TICf^*O&bO+QZ=K>gTe~ HDWM4fS-Lws literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/libzontreck/textures/item/chestgui_remove.png b/src/main/resources/assets/libzontreck/textures/item/chestgui_remove.png new file mode 100644 index 0000000000000000000000000000000000000000..191a5ed36efbb26b392ad6cc93e4942e3eab5fad GIT binary patch literal 104 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|lssJ=Lo9le z6C_v)4|Y_X6hrB^7+iprvVKCx7Cu(m<%r4Iq2+c5dF$?>(;aVMe)}k=X5Ck z%HAA3i6|==$_bZH&3t~;zv2MQMuzYXQzjis+5G@`(|BdxPH!*m+`njxgN@xNA D-L6U= literal 0 HcmV?d00001 diff --git a/src/main/resources/data/ariasessentials/dimension/builder.json b/src/main/resources/data/ariasessentials/dimension/builder.json new file mode 100644 index 0000000..b4b1501 --- /dev/null +++ b/src/main/resources/data/ariasessentials/dimension/builder.json @@ -0,0 +1,11 @@ +{ + "type": "ariasessentials:builder", + "generator": { + "type": "minecraft:noise", + "settings": "ariasessentials:builder", + "biome_source": { + "type": "minecraft:multi_noise", + "preset": "minecraft:overworld" + } + } +} diff --git a/src/main/resources/data/ariasessentials/dimension/resource.json b/src/main/resources/data/ariasessentials/dimension/resource.json new file mode 100644 index 0000000..8fe501e --- /dev/null +++ b/src/main/resources/data/ariasessentials/dimension/resource.json @@ -0,0 +1,205029 @@ +{ + "type": "ariasessentials:resource", + "generator": { + "type": "minecraft:noise", + "settings": "ariasessentials:resource", + "biome_source": { + "type": "minecraft:multi_noise", + "biomes": [ + { + "biome": "minecraft:mushroom_fields", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.2, + -1.05 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:mushroom_fields", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.2, + -1.05 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:deep_frozen_ocean", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:deep_frozen_ocean", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_ocean", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_ocean", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:deep_cold_ocean", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:deep_cold_ocean", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cold_ocean", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cold_ocean", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:deep_ocean", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:deep_ocean", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ocean", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ocean", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:deep_lukewarm_ocean", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:deep_lukewarm_ocean", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:lukewarm_ocean", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:lukewarm_ocean", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:warm_ocean", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:warm_ocean", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:warm_ocean", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:warm_ocean", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:river", + "parameters": { + "temperature": [ + -0.45, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:river", + "parameters": { + "temperature": [ + -0.45, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:river", + "parameters": { + "temperature": [ + -0.45, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:river", + "parameters": { + "temperature": [ + -0.45, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -0.375, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -0.375, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:river", + "parameters": { + "temperature": [ + -0.45, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -0.375, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:river", + "parameters": { + "temperature": [ + -0.45, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -0.375, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:river", + "parameters": { + "temperature": [ + -0.45, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:river", + "parameters": { + "temperature": [ + -0.45, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dripstone_caves", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + 0.8, + 1 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": [ + 0.2, + 0.9 + ], + "offset": 0 + } + }, + { + "biome": "minecraft:lush_caves", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + 0.7, + 1 + ], + "continentalness": [ + -1, + 1 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": [ + 0.2, + 0.9 + ], + "offset": 0 + } + }, + { + "biome": "minecraft:deep_dark", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1.1, + "offset": 0 + } + } + ] + } + } +} diff --git a/src/main/resources/data/ariasessentials/dimension_type/builder.json b/src/main/resources/data/ariasessentials/dimension_type/builder.json new file mode 100644 index 0000000..56f4a80 --- /dev/null +++ b/src/main/resources/data/ariasessentials/dimension_type/builder.json @@ -0,0 +1,19 @@ +{ + "ultrawarm": false, + "natural": false, + "piglin_safe": false, + "respawn_anchor_works": false, + "bed_works": false, + "has_raids": false, + "has_skylight": true, + "has_ceiling": false, + "coordinate_scale": 1, + "ambient_light": 1, + "logical_height": 384, + "effects": "minecraft:the_end", + "infiniburn": "#minecraft:infiniburn_overworld", + "min_y": -64, + "height": 384, + "monster_spawn_light_level": 0, + "monster_spawn_block_light_limit": 0 +} diff --git a/src/main/resources/data/ariasessentials/dimension_type/resource.json b/src/main/resources/data/ariasessentials/dimension_type/resource.json new file mode 100644 index 0000000..3ae6509 --- /dev/null +++ b/src/main/resources/data/ariasessentials/dimension_type/resource.json @@ -0,0 +1,20 @@ +{ + "ultrawarm": false, + "natural": true, + "piglin_safe": false, + "respawn_anchor_works": false, + "bed_works": false, + "has_raids": true, + "has_skylight": false, + "has_ceiling": false, + "coordinate_scale": 16, + "ambient_light": 1, + "fixed_time": 1, + "logical_height": 384, + "effects": "minecraft:the_end", + "infiniburn": "#minecraft:infiniburn_overworld", + "min_y": -64, + "height": 384, + "monster_spawn_light_level": 0, + "monster_spawn_block_light_limit": 0 +} diff --git a/src/main/resources/data/ariasessentials/forge/biome_modifier/eternium_placer.json b/src/main/resources/data/ariasessentials/forge/biome_modifier/eternium_placer.json new file mode 100644 index 0000000..18e2942 --- /dev/null +++ b/src/main/resources/data/ariasessentials/forge/biome_modifier/eternium_placer.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "features": ["ariasessentials:eternium_oregen_overworld"], + "biomes": "#is_overworld", + "step": "underground_ores" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/blood_red.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/blood_red.json new file mode 100644 index 0000000..d8b6a6f --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/blood_red.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:blood_red" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/blood_red" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/blue_pool_light.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/blue_pool_light.json new file mode 100644 index 0000000..0f685b0 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/blue_pool_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:blue_pool_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/blue_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile.json new file mode 100644 index 0000000..f56bfe1 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:blue_pool_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/blue_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile_slab.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile_slab.json new file mode 100644 index 0000000..747ea03 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:blue_pool_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:blue_pool_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/blue_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile_stairs.json new file mode 100644 index 0000000..e7c2814 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:blue_pool_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/blue_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/clear_glass_block.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/clear_glass_block.json new file mode 100644 index 0000000..9b75f32 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/clear_glass_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:clear_glass_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/clear_glass_block" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_recessed.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_recessed.json new file mode 100644 index 0000000..06f1af8 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_recessed.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:clinker_brick_recessed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/clinker_brick_recessed" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_vertically_slit.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_vertically_slit.json new file mode 100644 index 0000000..fd71e5b --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_vertically_slit.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:clinker_brick_vertically_slit" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/clinker_brick_vertically_slit" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/compressed_obsidian_block.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/compressed_obsidian_block.json new file mode 100644 index 0000000..75d70f5 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/compressed_obsidian_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:compressed_obsidian_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/compressed_obsidian_block" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/compression_chamber.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/compression_chamber.json new file mode 100644 index 0000000..b0425c3 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/compression_chamber.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:compression_chamber" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/compression_chamber" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan.json new file mode 100644 index 0000000..1a91675 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:cyan" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/cyan" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_stairs.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_stairs.json new file mode 100644 index 0000000..00a7616 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:cyan_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/cyan_stairs" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_tile.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_tile.json new file mode 100644 index 0000000..de18727 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:cyan_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/cyan_tile" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_tile_br.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_tile_br.json new file mode 100644 index 0000000..a83f35b --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_tile_br.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:cyan_tile_br" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/cyan_tile_br" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_tile_to_wall.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_tile_to_wall.json new file mode 100644 index 0000000..47f76ae --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_tile_to_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:cyan_tile_to_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/cyan_tile_to_wall" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_wall_variant_1.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_wall_variant_1.json new file mode 100644 index 0000000..8601552 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_wall_variant_1.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:cyan_wall_variant_1" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/cyan_wall_variant_1" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_wall_variant_2.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_wall_variant_2.json new file mode 100644 index 0000000..6e81237 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_wall_variant_2.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:cyan_wall_variant_2" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/cyan_wall_variant_2" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_pool_light.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_pool_light.json new file mode 100644 index 0000000..fa9ea34 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_pool_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dark_pool_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dark_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile.json new file mode 100644 index 0000000..d2fb74f --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dark_pool_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dark_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile_slab.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile_slab.json new file mode 100644 index 0000000..5370c2f --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:dark_pool_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:dark_pool_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dark_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile_stairs.json new file mode 100644 index 0000000..9ae067e --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dark_pool_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dark_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_red_carpet.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_red_carpet.json new file mode 100644 index 0000000..7c85bd2 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_red_carpet.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dark_red_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dark_red_carpet" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_red_wool.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_red_wool.json new file mode 100644 index 0000000..4d9b6aa --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_red_wool.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dark_red_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dark_red_wool" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/deepslate_eternium_ore_block.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/deepslate_eternium_ore_block.json new file mode 100644 index 0000000..7e42828 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/deepslate_eternium_ore_block.json @@ -0,0 +1,50 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "name": "ariasessentials:deepslate_eternium_ore_block" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:eternium_ore" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/deepslate_eternium_ore_block" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/deepslate_ilusium_ore_block.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/deepslate_ilusium_ore_block.json new file mode 100644 index 0000000..d89f4ed --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/deepslate_ilusium_ore_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:deepslate_ilusium_ore_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/deepslate_ilusium_ore_block" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_light.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_light.json new file mode 100644 index 0000000..74dec93 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_blue_pool_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_blue_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile.json new file mode 100644 index 0000000..9c3f9e8 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_blue_pool_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_blue_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile_slab.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile_slab.json new file mode 100644 index 0000000..88002da --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:dirty_blue_pool_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:dirty_blue_pool_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_blue_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile_stairs.json new file mode 100644 index 0000000..b5a8f14 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_blue_pool_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_blue_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_light.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_light.json new file mode 100644 index 0000000..095cc6a --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_green_pool_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_green_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile.json new file mode 100644 index 0000000..b489b11 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_green_pool_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_green_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile_slab.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile_slab.json new file mode 100644 index 0000000..47a8222 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:dirty_green_pool_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:dirty_green_pool_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_green_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile_stairs.json new file mode 100644 index 0000000..5665546 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_green_pool_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_green_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_light.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_light.json new file mode 100644 index 0000000..e5becdd --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_pool_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile.json new file mode 100644 index 0000000..50ec4cb --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_pool_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile_slab.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile_slab.json new file mode 100644 index 0000000..8656feb --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:dirty_pool_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:dirty_pool_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile_stairs.json new file mode 100644 index 0000000..4fe0dd2 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_pool_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_light.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_light.json new file mode 100644 index 0000000..9bb9f77 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_red_pool_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_red_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile.json new file mode 100644 index 0000000..b95aef1 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_red_pool_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_red_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile_slab.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile_slab.json new file mode 100644 index 0000000..05b10d8 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:dirty_red_pool_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:dirty_red_pool_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_red_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile_stairs.json new file mode 100644 index 0000000..4c608d4 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_red_pool_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_red_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/eternium_block.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/eternium_block.json new file mode 100644 index 0000000..9015005 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/eternium_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:eternium_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/eternium_block" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/eternium_ore_block.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/eternium_ore_block.json new file mode 100644 index 0000000..29c4da3 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/eternium_ore_block.json @@ -0,0 +1,50 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "name": "ariasessentials:eternium_ore_block" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:eternium_ore" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/eternium_ore_block" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/filthy_blue_pool_light.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/filthy_blue_pool_light.json new file mode 100644 index 0000000..eeba2e8 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/filthy_blue_pool_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:filthy_blue_pool_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/filthy_blue_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/filthy_green_pool_light.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/filthy_green_pool_light.json new file mode 100644 index 0000000..10830c4 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/filthy_green_pool_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:filthy_green_pool_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/filthy_green_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/filthy_pool_light.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/filthy_pool_light.json new file mode 100644 index 0000000..1efdd9f --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/filthy_pool_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:filthy_pool_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/filthy_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/filthy_red_pool_light.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/filthy_red_pool_light.json new file mode 100644 index 0000000..8bd7d0f --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/filthy_red_pool_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:filthy_red_pool_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/filthy_red_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/green_pool_light.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/green_pool_light.json new file mode 100644 index 0000000..3ce14d8 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/green_pool_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:green_pool_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/green_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile.json new file mode 100644 index 0000000..56ff231 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:green_pool_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/green_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile_slab.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile_slab.json new file mode 100644 index 0000000..a486224 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:green_pool_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:green_pool_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/green_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile_stairs.json new file mode 100644 index 0000000..be338ce --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:green_pool_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/green_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/ilusium_block.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/ilusium_block.json new file mode 100644 index 0000000..0e11678 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/ilusium_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:ilusium_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/ilusium_block" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/ilusium_ore_block.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/ilusium_ore_block.json new file mode 100644 index 0000000..79c6004 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/ilusium_ore_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:ilusium_ore_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/ilusium_ore_block" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/item_scrubber.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/item_scrubber.json new file mode 100644 index 0000000..cf5ffdc --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/item_scrubber.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:item_scrubber" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/item_scrubber" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/layered_compressed_obsidian_block.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/layered_compressed_obsidian_block.json new file mode 100644 index 0000000..6e6efc1 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/layered_compressed_obsidian_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:layered_compressed_obsidian_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/layered_compressed_obsidian_block" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/magical_scrubber.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/magical_scrubber.json new file mode 100644 index 0000000..ef6dc9a --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/magical_scrubber.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:magical_scrubber" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/magical_scrubber" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/nether_vault_steel_ore_block.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/nether_vault_steel_ore_block.json new file mode 100644 index 0000000..c4db0e6 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/nether_vault_steel_ore_block.json @@ -0,0 +1,50 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "name": "ariasessentials:nether_vault_steel_ore_block" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:raw_vault_steel_ore" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/nether_vault_steel_ore_block" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_light.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_light.json new file mode 100644 index 0000000..d4ceb07 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:pool_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/pool_light" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_tile.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_tile.json new file mode 100644 index 0000000..d889612 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:pool_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_tile_slab.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_tile_slab.json new file mode 100644 index 0000000..64f9aa4 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:pool_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:pool_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_tile_stairs.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_tile_stairs.json new file mode 100644 index 0000000..329c156 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:pool_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_tile_wall.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_tile_wall.json new file mode 100644 index 0000000..552e5ce --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_tile_wall.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:pool_tile_wall", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:pool_tile_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/pool_tile_wall" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/red_pool_light.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_pool_light.json new file mode 100644 index 0000000..cf07a69 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_pool_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:red_pool_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile.json new file mode 100644 index 0000000..eef2727 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:red_pool_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile_slab.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile_slab.json new file mode 100644 index 0000000..36a67d8 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:red_pool_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:red_pool_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile_stairs.json new file mode 100644 index 0000000..17d55ae --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:red_pool_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/red_stairs.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_stairs.json new file mode 100644 index 0000000..48d5d2d --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:red_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_stairs" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/red_tile.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_tile.json new file mode 100644 index 0000000..07caedf --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:red_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_tile" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/red_tile_br.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_tile_br.json new file mode 100644 index 0000000..64a584d --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_tile_br.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:red_tile_br" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_tile_br" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/red_tile_to_wall.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_tile_to_wall.json new file mode 100644 index 0000000..ebbce07 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_tile_to_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:red_tile_to_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_tile_to_wall" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/red_wall_variant_1.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_wall_variant_1.json new file mode 100644 index 0000000..abdde10 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_wall_variant_1.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:red_wall_variant_1" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_wall_variant_1" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/red_wall_variant_2.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_wall_variant_2.json new file mode 100644 index 0000000..1e8c416 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_wall_variant_2.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:red_wall_variant_2" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_wall_variant_2" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/stable_singularity.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/stable_singularity.json new file mode 100644 index 0000000..c82e415 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/stable_singularity.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:stable_singularity" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/stable_singularity" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/uncrafter.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/uncrafter.json new file mode 100644 index 0000000..fe0eb19 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/uncrafter.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:uncrafter" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/uncrafter" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/vault_steel_ore_block.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/vault_steel_ore_block.json new file mode 100644 index 0000000..eac8695 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/vault_steel_ore_block.json @@ -0,0 +1,50 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "name": "ariasessentials:vault_steel_ore_block" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:raw_vault_steel_ore" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/vault_steel_ore_block" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/void.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/void.json new file mode 100644 index 0000000..beb2118 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/void.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:void" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/void" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/whiteout.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/whiteout.json new file mode 100644 index 0000000..d253f21 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/whiteout.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:whiteout" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/whiteout" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/blue_brick.json b/src/main/resources/data/ariasessentials/recipes/blue_brick.json new file mode 100644 index 0000000..7393437 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/blue_brick.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:blue_dye" + }, + { + "item": "minecraft:brick" + } + ], + "result": { + "item": "ariasessentials:blue_brick", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/brimstone_to_sulfur.json b/src/main/resources/data/ariasessentials/recipes/brimstone_to_sulfur.json new file mode 100644 index 0000000..3641ee4 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/brimstone_to_sulfur.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "tag": "forge:brimstone" + } + ], + "result": { + "item": "mekanism:sulfur_dust", + "count": 1 + } + } \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/crushing_brimstone.json b/src/main/resources/data/ariasessentials/recipes/crushing_brimstone.json new file mode 100644 index 0000000..6dfd300 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/crushing_brimstone.json @@ -0,0 +1,12 @@ +{ + "type": "mekanism:crushing", + "input": { + "ingredient": { + "tag": "forge:brimstone" + } + }, + "output": { + "item": "mekanism:dust_sulfur", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/cyan_brick.json b/src/main/resources/data/ariasessentials/recipes/cyan_brick.json new file mode 100644 index 0000000..735ac43 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/cyan_brick.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brick" + }, + { + "item": "minecraft:cyan_dye" + } + ], + "result": { + "item": "ariasessentials:cyan_brick", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/dark_red_brick.json b/src/main/resources/data/ariasessentials/recipes/dark_red_brick.json new file mode 100644 index 0000000..a1d1e4c --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/dark_red_brick.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brick" + }, + { + "item": "ariasessentials:dark_red_dye" + } + ], + "result": { + "item": "ariasessentials:dark_red_brick", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/dark_red_dye.json b/src/main/resources/data/ariasessentials/recipes/dark_red_dye.json new file mode 100644 index 0000000..41e39a9 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/dark_red_dye.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:red_dye" + }, + { + "item": "minecraft:black_dye" + } + ], + "result": { + "item": "ariasessentials:dark_red_dye", + "count": 2 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/dye_dark_red_carpet.json b/src/main/resources/data/ariasessentials/recipes/dye_dark_red_carpet.json new file mode 100644 index 0000000..9c4ea37 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/dye_dark_red_carpet.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "carpet", + "ingredients": [ + { + "item": "ariasessentials:dark_red_dye" + }, + [ + { + "item": "minecraft:black_carpet" + }, + { + "item": "minecraft:blue_carpet" + }, + { + "item": "minecraft:brown_carpet" + }, + { + "item": "minecraft:cyan_carpet" + }, + { + "item": "minecraft:gray_carpet" + }, + { + "item": "minecraft:green_carpet" + }, + { + "item": "minecraft:light_blue_carpet" + }, + { + "item": "minecraft:light_gray_carpet" + }, + { + "item": "minecraft:lime_carpet" + }, + { + "item": "minecraft:magenta_carpet" + }, + { + "item": "minecraft:orange_carpet" + }, + { + "item": "minecraft:pink_carpet" + }, + { + "item": "minecraft:purple_carpet" + }, + { + "item": "minecraft:red_carpet" + }, + { + "item": "minecraft:yellow_carpet" + }, + { + "item": "minecraft:white_carpet" + } + ] + ], + "result": { + "item": "ariasessentials:dark_red_carpet" + } +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/dye_dark_red_wool.json b/src/main/resources/data/ariasessentials/recipes/dye_dark_red_wool.json new file mode 100644 index 0000000..dd22f01 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/dye_dark_red_wool.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + { + "item": "ariasessentials:dark_red_dye" + }, + [ + { + "item": "minecraft:black_wool" + }, + { + "item": "minecraft:blue_wool" + }, + { + "item": "minecraft:brown_wool" + }, + { + "item": "minecraft:cyan_wool" + }, + { + "item": "minecraft:gray_wool" + }, + { + "item": "minecraft:green_wool" + }, + { + "item": "minecraft:light_blue_wool" + }, + { + "item": "minecraft:light_gray_wool" + }, + { + "item": "minecraft:lime_wool" + }, + { + "item": "minecraft:magenta_wool" + }, + { + "item": "minecraft:orange_wool" + }, + { + "item": "minecraft:pink_wool" + }, + { + "item": "minecraft:purple_wool" + }, + { + "item": "minecraft:yellow_wool" + }, + { + "item": "minecraft:white_wool" + }, + { + "item": "minecraft:red_wool" + } + ] + ], + "result": { + "item": "ariasessentials:dark_red_wool" + } +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/empty_spawn_egg.json b/src/main/resources/data/ariasessentials/recipes/empty_spawn_egg.json new file mode 100644 index 0000000..fa0a4b2 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/empty_spawn_egg.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "CC", + "CC" + ], + "key": { + "C": { + "item": "minecraft:egg" + } + }, + "result": { + "item": "ariasessentials:empty_spawn_egg", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/encased_singularity.json b/src/main/resources/data/ariasessentials/recipes/encased_singularity.json new file mode 100644 index 0000000..3f94894 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/encased_singularity.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "QQQ", + "QZQ", + "QQQ" + ], + "key": { + "Q": { + "tag": "forge:stone" + }, + "Z": { + "item": "ariasessentials:stable_singularity" + } + }, + "result": { + "item": "ariasessentials:encased_singularity", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/eternium_block.json b/src/main/resources/data/ariasessentials/recipes/eternium_block.json new file mode 100644 index 0000000..db703be --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/eternium_block.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "CCC", + "CCC", + "CCC" + ], + "key": { + "C": { + "item": "ariasessentials:eternium_ingot" + } + }, + "result": { + "item": "ariasessentials:eternium_block", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/eternium_block_to_ingot.json b/src/main/resources/data/ariasessentials/recipes/eternium_block_to_ingot.json new file mode 100644 index 0000000..4ca9bbd --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/eternium_block_to_ingot.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:eternium_block" + } + ], + "result": { + "item": "ariasessentials:eternium_ingot", + "count": 9 + } +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/eternium_ingot.json b/src/main/resources/data/ariasessentials/recipes/eternium_ingot.json new file mode 100644 index 0000000..5858a82 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/eternium_ingot.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:smelting", + "ingredient": [ + { + "item": "ariasessentials:eternium_ore" + }, + { + "item": "ariasessentials:eternium_ore_block" + }, + { + "item": "ariasessentials:deepslate_eternium_ore_block" + } + ], + "result": "ariasessentials:eternium_ingot", + "experience": 0.5, + "cookingtime": 25 +} diff --git a/src/main/resources/data/ariasessentials/recipes/eternium_rod.json b/src/main/resources/data/ariasessentials/recipes/eternium_rod.json new file mode 100644 index 0000000..940a373 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/eternium_rod.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": + [ + "ccc", + "ggg", + "ccc"], + "key": { + "c": { + "item": "minecraft:obsidian" + }, + "g": { + "tag": "forge:ingots/eternium" + } + }, + "result": { + "item": "ariasessentials:eternium_rod", + "count": 2 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/green_brick.json b/src/main/resources/data/ariasessentials/recipes/green_brick.json new file mode 100644 index 0000000..3c00af7 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/green_brick.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:green_dye" + }, + { + "item": "minecraft:brick" + } + ], + "result": { + "item": "ariasessentials:green_brick", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/holosphere.json.old b/src/main/resources/data/ariasessentials/recipes/holosphere.json.old new file mode 100644 index 0000000..8747ed3 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/holosphere.json.old @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + " I ", + "IXI", + " I " + ], + "key": { + "X": { + "item": "minecraft:iron_block" + }, + "I": { + "item": "minecraft:iron_ingot" + } + }, + "result": { + "item": "tetra:holo", + "count": 1, + "nbt": { + "id": "9503de92-046c-4d61-8afe-8c0d71c6afae", + "holo/core": "holo/core", + "holo/core_material": "core/dim", + "holo/frame": "holo/frame", + "holo/frame_material": "frame/ancient" + } + } +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/ihan_crystal.json b/src/main/resources/data/ariasessentials/recipes/ihan_crystal.json new file mode 100644 index 0000000..995affa --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/ihan_crystal.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + " F ", + "FGF", + " F " + ], + "key": { + "F": { + "item": "forge:ingots/eternium" + }, + "G": { + "item": "minecraft:ender_pearl" + } + }, + "result": { + "item": "ariasessentials:ihan_crystal", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/leather_from_rotten_flesh.json b/src/main/resources/data/ariasessentials/recipes/leather_from_rotten_flesh.json new file mode 100644 index 0000000..aca8422 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/leather_from_rotten_flesh.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:smelting", + "ingredient": [ + { + "item": "minecraft:rotten_flesh" + } + ], + "result": "minecraft:leather", + "experience": 3, + "cookingtime": 48 +} diff --git a/src/main/resources/data/ariasessentials/recipes/light_blue_brick.json b/src/main/resources/data/ariasessentials/recipes/light_blue_brick.json new file mode 100644 index 0000000..085801b --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/light_blue_brick.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brick" + }, + { + "item": "minecraft:light_blue_dye" + } + ], + "result": { + "item": "ariasessentials:light_blue_brick", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/lime_brick.json b/src/main/resources/data/ariasessentials/recipes/lime_brick.json new file mode 100644 index 0000000..372ee4e --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/lime_brick.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:lime_dye" + }, + { + "item": "minecraft:brick" + } + ], + "result": { + "item": "ariasessentials:lime_brick", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/magma.json b/src/main/resources/data/ariasessentials/recipes/magma.json new file mode 100644 index 0000000..1aac210 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/magma.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "FFF", + "FFF", + "FFF" + ], + "key": { + "F": { + "item": "ariasessentials:magma_powder" + } + }, + "result": { + "item": "minecraft:magma_block", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/magma_powder.json b/src/main/resources/data/ariasessentials/recipes/magma_powder.json new file mode 100644 index 0000000..7f511ae --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/magma_powder.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "F" + ], + "key": { + "F": { + "item": "minecraft:magma_block" + } + }, + "result": { + "item": "ariasessentials:magma_powder", + "count": 9 + } +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/mob_capture_ball.json b/src/main/resources/data/ariasessentials/recipes/mob_capture_ball.json new file mode 100644 index 0000000..321780a --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/mob_capture_ball.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "XXX", + "XYX", + "XXX" + ], + "key": { + "X": { + "tag": "forge:ingots/eternium" + }, + "Y": { + "item": "minecraft:stone_button" + } + }, + "result": { + "item": "ariasessentials:mob_capture_ball", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/red_brick.json b/src/main/resources/data/ariasessentials/recipes/red_brick.json new file mode 100644 index 0000000..7099cd9 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/red_brick.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brick" + }, + { + "item": "minecraft:red_dye" + } + ], + "result": { + "item": "ariasessentials:red_brick", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_chunk_polish.json b/src/main/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_chunk_polish.json new file mode 100644 index 0000000..95fc727 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_chunk_polish.json @@ -0,0 +1,13 @@ +{ + "type": "create:sandpaper_polishing", + "ingredients": [ + { + "item": "biomesoplenty:rose_quartz_chunk" + } + ], + "results": [ + { + "item": "create:polished_rose_quartz" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_polish.json b/src/main/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_polish.json new file mode 100644 index 0000000..95fc727 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_polish.json @@ -0,0 +1,13 @@ +{ + "type": "create:sandpaper_polishing", + "ingredients": [ + { + "item": "biomesoplenty:rose_quartz_chunk" + } + ], + "results": [ + { + "item": "create:polished_rose_quartz" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_shard_polish.json b/src/main/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_shard_polish.json new file mode 100644 index 0000000..5df9c24 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_shard_polish.json @@ -0,0 +1,13 @@ +{ + "type": "create:sandpaper_polishing", + "ingredients": [ + { + "item": "biomesoplenty:rose_quartz_shard" + } + ], + "results": [ + { + "item": "create:polished_rose_quartz" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/tetra/seeping_bedrock.json b/src/main/resources/data/ariasessentials/recipes/tetra/seeping_bedrock.json new file mode 100644 index 0000000..f19f69e --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/tetra/seeping_bedrock.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "CCC", + "CGC", + "CCC" + ], + "key": { + "C": { + "item": "minecraft:magma_block" + }, + "G": { + "item": "minecraft:bedrock" + } + }, + "result": { + "item": "tetra:seeping_bedrock", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan.json new file mode 100644 index 0000000..993440c --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "minecraft:cyan_wool" + }, + "B": { + "item": "minecraft:obsidian" + } + }, + "result": { + "item": "ariasessentials:cyan", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_stairs.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_stairs.json new file mode 100644 index 0000000..9689919 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:cyan" + } + }, + "result": { + "item": "ariasessentials:cyan_stairs", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile.json new file mode 100644 index 0000000..cf074e5 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "ABA", + "BAB", + "ABA" + ], + "key": { + "A": { + "item": "ariasessentials:cyan" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:cyan_tile", + "count": 2 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile_br.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile_br.json new file mode 100644 index 0000000..aa34499 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile_br.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "BAB", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:cyan" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:cyan_tile_br", + "count": 2 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile_to_wall.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile_to_wall.json new file mode 100644 index 0000000..bb535c4 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile_to_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "BAB", + "ABA" + ], + "key": { + "A": { + "item": "ariasessentials:cyan" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:cyan_tile_to_wall", + "count": 2 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_wall_variant_1.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_wall_variant_1.json new file mode 100644 index 0000000..3eb014a --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_wall_variant_1.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA", + "BAB" + ], + "key": { + "A": { + "item": "ariasessentials:cyan" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:cyan_wall_variant_1", + "count": 2 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_wall_variant_2.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_wall_variant_2.json new file mode 100644 index 0000000..518fd37 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_wall_variant_2.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "BAB", + "AAA", + "BAB" + ], + "key": { + "A": { + "item": "ariasessentials:cyan" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:cyan_wall_variant_2", + "count": 2 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_light.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_light.json new file mode 100644 index 0000000..bfb57c6 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_light.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:blue_pool_tile" + }, + "B": { + "item": "minecraft:glowstone" + } + }, + "result": { + "item": "ariasessentials:blue_pool_light", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_slab.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_slab.json new file mode 100644 index 0000000..99dbae0 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:blue_pool_tile" + } + }, + "result": { + "item": "ariasessentials:blue_pool_tile_slab", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_stairs.json new file mode 100644 index 0000000..350a2c3 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:blue_pool_tile" + } + }, + "result": { + "item": "ariasessentials:blue_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_wall.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_wall.json new file mode 100644 index 0000000..ad4bd78 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_wall.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:blue_pool_tile" + } + }, + "result": { + "item": "ariasessentials:blue_pool_tile_wall", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tiles.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tiles.json new file mode 100644 index 0000000..3ac488e --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tiles.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "CAB", + "ABC", + "BAC" + ], + "key": { + "A": { + "item": "ariasessentials:blue_brick" + }, + "B": { + "item": "ariasessentials:cyan_brick" + }, + "C": { + "item": "ariasessentials:light_blue_brick" + } + }, + "result": { + "item": "ariasessentials:blue_pool_tile", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dark_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dark_pool_tile_stairs.json new file mode 100644 index 0000000..34c3935 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dark_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dark_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dark_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dark_pool_tiles.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dark_pool_tiles.json new file mode 100644 index 0000000..dc80150 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dark_pool_tiles.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AB", + "BA" + ], + "key": { + "A": { + "item": "minecraft:white_concrete" + }, + "B": { + "item": "minecraft:blue_terracotta" + } + }, + "result": { + "item": "ariasessentials:dark_pool_tile", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_light.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_light.json new file mode 100644 index 0000000..0214773 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:blue_pool_light" + }, + { + "item": "minecraft:slime_ball" + } + ], + "result": { + "item": "ariasessentials:dirty_blue_pool_light", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_slab.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_slab.json new file mode 100644 index 0000000..ef7113b --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_blue_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_blue_pool_tile_slab", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_stairs.json new file mode 100644 index 0000000..cc4f622 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_blue_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_blue_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_wall.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_wall.json new file mode 100644 index 0000000..9178499 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_wall.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_blue_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_blue_pool_tile_wall", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tiles.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tiles.json new file mode 100644 index 0000000..c7d3556 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tiles.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:slime_ball" + }, + { + "item": "ariasessentials:blue_pool_tile" + } + ], + "result": { + "item": "ariasessentials:dirty_blue_pool_tile", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/filthy_blue_pool_light.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/filthy_blue_pool_light.json new file mode 100644 index 0000000..3a00e4e --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/filthy_blue_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:dirty_blue_pool_light" + }, + { + "item": "minecraft:slime_block" + } + ], + "result": { + "item": "ariasessentials:filthy_blue_pool_light", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_light.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_light.json new file mode 100644 index 0000000..ee881a7 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:pool_light" + }, + { + "item": "minecraft:slime_ball" + } + ], + "result": { + "item": "ariasessentials:dirty_pool_light", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_slab.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_slab.json new file mode 100644 index 0000000..fd33533 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_pool_tile_slab", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_stairs.json new file mode 100644 index 0000000..bf5e481 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_wall.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_wall.json new file mode 100644 index 0000000..fc77ade --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_wall.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_pool_tile_wall", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tiles.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tiles.json new file mode 100644 index 0000000..9bfed4f --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tiles.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:slime_ball" + }, + { + "item": "ariasessentials:pool_tile" + } + ], + "result": { + "item": "ariasessentials:dirty_pool_tile", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/filthy_pool_light.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/filthy_pool_light.json new file mode 100644 index 0000000..4657ac0 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/filthy_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:dirty_pool_light" + }, + { + "item": "minecraft:slime_block" + } + ], + "result": { + "item": "ariasessentials:filthy_pool_light", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_light.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_light.json new file mode 100644 index 0000000..38e94d4 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_light.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:pool_tile" + }, + "B": { + "item": "minecraft:glowstone" + } + }, + "result": { + "item": "ariasessentials:pool_light", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_slab.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_slab.json new file mode 100644 index 0000000..90aea35 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:pool_tile" + } + }, + "result": { + "item": "ariasessentials:pool_tile_slab", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_stairs.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_stairs.json new file mode 100644 index 0000000..cfdccdd --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:pool_tile" + } + }, + "result": { + "item": "ariasessentials:pool_tile_stairs", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_wall.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_wall.json new file mode 100644 index 0000000..57fd406 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_wall.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:pool_tile" + } + }, + "result": { + "item": "ariasessentials:pool_tile_wall", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tiles.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tiles.json new file mode 100644 index 0000000..6720029 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tiles.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:white_brick" + } + }, + "result": { + "item": "ariasessentials:pool_tile", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_light.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_light.json new file mode 100644 index 0000000..1ac2e8a --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:pool_light" + }, + { + "item": "minecraft:slime_ball" + } + ], + "result": { + "item": "ariasessentials:dirty_green_pool_light", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_slab.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_slab.json new file mode 100644 index 0000000..a220487 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_green_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_green_pool_tile_slab", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_stairs.json new file mode 100644 index 0000000..f8266ec --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_green_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_green_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_wall.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_wall.json new file mode 100644 index 0000000..a38b332 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_wall.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_green_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_green_pool_tile_wall", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tiles.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tiles.json new file mode 100644 index 0000000..8f1ec57 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tiles.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:slime_ball" + }, + { + "item": "ariasessentials:green_pool_tile" + } + ], + "result": { + "item": "ariasessentials:dirty_green_pool_tile", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/filthy_green_pool_light.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/filthy_green_pool_light.json new file mode 100644 index 0000000..98f88b1 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/filthy_green_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:dirty_green_pool_light" + }, + { + "item": "minecraft:slime_block" + } + ], + "result": { + "item": "ariasessentials:filthy_green_pool_light", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_light.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_light.json new file mode 100644 index 0000000..5fa5977 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_light.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:green_pool_tile" + }, + "B": { + "item": "minecraft:glowstone" + } + }, + "result": { + "item": "ariasessentials:green_pool_light", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_slab.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_slab.json new file mode 100644 index 0000000..c22d7c9 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:green_pool_tile" + } + }, + "result": { + "item": "ariasessentials:green_pool_tile_slab", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_stairs.json new file mode 100644 index 0000000..af9f7db --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:green_pool_tile" + } + }, + "result": { + "item": "ariasessentials:green_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_wall.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_wall.json new file mode 100644 index 0000000..a63a608 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_wall.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:green_pool_tile" + } + }, + "result": { + "item": "ariasessentials:green_pool_tile_wall", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tiles.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tiles.json new file mode 100644 index 0000000..c44b7b0 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tiles.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "ABB", + "BAA", + "ABA" + ], + "key": { + "A": { + "item": "ariasessentials:lime_brick" + }, + "B": { + "item": "ariasessentials:green_brick" + } + }, + "result": { + "item": "ariasessentials:green_pool_tile", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_light.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_light.json new file mode 100644 index 0000000..d0bd6c0 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:red_pool_light" + }, + { + "item": "minecraft:slime_block" + } + ], + "result": { + "item": "ariasessentials:dirty_red_pool_light", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_slab.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_slab.json new file mode 100644 index 0000000..8ad983e --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_red_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_red_pool_tile_slab", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_stairs.json new file mode 100644 index 0000000..384fac9 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_red_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_red_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_wall.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_wall.json new file mode 100644 index 0000000..ef50615 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_wall.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_red_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_red_pool_tile_wall", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tiles.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tiles.json new file mode 100644 index 0000000..94623dc --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tiles.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AB", + "BA" + ], + "key": { + "A": { + "item": "ariasessentials:red_pool_tile" + }, + "B": { + "item": "minecraft:slime_ball" + } + }, + "result": { + "item": "ariasessentials:dirty_red_pool_tile", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/filthy_red_pool_light.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/filthy_red_pool_light.json new file mode 100644 index 0000000..f218e76 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/filthy_red_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:dirty_red_pool_light" + }, + { + "item": "minecraft:slime_block" + } + ], + "result": { + "item": "ariasessentials:filthy_red_pool_light", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_light.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_light.json new file mode 100644 index 0000000..b297490 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_light.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:red_pool_tile" + }, + "B": { + "item": "minecraft:glowstone" + } + }, + "result": { + "item": "ariasessentials:red_pool_light", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_slab.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_slab.json new file mode 100644 index 0000000..b19f6b3 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:red_pool_tile" + } + }, + "result": { + "item": "ariasessentials:red_pool_tile_slab", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_stairs.json new file mode 100644 index 0000000..e4c18b8 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:red_pool_tile" + } + }, + "result": { + "item": "ariasessentials:red_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_wall.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_wall.json new file mode 100644 index 0000000..0686737 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_wall.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:red_pool_tile" + } + }, + "result": { + "item": "ariasessentials:red_pool_tile_wall", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tiles.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tiles.json new file mode 100644 index 0000000..5698583 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tiles.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "CAB", + "ABC", + "BAC" + ], + "key": { + "A": { + "item": "ariasessentials:red_brick" + }, + "B": { + "item": "ariasessentials:dark_red_brick" + }, + "C": { + "item": "minecraft:brick" + } + }, + "result": { + "item": "ariasessentials:red_pool_tile", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/blood_red.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/blood_red.json new file mode 100644 index 0000000..0fbcc41 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/blood_red.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "minecraft:red_wool" + }, + "B": { + "item": "minecraft:obsidian" + } + }, + "result": { + "item": "ariasessentials:blood_red", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_stairs.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_stairs.json new file mode 100644 index 0000000..8bc42d0 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:blood_red" + } + }, + "result": { + "item": "ariasessentials:red_stairs", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile.json new file mode 100644 index 0000000..af1edd1 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "ABA", + "BAB", + "ABA" + ], + "key": { + "A": { + "item": "ariasessentials:blood_red" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:red_tile", + "count": 2 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile_br.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile_br.json new file mode 100644 index 0000000..f70a201 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile_br.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "BAB", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:blood_red" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:red_tile_br", + "count": 2 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile_to_wall.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile_to_wall.json new file mode 100644 index 0000000..f945bdb --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile_to_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "BAB", + "ABA" + ], + "key": { + "A": { + "item": "ariasessentials:blood_red" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:red_tile_to_wall", + "count": 2 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_wall_variant_1.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_wall_variant_1.json new file mode 100644 index 0000000..70492cb --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_wall_variant_1.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA", + "BAB" + ], + "key": { + "A": { + "item": "ariasessentials:blood_red" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:red_wall_variant_1", + "count": 2 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_wall_variant_2.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_wall_variant_2.json new file mode 100644 index 0000000..5808d47 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_wall_variant_2.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "BAB", + "AAA", + "BAB" + ], + "key": { + "A": { + "item": "ariasessentials:blood_red" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:red_wall_variant_2", + "count": 2 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/void.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/void.json new file mode 100644 index 0000000..ac7dccd --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/void.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "minecraft:black_wool" + }, + "B": { + "item": "minecraft:obsidian" + } + }, + "result": { + "item": "ariasessentials:void", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/whiteout.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/whiteout.json new file mode 100644 index 0000000..ad6f1de --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/whiteout.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "minecraft:white_wool" + }, + "B": { + "item": "minecraft:obsidian" + } + }, + "result": { + "item": "ariasessentials:whiteout", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/unstable_singularity.json b/src/main/resources/data/ariasessentials/recipes/unstable_singularity.json new file mode 100644 index 0000000..6c5edd2 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/unstable_singularity.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": ["cb"], + "key": { + "c": { + "item": "minecraft:feather" + }, + "b": { + "item": "ariasessentials:stable_singularity" + } + }, + "result": { + "item": "ariasessentials:singularity", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/white_brick.json b/src/main/resources/data/ariasessentials/recipes/white_brick.json new file mode 100644 index 0000000..c1e9721 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/white_brick.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brick" + }, + { + "item": "minecraft:white_dye" + } + ], + "result": { + "item": "ariasessentials:white_brick", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/tags/blocks/brimstone.json b/src/main/resources/data/ariasessentials/tags/blocks/brimstone.json new file mode 100644 index 0000000..4b0beca --- /dev/null +++ b/src/main/resources/data/ariasessentials/tags/blocks/brimstone.json @@ -0,0 +1,6 @@ +{ + "values": [ + "biomesoplenty:brimstone", + "byg:brimstone" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/blocks/catwalk.json b/src/main/resources/data/ariasessentials/tags/blocks/catwalk.json deleted file mode 100644 index 124a07c..0000000 --- a/src/main/resources/data/ariasessentials/tags/blocks/catwalk.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "ariasessentials:steel_catwalk", - "ariasessentials:steel_catwalk_top" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/blocks/deprecated.json b/src/main/resources/data/ariasessentials/tags/blocks/deprecated.json new file mode 100644 index 0000000..d6649e7 --- /dev/null +++ b/src/main/resources/data/ariasessentials/tags/blocks/deprecated.json @@ -0,0 +1,4 @@ +{ + "values": [ + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/blocks/engineersdecor.json b/src/main/resources/data/ariasessentials/tags/blocks/engineersdecor.json index 6fcf470..8491c22 100644 --- a/src/main/resources/data/ariasessentials/tags/blocks/engineersdecor.json +++ b/src/main/resources/data/ariasessentials/tags/blocks/engineersdecor.json @@ -1,8 +1,6 @@ { "values": [ "ariasessentials:clinker_brick_block", - "ariasessentials:clinker_brick_recessed", - "ariasessentials:clinker_brick_vertically_slit", "ariasessentials:clinker_brick_slab", "ariasessentials:clinker_brick_stairs", "ariasessentials:clinker_brick_wall", @@ -26,18 +24,6 @@ "ariasessentials:rebar_concrete_tile_stairs", "ariasessentials:panzerglass_block", - "ariasessentials:panzerglass_slab", - - "ariasessentials:steel_catwalk", - "ariasessentials:steel_catwalk_top", - "ariasessentials:steel_floor_grating", - "ariasessentials:steel_floor_grating_top", - "ariasessentials:steel_catwalk_stairs", - "ariasessentials:steel_railing", - "ariasessentials:steel_catwalk_stairs_lr", - "ariasessentials:steel_catwalk_stairs_rr", - "ariasessentials:steel_catwalk_stairs_dr", - "ariasessentials:steel_table", - "ariasessentials:steel_catwalk_block" + "ariasessentials:panzerglass_slab" ] } \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/blocks/plain_concretes.json b/src/main/resources/data/ariasessentials/tags/blocks/plain_concrete.json similarity index 100% rename from src/main/resources/data/ariasessentials/tags/blocks/plain_concretes.json rename to src/main/resources/data/ariasessentials/tags/blocks/plain_concrete.json diff --git a/src/main/resources/data/ariasessentials/tags/blocks/pool_tiles.json b/src/main/resources/data/ariasessentials/tags/blocks/pool_tiles.json new file mode 100644 index 0000000..6a45954 --- /dev/null +++ b/src/main/resources/data/ariasessentials/tags/blocks/pool_tiles.json @@ -0,0 +1,56 @@ +{ + "values": [ + + "ariasessentials:pool_tile", + "ariasessentials:pool_tile_stairs", + "ariasessentials:pool_tile_slab", + "ariasessentials:pool_light", + "ariasessentials:dirty_pool_tile", + "ariasessentials:dirty_pool_tile_stairs", + "ariasessentials:dirty_pool_tile_slab", + "ariasessentials:dirty_pool_tile_wall", + "ariasessentials:dirty_pool_light", + "ariasessentials:filthy_pool_light", + + "ariasessentials:dark_pool_tile", + "ariasessentials:dark_pool_tile_stairs", + "ariasessentials:dark_pool_tile_slab", + "ariasessentials:dark_pool_light", + + "ariasessentials:green_pool_tile", + "ariasessentials:green_pool_tile_stairs", + "ariasessentials:green_pool_tile_slab", + "ariasessentials:green_pool_tile_wall", + "ariasessentials:green_pool_light", + "ariasessentials:dirty_green_pool_tile", + "ariasessentials:dirty_green_pool_tile_stairs", + "ariasessentials:dirty_green_pool_tile_slab", + "ariasessentials:dirty_green_pool_tile_wall", + "ariasessentials:dirty_green_pool_light", + "ariasessentials:filthy_green_pool_light", + + "ariasessentials:blue_pool_tile", + "ariasessentials:blue_pool_tile_stairs", + "ariasessentials:blue_pool_tile_slab", + "ariasessentials:blue_pool_tile_wall", + "ariasessentials:blue_pool_light", + "ariasessentials:dirty_blue_pool_tile", + "ariasessentials:dirty_blue_pool_tile_stairs", + "ariasessentials:dirty_blue_pool_tile_slab", + "ariasessentials:dirty_blue_pool_tile_wall", + "ariasessentials:dirty_blue_pool_light", + "ariasessentials:filthy_blue_pool_light", + + "ariasessentials:red_pool_tile", + "ariasessentials:red_pool_tile_stairs", + "ariasessentials:red_pool_tile_slab", + "ariasessentials:red_pool_tile_wall", + "ariasessentials:red_pool_light", + "ariasessentials:dirty_red_pool_tile", + "ariasessentials:dirty_red_pool_tile_stairs", + "ariasessentials:dirty_red_pool_tile_slab", + "ariasessentials:dirty_red_pool_tile_wall", + "ariasessentials:dirty_red_pool_light", + "ariasessentials:filthy_red_pool_light" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/blocks/thresholds/cyan.json b/src/main/resources/data/ariasessentials/tags/blocks/thresholds/cyan.json new file mode 100644 index 0000000..cadd0e7 --- /dev/null +++ b/src/main/resources/data/ariasessentials/tags/blocks/thresholds/cyan.json @@ -0,0 +1,11 @@ +{ + "values": [ + "ariasessentials:cyan", + "ariasessentials:cyan_tile", + "ariasessentials:cyan_stairs", + "ariasessentials:cyan_tile_br", + "ariasessentials:cyan_tile_to_wall", + "ariasessentials:cyan_wall", + "ariasessentials:cyan_wall2" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/blocks/thresholds/lime.json b/src/main/resources/data/ariasessentials/tags/blocks/thresholds/lime.json new file mode 100644 index 0000000..a45a882 --- /dev/null +++ b/src/main/resources/data/ariasessentials/tags/blocks/thresholds/lime.json @@ -0,0 +1,11 @@ +{ + "values": [ + "ariasessentials:lime", + "ariasessentials:lime_tile", + "ariasessentials:lime_stairs", + "ariasessentials:lime_tile_br", + "ariasessentials:lime_tile_to_wall", + "ariasessentials:lime_wall", + "ariasessentials:lime_wall2" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/blocks/thresholds/pool.json b/src/main/resources/data/ariasessentials/tags/blocks/thresholds/pool.json new file mode 100644 index 0000000..8640f4a --- /dev/null +++ b/src/main/resources/data/ariasessentials/tags/blocks/thresholds/pool.json @@ -0,0 +1,55 @@ +{ + "values": [ + "ariasessentials:pool_tile", + "ariasessentials:pool_tile_stairs", + "ariasessentials:pool_tile_slab", + "ariasessentials:pool_light", + "ariasessentials:dirty_pool_tile", + "ariasessentials:dirty_pool_tile_stairs", + "ariasessentials:dirty_pool_tile_slab", + "ariasessentials:dirty_pool_tile_wall", + "ariasessentials:dirty_pool_light", + "ariasessentials:filthy_pool_light", + + "ariasessentials:dark_pool_tile", + "ariasessentials:dark_pool_tile_stairs", + "ariasessentials:dark_pool_tile_slab", + "ariasessentials:dark_pool_light", + + "ariasessentials:green_pool_tile", + "ariasessentials:green_pool_tile_stairs", + "ariasessentials:green_pool_tile_slab", + "ariasessentials:green_pool_tile_wall", + "ariasessentials:green_pool_light", + "ariasessentials:dirty_green_pool_tile", + "ariasessentials:dirty_green_pool_tile_stairs", + "ariasessentials:dirty_green_pool_tile_slab", + "ariasessentials:dirty_green_pool_tile_wall", + "ariasessentials:dirty_green_pool_light", + "ariasessentials:filthy_green_pool_light", + + "ariasessentials:blue_pool_tile", + "ariasessentials:blue_pool_tile_stairs", + "ariasessentials:blue_pool_tile_slab", + "ariasessentials:blue_pool_tile_wall", + "ariasessentials:blue_pool_light", + "ariasessentials:dirty_blue_pool_tile", + "ariasessentials:dirty_blue_pool_tile_stairs", + "ariasessentials:dirty_blue_pool_tile_slab", + "ariasessentials:dirty_blue_pool_tile_wall", + "ariasessentials:dirty_blue_pool_light", + "ariasessentials:filthy_blue_pool_light", + + "ariasessentials:red_pool_tile", + "ariasessentials:red_pool_tile_stairs", + "ariasessentials:red_pool_tile_slab", + "ariasessentials:red_pool_tile_wall", + "ariasessentials:red_pool_light", + "ariasessentials:dirty_red_pool_tile", + "ariasessentials:dirty_red_pool_tile_stairs", + "ariasessentials:dirty_red_pool_tile_slab", + "ariasessentials:dirty_red_pool_tile_wall", + "ariasessentials:dirty_red_pool_light", + "ariasessentials:filthy_red_pool_light" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/blocks/thresholds/red.json b/src/main/resources/data/ariasessentials/tags/blocks/thresholds/red.json new file mode 100644 index 0000000..f67523f --- /dev/null +++ b/src/main/resources/data/ariasessentials/tags/blocks/thresholds/red.json @@ -0,0 +1,11 @@ +{ + "values": [ + "ariasessentials:blood_red", + "ariasessentials:red_tile", + "ariasessentials:red_stairs", + "ariasessentials:red_tile_br", + "ariasessentials:red_tile_to_wall", + "ariasessentials:red_wall", + "ariasessentials:red_wall2" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/blocks/uncrafting_tables.json b/src/main/resources/data/ariasessentials/tags/blocks/uncrafting_tables.json new file mode 100644 index 0000000..b0f2ed2 --- /dev/null +++ b/src/main/resources/data/ariasessentials/tags/blocks/uncrafting_tables.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#ariasessentials:uncrafting_tables/uncrafter" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/blocks/uncrafting_tables/uncrafter.json b/src/main/resources/data/ariasessentials/tags/blocks/uncrafting_tables/uncrafter.json new file mode 100644 index 0000000..cf5be9c --- /dev/null +++ b/src/main/resources/data/ariasessentials/tags/blocks/uncrafting_tables/uncrafter.json @@ -0,0 +1,6 @@ +{ + "values": [ + "twilightforest:uncrafting_table", + "minecraft:crafting_table" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/items/deprecated.json b/src/main/resources/data/ariasessentials/tags/items/deprecated.json new file mode 100644 index 0000000..d6649e7 --- /dev/null +++ b/src/main/resources/data/ariasessentials/tags/items/deprecated.json @@ -0,0 +1,4 @@ +{ + "values": [ + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/items/engineersdecor.json b/src/main/resources/data/ariasessentials/tags/items/engineersdecor.json index 0178d56..8491c22 100644 --- a/src/main/resources/data/ariasessentials/tags/items/engineersdecor.json +++ b/src/main/resources/data/ariasessentials/tags/items/engineersdecor.json @@ -1,8 +1,6 @@ { "values": [ "ariasessentials:clinker_brick_block", - "ariasessentials:clinker_brick_recessed", - "ariasessentials:clinker_brick_vertically_slit", "ariasessentials:clinker_brick_slab", "ariasessentials:clinker_brick_stairs", "ariasessentials:clinker_brick_wall", @@ -11,8 +9,6 @@ "ariasessentials:clinker_brick_stained_slab", "ariasessentials:clinker_brick_stained_stairs", - "ariasessentials:clinker_brick_sastor_corner_block", - "ariasessentials:slag_brick_block", "ariasessentials:slag_brick_slab", "ariasessentials:slag_brick_stairs", @@ -28,18 +24,6 @@ "ariasessentials:rebar_concrete_tile_stairs", "ariasessentials:panzerglass_block", - "ariasessentials:panzerglass_slab", - - "ariasessentials:steel_catwalk", - "ariasessentials:steel_catwalk_top", - "ariasessentials:steel_floor_grating", - "ariasessentials:steel_floor_grating_top", - "ariasessentials:steel_catwalk_stairs", - "ariasessentials:steel_railing", - "ariasessentials:steel_catwalk_stairs_lr", - "ariasessentials:steel_catwalk_stairs_rr", - "ariasessentials:steel_catwalk_stairs_dr", - "ariasessentials:steel_table", - "ariasessentials:steel_catwalk_block" + "ariasessentials:panzerglass_slab" ] } \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/items/plain_concretes.json b/src/main/resources/data/ariasessentials/tags/items/plain_concretes.json deleted file mode 100644 index b53590f..0000000 --- a/src/main/resources/data/ariasessentials/tags/items/plain_concretes.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:black_concrete_powder", - "minecraft:blue_concrete_powder", - "minecraft:brown_concrete_powder", - "minecraft:cyan_concrete_powder", - "minecraft:gray_concrete_powder", - "minecraft:green_concrete_powder", - "minecraft:light_blue_concrete_powder", - "minecraft:light_gray_concrete_powder", - "minecraft:lime_concrete_powder", - "minecraft:magenta_concrete_powder", - "minecraft:orange_concrete_powder", - "minecraft:pink_concrete_powder", - "minecraft:purple_concrete_powder", - "minecraft:red_concrete_powder", - "minecraft:white_concrete_powder", - "minecraft:yellow_concrete_powder", - "minecraft:black_concrete", - "minecraft:blue_concrete", - "minecraft:brown_concrete", - "minecraft:cyan_concrete", - "minecraft:gray_concrete", - "minecraft:green_concrete", - "minecraft:light_blue_concrete", - "minecraft:light_gray_concrete", - "minecraft:lime_concrete", - "minecraft:magenta_concrete", - "minecraft:orange_concrete", - "minecraft:pink_concrete", - "minecraft:purple_concrete", - "minecraft:red_concrete", - "minecraft:white_concrete", - "minecraft:yellow_concrete" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/items/pool_tiles.json b/src/main/resources/data/ariasessentials/tags/items/pool_tiles.json new file mode 100644 index 0000000..c63da67 --- /dev/null +++ b/src/main/resources/data/ariasessentials/tags/items/pool_tiles.json @@ -0,0 +1,57 @@ +{ + "values": [ + + "ariasessentials:pool_tile", + "ariasessentials:pool_tile_stairs", + "ariasessentials:pool_tile_slab", + "ariasessentials:pool_tile_wall", + "ariasessentials:pool_tile_light", + "ariasessentials:dirty_pool_tile", + "ariasessentials:dirty_pool_tile_stairs", + "ariasessentials:dirty_pool_tile_slab", + "ariasessentials:dirty_pool_tile_wall", + "ariasessentials:dirty_pool_tile_light", + "ariasessentials:filthy_pool_tile_light", + + "ariasessentials:dark_pool_tile", + "ariasessentials:dark_pool_tile_stairs", + "ariasessentials:dark_pool_tile_slab", + "ariasessentials:dark_pool_tile_light", + + "ariasessentials:green_pool_tile", + "ariasessentials:green_pool_tile_stairs", + "ariasessentials:green_pool_tile_slab", + "ariasessentials:green_pool_tile_wall", + "ariasessentials:green_pool_tile_light", + "ariasessentials:dirty_green_pool_tile", + "ariasessentials:dirty_green_pool_tile_stairs", + "ariasessentials:dirty_green_pool_tile_slab", + "ariasessentials:dirty_green_pool_tile_wall", + "ariasessentials:dirty_green_pool_tile_light", + "ariasessentials:filthy_green_pool_tile_light", + + "ariasessentials:blue_pool_tile", + "ariasessentials:blue_pool_tile_stairs", + "ariasessentials:blue_pool_tile_slab", + "ariasessentials:blue_pool_tile_wall", + "ariasessentials:blue_pool_tile_light", + "ariasessentials:dirty_blue_pool_tile", + "ariasessentials:dirty_blue_pool_tile_stairs", + "ariasessentials:dirty_blue_pool_tile_slab", + "ariasessentials:dirty_blue_pool_tile_wall", + "ariasessentials:dirty_blue_pool_tile_light", + "ariasessentials:filthy_blue_pool_tile_light", + + "ariasessentials:red_pool_tile", + "ariasessentials:red_pool_tile_stairs", + "ariasessentials:red_pool_tile_slab", + "ariasessentials:red_pool_tile_wall", + "ariasessentials:red_pool_tile_light", + "ariasessentials:dirty_red_pool_tile", + "ariasessentials:dirty_red_pool_tile_stairs", + "ariasessentials:dirty_red_pool_tile_slab", + "ariasessentials:dirty_red_pool_tile_wall", + "ariasessentials:dirty_red_pool_tile_light", + "ariasessentials:filthy_red_pool_tile_light" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/items/uncrafting_tables.json b/src/main/resources/data/ariasessentials/tags/items/uncrafting_tables.json new file mode 100644 index 0000000..b0f2ed2 --- /dev/null +++ b/src/main/resources/data/ariasessentials/tags/items/uncrafting_tables.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#ariasessentials:uncrafting_tables/uncrafter" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/items/uncrafting_tables/uncrafter.json b/src/main/resources/data/ariasessentials/tags/items/uncrafting_tables/uncrafter.json new file mode 100644 index 0000000..cf5be9c --- /dev/null +++ b/src/main/resources/data/ariasessentials/tags/items/uncrafting_tables/uncrafter.json @@ -0,0 +1,6 @@ +{ + "values": [ + "twilightforest:uncrafting_table", + "minecraft:crafting_table" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/worldgen/configured_feature/eternium_oregen_overworld.json b/src/main/resources/data/ariasessentials/worldgen/configured_feature/eternium_oregen_overworld.json new file mode 100644 index 0000000..a790d6b --- /dev/null +++ b/src/main/resources/data/ariasessentials/worldgen/configured_feature/eternium_oregen_overworld.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 8, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + }, + "state": { + "Name": "ariasessentials:eternium_ore_block" + } + }, + { + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + }, + "state": { + "Name": "ariasessentials:deepslate_eternium_ore_block" + } + } + ] + } +} diff --git a/src/main/resources/data/ariasessentials/worldgen/noise_settings/builder.json b/src/main/resources/data/ariasessentials/worldgen/noise_settings/builder.json new file mode 100644 index 0000000..e308461 --- /dev/null +++ b/src/main/resources/data/ariasessentials/worldgen/noise_settings/builder.json @@ -0,0 +1,2448 @@ +{ + "sea_level": -64, + "disable_mob_generation": true, + "aquifers_enabled": false, + "ore_veins_enabled": false, + "legacy_random_source": false, + "default_block": { + "Name": "minecraft:stone" + }, + "default_fluid": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + }, + "noise": { + "min_y": -64, + "height": 384, + "size_horizontal": 1, + "size_vertical": 2 + }, + "noise_router": { + "barrier": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_barrier", + "xz_scale": 1, + "y_scale": 0.5 + }, + "fluid_level_floodedness": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_fluid_level_floodedness", + "xz_scale": 1, + "y_scale": 0.67 + }, + "fluid_level_spread": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_fluid_level_spread", + "xz_scale": 1, + "y_scale": 0.7142857142857143 + }, + "lava": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_lava", + "xz_scale": 1, + "y_scale": 1 + }, + "temperature": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:temperature", + "xz_scale": 0.25, + "y_scale": 0, + "shift_x": "minecraft:shift_x", + "shift_y": 0, + "shift_z": "minecraft:shift_z" + }, + "vegetation": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:vegetation", + "xz_scale": 0.25, + "y_scale": 0, + "shift_x": "minecraft:shift_x", + "shift_y": 0, + "shift_z": "minecraft:shift_z" + }, + "continents": "minecraft:overworld/continents", + "erosion": "minecraft:overworld/erosion", + "depth": "minecraft:overworld/depth", + "ridges": "minecraft:overworld/ridges", + "initial_density_without_jaggedness": { + "type": "minecraft:add", + "argument1": 0.1171875, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_y": -64, + "to_y": -40, + "from_value": 0, + "to_value": 1 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.1171875, + "argument2": { + "type": "minecraft:add", + "argument1": -0.078125, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_y": 240, + "to_y": 256, + "from_value": 1, + "to_value": 0 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0.078125, + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": -0.703125, + "argument2": { + "type": "minecraft:mul", + "argument1": 4, + "argument2": { + "type": "minecraft:quarter_negative", + "argument": { + "type": "minecraft:mul", + "argument1": "minecraft:overworld/depth", + "argument2": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld/factor" + } + } + } + } + }, + "min": -64, + "max": 64 + } + } + } + } + } + } + }, + "final_density": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:squeeze", + "argument": { + "type": "minecraft:mul", + "argument1": 0.25, + "argument2": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:blend_density", + "argument": { + "type": "minecraft:add", + "argument1": 0.1171875, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_y": -64, + "to_y": -50, + "from_value": 0, + "to_value": 0.05 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -2, + "argument2": { + "type": "minecraft:add", + "argument1": -4, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_y": 240, + "to_y": 256, + "from_value": 1, + "to_value": 0 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0.078125, + "argument2": { + "type": "minecraft:range_choice", + "input": "minecraft:overworld/sloped_cheese", + "min_inclusive": -1000000, + "max_exclusive": 1.5625, + "when_in_range": { + "type": "minecraft:min", + "argument1": "minecraft:overworld/sloped_cheese", + "argument2": { + "type": "minecraft:mul", + "argument1": 5, + "argument2": "minecraft:overworld/caves/entrances" + } + }, + "when_out_of_range": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 4, + "argument2": { + "type": "minecraft:square", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:cave_layer", + "xz_scale": 1, + "y_scale": 8 + } + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 0.27, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:cave_cheese", + "xz_scale": 1, + "y_scale": 0.6666666666666666 + } + }, + "min": -1, + "max": 1 + }, + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 1.5, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.64, + "argument2": "minecraft:overworld/sloped_cheese" + } + }, + "min": 0, + "max": 0.5 + } + } + }, + "argument2": "minecraft:overworld/caves/entrances" + }, + "argument2": { + "type": "minecraft:add", + "argument1": "minecraft:overworld/caves/spaghetti_2d", + "argument2": "minecraft:overworld/caves/spaghetti_roughness_function" + } + }, + "argument2": { + "type": "minecraft:range_choice", + "input": "minecraft:overworld/caves/pillars", + "min_inclusive": -1000000, + "max_exclusive": 0.03, + "when_in_range": -1000000, + "when_out_of_range": "minecraft:overworld/caves/pillars" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "argument2": "minecraft:overworld/caves/noodle" + }, + "vein_toggle": 0, + "vein_ridged": 0, + "vein_gap": 0 + }, + "spawn_target": [ + { + "temperature": 0, + "humidity": 0, + "continentalness": 0, + "erosion": 0, + "weirdness": 0, + "depth": 0, + "offset": 0 + }, + { + "temperature": 0, + "humidity": 0, + "continentalness": 0, + "erosion": 0, + "weirdness": 0, + "depth": 0, + "offset": 0 + } + ], + "surface_rule": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "random_name": "minecraft:bedrock_floor", + "true_at_and_below": { + "above_bottom": 0 + }, + "false_at_and_above": { + "above_bottom": 5 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:bedrock" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:above_preliminary_surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:wooded_badlands" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 97 + }, + "surface_depth_multiplier": 2, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.909, + "max_threshold": -0.5454 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.1818, + "max_threshold": 0.1818 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.5454, + "max_threshold": 0.909 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:swamp" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 62 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface_swamp", + "min_threshold": 0, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 60 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface_swamp", + "min_threshold": 0, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:badlands", + "minecraft:eroded_badlands", + "minecraft:wooded_badlands" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 256 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.909, + "max_threshold": -0.5454 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.1818, + "max_threshold": 0.1818 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.5454, + "max_threshold": 0.909 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -1, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:hole" + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -6, + "surface_depth_multiplier": -1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": -1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1, + "add_stone_depth": true + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": true, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -6, + "surface_depth_multiplier": -1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -1, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:air" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:temperature" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + ] + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:packed_ice", + "min_threshold": 0, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:ice", + "min_threshold": 0, + "max_threshold": 0.025 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:snowy_slopes" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.35, + "max_threshold": 0.6 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:grove" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.35, + "max_threshold": 0.6 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:calcite", + "min_threshold": -0.0125, + "max_threshold": 0.0125 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_shore" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:gravel", + "min_threshold": -0.05, + "max_threshold": 0.05 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_hills" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:dripstone_caves" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_savanna" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.21212121212121213, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.06060606060606061, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_gravelly_hills" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.24242424242424243, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:old_growth_pine_taiga", + "minecraft:old_growth_spruce_taiga" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.21212121212121213, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.11515151515151514, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:podzol", + "Properties": { + "snowy": "false" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:ice_spikes" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mushroom_fields" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mycelium", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -6, + "surface_depth_multiplier": -1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": true, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:packed_ice", + "min_threshold": -0.5, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:ice", + "min_threshold": -0.0625, + "max_threshold": 0.025 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:snowy_slopes" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.45, + "max_threshold": 0.58 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:grove" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.45, + "max_threshold": 0.58 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:calcite", + "min_threshold": -0.0125, + "max_threshold": 0.0125 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_shore" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:gravel", + "min_threshold": -0.05, + "max_threshold": 0.05 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_hills" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:dripstone_caves" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_savanna" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.21212121212121213, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_gravelly_hills" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.24242424242424243, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": true, + "secondary_depth_range": 6 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": true, + "secondary_depth_range": 30 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks", + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:lukewarm_ocean", + "minecraft:deep_lukewarm_ocean" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "random_name": "minecraft:deepslate", + "true_at_and_below": { + "absolute": 0 + }, + "false_at_and_above": { + "absolute": 8 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + } + ] + } +} diff --git a/src/main/resources/data/ariasessentials/worldgen/noise_settings/resource.json b/src/main/resources/data/ariasessentials/worldgen/noise_settings/resource.json new file mode 100644 index 0000000..514a460 --- /dev/null +++ b/src/main/resources/data/ariasessentials/worldgen/noise_settings/resource.json @@ -0,0 +1,2542 @@ +{ + "sea_level": 63, + "disable_mob_generation": true, + "aquifers_enabled": true, + "ore_veins_enabled": true, + "legacy_random_source": false, + "default_block": { + "Name": "minecraft:stone" + }, + "default_fluid": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + }, + "noise": { + "min_y": -64, + "height": 384, + "size_horizontal": 1, + "size_vertical": 2 + }, + "noise_router": { + "barrier": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_barrier", + "xz_scale": 1, + "y_scale": 0.5 + }, + "fluid_level_floodedness": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_fluid_level_floodedness", + "xz_scale": 1, + "y_scale": 0.67 + }, + "fluid_level_spread": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_fluid_level_spread", + "xz_scale": 1, + "y_scale": 0.7142857142857143 + }, + "lava": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_lava", + "xz_scale": 1, + "y_scale": 1 + }, + "temperature": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:temperature", + "xz_scale": 0.25, + "y_scale": 0, + "shift_x": "minecraft:shift_x", + "shift_y": 0, + "shift_z": "minecraft:shift_z" + }, + "vegetation": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:vegetation", + "xz_scale": 0.25, + "y_scale": 0, + "shift_x": "minecraft:shift_x", + "shift_y": 0, + "shift_z": "minecraft:shift_z" + }, + "continents": "minecraft:overworld/continents", + "erosion": "minecraft:overworld/erosion", + "depth": "minecraft:overworld/depth", + "ridges": "minecraft:overworld/ridges", + "initial_density_without_jaggedness": { + "type": "minecraft:add", + "argument1": 0.1171875, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_y": -64, + "to_y": -40, + "from_value": 0, + "to_value": 1 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.1171875, + "argument2": { + "type": "minecraft:add", + "argument1": -0.078125, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_y": 240, + "to_y": 256, + "from_value": 1, + "to_value": 0 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0.078125, + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": -0.703125, + "argument2": { + "type": "minecraft:mul", + "argument1": 4, + "argument2": { + "type": "minecraft:quarter_negative", + "argument": { + "type": "minecraft:mul", + "argument1": "minecraft:overworld/depth", + "argument2": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld/factor" + } + } + } + } + }, + "min": -64, + "max": 64 + } + } + } + } + } + } + }, + "final_density": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:squeeze", + "argument": { + "type": "minecraft:mul", + "argument1": 0.64, + "argument2": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:blend_density", + "argument": { + "type": "minecraft:add", + "argument1": 0.1171875, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_y": -64, + "to_y": -40, + "from_value": 0, + "to_value": 1 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.1171875, + "argument2": { + "type": "minecraft:add", + "argument1": -0.078125, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_y": 240, + "to_y": 256, + "from_value": 1, + "to_value": 0 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0.078125, + "argument2": { + "type": "minecraft:range_choice", + "input": "minecraft:overworld/sloped_cheese", + "min_inclusive": -1000000, + "max_exclusive": 1.5625, + "when_in_range": { + "type": "minecraft:min", + "argument1": "minecraft:overworld/sloped_cheese", + "argument2": { + "type": "minecraft:mul", + "argument1": 5, + "argument2": "minecraft:overworld/caves/entrances" + } + }, + "when_out_of_range": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 4, + "argument2": { + "type": "minecraft:square", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:cave_layer", + "xz_scale": 1, + "y_scale": 8 + } + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 0.27, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:cave_cheese", + "xz_scale": 1, + "y_scale": 0.6666666666666666 + } + }, + "min": -1, + "max": 1 + }, + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 1.5, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.64, + "argument2": "minecraft:overworld/sloped_cheese" + } + }, + "min": 0, + "max": 0.5 + } + } + }, + "argument2": "minecraft:overworld/caves/entrances" + }, + "argument2": { + "type": "minecraft:add", + "argument1": "minecraft:overworld/caves/spaghetti_2d", + "argument2": "minecraft:overworld/caves/spaghetti_roughness_function" + } + }, + "argument2": { + "type": "minecraft:range_choice", + "input": "minecraft:overworld/caves/pillars", + "min_inclusive": -1000000, + "max_exclusive": 0.03, + "when_in_range": -1000000, + "when_out_of_range": "minecraft:overworld/caves/pillars" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "argument2": "minecraft:overworld/caves/noodle" + }, + "vein_toggle": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "min_inclusive": -60, + "max_exclusive": 51, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:ore_veininess", + "xz_scale": 1.5, + "y_scale": 1.5 + }, + "when_out_of_range": 0 + } + }, + "vein_ridged": { + "type": "minecraft:add", + "argument1": -0.07999999821186066, + "argument2": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "min_inclusive": -60, + "max_exclusive": 51, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:ore_vein_a", + "xz_scale": 4, + "y_scale": 4 + }, + "when_out_of_range": 0 + } + } + }, + "argument2": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "min_inclusive": -60, + "max_exclusive": 51, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:ore_vein_b", + "xz_scale": 4, + "y_scale": 4 + }, + "when_out_of_range": 0 + } + } + } + } + }, + "vein_gap": { + "type": "minecraft:noise", + "noise": "minecraft:ore_gap", + "xz_scale": 1, + "y_scale": 1 + } + }, + "spawn_target": [ + { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + -0.16 + ], + "depth": 0, + "offset": 0 + }, + { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + 0.16, + 1 + ], + "depth": 0, + "offset": 0 + } + ], + "surface_rule": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "random_name": "minecraft:bedrock_floor", + "true_at_and_below": { + "above_bottom": 0 + }, + "false_at_and_above": { + "above_bottom": 5 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:bedrock" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:above_preliminary_surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:wooded_badlands" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 97 + }, + "surface_depth_multiplier": 2, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.909, + "max_threshold": -0.5454 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.1818, + "max_threshold": 0.1818 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.5454, + "max_threshold": 0.909 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:swamp" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 62 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface_swamp", + "min_threshold": 0, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 60 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface_swamp", + "min_threshold": 0, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:badlands", + "minecraft:eroded_badlands", + "minecraft:wooded_badlands" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 256 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.909, + "max_threshold": -0.5454 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.1818, + "max_threshold": 0.1818 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.5454, + "max_threshold": 0.909 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -1, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:hole" + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -6, + "surface_depth_multiplier": -1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": -1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1, + "add_stone_depth": true + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": true, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -6, + "surface_depth_multiplier": -1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -1, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:air" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:temperature" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + ] + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:packed_ice", + "min_threshold": 0, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:ice", + "min_threshold": 0, + "max_threshold": 0.025 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:snowy_slopes" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.35, + "max_threshold": 0.6 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:grove" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.35, + "max_threshold": 0.6 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:calcite", + "min_threshold": -0.0125, + "max_threshold": 0.0125 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_shore" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:gravel", + "min_threshold": -0.05, + "max_threshold": 0.05 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_hills" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:dripstone_caves" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_savanna" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.21212121212121213, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.06060606060606061, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_gravelly_hills" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.24242424242424243, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:old_growth_pine_taiga", + "minecraft:old_growth_spruce_taiga" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.21212121212121213, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.11515151515151514, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:podzol", + "Properties": { + "snowy": "false" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:ice_spikes" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mushroom_fields" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mycelium", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -6, + "surface_depth_multiplier": -1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": true, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:packed_ice", + "min_threshold": -0.5, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:ice", + "min_threshold": -0.0625, + "max_threshold": 0.025 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:snowy_slopes" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.45, + "max_threshold": 0.58 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:grove" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.45, + "max_threshold": 0.58 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:calcite", + "min_threshold": -0.0125, + "max_threshold": 0.0125 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_shore" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:gravel", + "min_threshold": -0.05, + "max_threshold": 0.05 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_hills" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:dripstone_caves" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_savanna" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.21212121212121213, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_gravelly_hills" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.24242424242424243, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": true, + "secondary_depth_range": 6 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": true, + "secondary_depth_range": 30 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks", + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:lukewarm_ocean", + "minecraft:deep_lukewarm_ocean" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "random_name": "minecraft:deepslate", + "true_at_and_below": { + "absolute": 0 + }, + "false_at_and_above": { + "absolute": 8 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + } + ] + } +} diff --git a/src/main/resources/data/ariasessentials/worldgen/placed_feature/eternium_oregen_overworld.json b/src/main/resources/data/ariasessentials/worldgen/placed_feature/eternium_oregen_overworld.json new file mode 100644 index 0000000..094ccfc --- /dev/null +++ b/src/main/resources/data/ariasessentials/worldgen/placed_feature/eternium_oregen_overworld.json @@ -0,0 +1,27 @@ +{ + "feature": "ariasessentials:eternium_oregen_overworld", + "placement": [ + { + "type": "minecraft:count", + "count": 8 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "min_inclusive": { + "absolute": -20 + }, + "max_inclusive": { + "absolute": 25 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} diff --git a/src/main/resources/data/forge/tags/blocks/ore_rates/singular.json b/src/main/resources/data/forge/tags/blocks/ore_rates/singular.json new file mode 100644 index 0000000..f345cb5 --- /dev/null +++ b/src/main/resources/data/forge/tags/blocks/ore_rates/singular.json @@ -0,0 +1,4 @@ +{ + "values": [ + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/blocks/ores.json b/src/main/resources/data/forge/tags/blocks/ores.json new file mode 100644 index 0000000..31b4208 --- /dev/null +++ b/src/main/resources/data/forge/tags/blocks/ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#forge:ores/cobalt", + "#forge:ores/eternium" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/blocks/ores/eternium.json b/src/main/resources/data/forge/tags/blocks/ores/eternium.json new file mode 100644 index 0000000..13baeba --- /dev/null +++ b/src/main/resources/data/forge/tags/blocks/ores/eternium.json @@ -0,0 +1,6 @@ +{ + "values": [ + "ariasessentials:eternium_ore_block", + "ariasessentials:deepslate_eternium_ore_block" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/blocks/ores_in_ground/netherrack.json b/src/main/resources/data/forge/tags/blocks/ores_in_ground/netherrack.json new file mode 100644 index 0000000..f345cb5 --- /dev/null +++ b/src/main/resources/data/forge/tags/blocks/ores_in_ground/netherrack.json @@ -0,0 +1,4 @@ +{ + "values": [ + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/blocks/storage_blocks.json b/src/main/resources/data/forge/tags/blocks/storage_blocks.json new file mode 100644 index 0000000..298093d --- /dev/null +++ b/src/main/resources/data/forge/tags/blocks/storage_blocks.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#forge:storage_blocks/eternium" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/blocks/storage_blocks/eternium.json b/src/main/resources/data/forge/tags/blocks/storage_blocks/eternium.json new file mode 100644 index 0000000..b351961 --- /dev/null +++ b/src/main/resources/data/forge/tags/blocks/storage_blocks/eternium.json @@ -0,0 +1,5 @@ +{ + "values": [ + "otemod:eternium_block" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/brimstone.json b/src/main/resources/data/forge/tags/items/brimstone.json new file mode 100644 index 0000000..b85d8d6 --- /dev/null +++ b/src/main/resources/data/forge/tags/items/brimstone.json @@ -0,0 +1,5 @@ +{ + "values": [ + "biomesoplenty:brimstone" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/dusts.json b/src/main/resources/data/forge/tags/items/dusts.json new file mode 100644 index 0000000..b35632b --- /dev/null +++ b/src/main/resources/data/forge/tags/items/dusts.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#forge:dusts/magma" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/dusts/magma.json b/src/main/resources/data/forge/tags/items/dusts/magma.json new file mode 100644 index 0000000..6dda7ad --- /dev/null +++ b/src/main/resources/data/forge/tags/items/dusts/magma.json @@ -0,0 +1,5 @@ +{ + "values": [ + "ariasessentials:magma_powder" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/ingots.json b/src/main/resources/data/forge/tags/items/ingots.json new file mode 100644 index 0000000..139e30f --- /dev/null +++ b/src/main/resources/data/forge/tags/items/ingots.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#forge:ingots/eternium" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/ingots/eternium.json b/src/main/resources/data/forge/tags/items/ingots/eternium.json new file mode 100644 index 0000000..47823d5 --- /dev/null +++ b/src/main/resources/data/forge/tags/items/ingots/eternium.json @@ -0,0 +1,5 @@ +{ + "values": [ + "ariasessentials:eternium_ingot" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/nuggets.json b/src/main/resources/data/forge/tags/items/nuggets.json new file mode 100644 index 0000000..f345cb5 --- /dev/null +++ b/src/main/resources/data/forge/tags/items/nuggets.json @@ -0,0 +1,4 @@ +{ + "values": [ + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/ore_rates/singular.json b/src/main/resources/data/forge/tags/items/ore_rates/singular.json new file mode 100644 index 0000000..f345cb5 --- /dev/null +++ b/src/main/resources/data/forge/tags/items/ore_rates/singular.json @@ -0,0 +1,4 @@ +{ + "values": [ + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/ores.json b/src/main/resources/data/forge/tags/items/ores.json new file mode 100644 index 0000000..12bf5a3 --- /dev/null +++ b/src/main/resources/data/forge/tags/items/ores.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#forge:ores/eternium" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/ores/eternium.json b/src/main/resources/data/forge/tags/items/ores/eternium.json new file mode 100644 index 0000000..6c4451e --- /dev/null +++ b/src/main/resources/data/forge/tags/items/ores/eternium.json @@ -0,0 +1,7 @@ +{ + "values": [ + "ariasessentials:eternium_ore", + "ariasessentials:eternium_ore_block", + "ariasessentials:deepslate_eternium_ore_block" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/ores_in_ground/netherrack.json b/src/main/resources/data/forge/tags/items/ores_in_ground/netherrack.json new file mode 100644 index 0000000..f345cb5 --- /dev/null +++ b/src/main/resources/data/forge/tags/items/ores_in_ground/netherrack.json @@ -0,0 +1,4 @@ +{ + "values": [ + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/raw_materials.json b/src/main/resources/data/forge/tags/items/raw_materials.json new file mode 100644 index 0000000..ac202c0 --- /dev/null +++ b/src/main/resources/data/forge/tags/items/raw_materials.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#forge:raw_materials/eternium" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/raw_materials/eternium.json b/src/main/resources/data/forge/tags/items/raw_materials/eternium.json new file mode 100644 index 0000000..15710e6 --- /dev/null +++ b/src/main/resources/data/forge/tags/items/raw_materials/eternium.json @@ -0,0 +1,5 @@ +{ + "values": [ + "ariasessentials:eternium_ore" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/rods.json b/src/main/resources/data/forge/tags/items/rods.json new file mode 100644 index 0000000..7a65d15 --- /dev/null +++ b/src/main/resources/data/forge/tags/items/rods.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#forge:rods/eternium" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/rods/eternium.json b/src/main/resources/data/forge/tags/items/rods/eternium.json new file mode 100644 index 0000000..03dc005 --- /dev/null +++ b/src/main/resources/data/forge/tags/items/rods/eternium.json @@ -0,0 +1,5 @@ +{ + "values": [ + "ariasessentials:eternium_rod" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/storage_blocks.json b/src/main/resources/data/forge/tags/items/storage_blocks.json new file mode 100644 index 0000000..298093d --- /dev/null +++ b/src/main/resources/data/forge/tags/items/storage_blocks.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#forge:storage_blocks/eternium" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/storage_blocks/eternium.json b/src/main/resources/data/forge/tags/items/storage_blocks/eternium.json new file mode 100644 index 0000000..16ae335 --- /dev/null +++ b/src/main/resources/data/forge/tags/items/storage_blocks/eternium.json @@ -0,0 +1,5 @@ +{ + "values":[ + "ariasessentials:eternium_block" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/loot_tables/blocks/budding_amethyst.json b/src/main/resources/data/minecraft/loot_tables/blocks/budding_amethyst.json new file mode 100644 index 0000000..51de7df --- /dev/null +++ b/src/main/resources/data/minecraft/loot_tables/blocks/budding_amethyst.json @@ -0,0 +1,44 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "name": "minecraft:budding_amethyst" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:amethyst_block" + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json b/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json index c5282cf..1729d95 100644 --- a/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json +++ b/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json @@ -2,6 +2,13 @@ "replace": false, "values": [ + "ariasessentials:eternium_ore_block", + "ariasessentials:deepslate_eternium_ore_block", + "ariasessentials:eternium_block", + + + "#ariasessentials:pool_tiles", + "#ariasessentials:engineersdecor" ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/needs_diamond_tool.json b/src/main/resources/data/minecraft/tags/blocks/needs_diamond_tool.json new file mode 100644 index 0000000..e14f1ee --- /dev/null +++ b/src/main/resources/data/minecraft/tags/blocks/needs_diamond_tool.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/needs_iron_tool.json b/src/main/resources/data/minecraft/tags/blocks/needs_iron_tool.json index c5282cf..2a9ad8a 100644 --- a/src/main/resources/data/minecraft/tags/blocks/needs_iron_tool.json +++ b/src/main/resources/data/minecraft/tags/blocks/needs_iron_tool.json @@ -2,6 +2,11 @@ "replace": false, "values": [ - "#ariasessentials:engineersdecor" + "ariasessentials:eternium_ore_block", + "ariasessentials:deepslate_eternium_ore_block", + "ariasessentials:eternium_block", + + "#ariasessentials:engineersdecor", + "#ariasessentials:pool_tiles" ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/slabs.json b/src/main/resources/data/minecraft/tags/blocks/slabs.json index 826bfe5..818d8dd 100644 --- a/src/main/resources/data/minecraft/tags/blocks/slabs.json +++ b/src/main/resources/data/minecraft/tags/blocks/slabs.json @@ -6,6 +6,17 @@ "ariasessentials:clinker_brick_stained_slab", "ariasessentials:slag_brick_slab", "ariasessentials:rebar_concrete_slab", - "ariasessentials:panzerglass_slab" + "ariasessentials:panzerglass_slab", + + "ariasessentials:pool_tile_slab", + "ariasessentials:blue_pool_tile_slab", + "ariasessentials:dark_pool_tile_slab", + "ariasessentials:green_pool_tile_slab", + "ariasessentials:red_pool_tile_slab", + "ariasessentials:dirty_pool_tile_slab", + "ariasessentials:dirty_blue_pool_tile_slab", + "ariasessentials:dirty_green_pool_tile_slab", + "ariasessentials:dirty_red_pool_tile_slab" + ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/stairs.json b/src/main/resources/data/minecraft/tags/blocks/stairs.json index e3608de..ce94f5c 100644 --- a/src/main/resources/data/minecraft/tags/blocks/stairs.json +++ b/src/main/resources/data/minecraft/tags/blocks/stairs.json @@ -5,6 +5,17 @@ "ariasessentials:clinker_brick_stairs", "ariasessentials:clinker_brick_stained_stairs", "ariasessentials:slag_brick_stairs", - "ariasessentials:rebar_concrete_stairs" + "ariasessentials:rebar_concrete_stairs", + + "ariasessentials:pool_tile_stairs", + "ariasessentials:dark_pool_tile_stairs", + "ariasessentials:blue_pool_tile_stairs", + "ariasessentials:green_pool_tile_stairs", + "ariasessentials:red_pool_tile_stairs", + "ariasessentials:dirty_pool_tile_stairs", + "ariasessentials:dirty_blue_pool_tile_stairs", + "ariasessentials:dirty_green_pool_tile_stairs", + "ariasessentials:dirty_red_pool_tile_stairs" + ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/walls.json b/src/main/resources/data/minecraft/tags/blocks/walls.json index 0b1bd59..e38afa6 100644 --- a/src/main/resources/data/minecraft/tags/blocks/walls.json +++ b/src/main/resources/data/minecraft/tags/blocks/walls.json @@ -3,6 +3,14 @@ "values": [ "ariasessentials:clinker_brick_wall", "ariasessentials:slag_brick_wall", - "ariasessentials:rebar_concrete_wall" + "ariasessentials:rebar_concrete_wall", + "ariasessentials:pool_tile_wall", + "ariasessentials:dirty_pool_tile_wall", + "ariasessentials:blue_pool_tile_wall", + "ariasessentials:dirty_blue_pool_tile_wall", + "ariasessentials:red_pool_tile_wall", + "ariasessentials:dirty_red_pool_tile_wall", + "ariasessentials:green_pool_tile_wall", + "ariasessentials:dirty_green_pool_tile_wall" ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/wither_immune.json b/src/main/resources/data/minecraft/tags/blocks/wither_immune.json index b2f4098..947d282 100644 --- a/src/main/resources/data/minecraft/tags/blocks/wither_immune.json +++ b/src/main/resources/data/minecraft/tags/blocks/wither_immune.json @@ -10,6 +10,12 @@ "ariasessentials:rebar_concrete_wall", "ariasessentials:rebar_concrete_tile", "ariasessentials:rebar_concrete_tile_slab", - "ariasessentials:rebar_concrete_tile_stairs" + "ariasessentials:rebar_concrete_tile_stairs", + "ariasessentials:eternium_block", + + "#ariasessentials:pool_tiles", + "minecraft:spawner" + + ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/wool.json b/src/main/resources/data/minecraft/tags/blocks/wool.json new file mode 100644 index 0000000..ba320ef --- /dev/null +++ b/src/main/resources/data/minecraft/tags/blocks/wool.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "ariasessentials:dark_red_wool" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/wool_carpet.json b/src/main/resources/data/minecraft/tags/blocks/wool_carpet.json new file mode 100644 index 0000000..ff7d208 --- /dev/null +++ b/src/main/resources/data/minecraft/tags/blocks/wool_carpet.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "ariasessentials:dark_red_carpet" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/dyes.json b/src/main/resources/data/minecraft/tags/items/dyes.json new file mode 100644 index 0000000..310183f --- /dev/null +++ b/src/main/resources/data/minecraft/tags/items/dyes.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "ariasessentials:dark_red_dye" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/piglin_loved.json b/src/main/resources/data/minecraft/tags/items/piglin_loved.json new file mode 100644 index 0000000..61c944d --- /dev/null +++ b/src/main/resources/data/minecraft/tags/items/piglin_loved.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "#ariasessentials:deprecated" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/slabs.json b/src/main/resources/data/minecraft/tags/items/slabs.json index 826bfe5..65c4e63 100644 --- a/src/main/resources/data/minecraft/tags/items/slabs.json +++ b/src/main/resources/data/minecraft/tags/items/slabs.json @@ -6,6 +6,16 @@ "ariasessentials:clinker_brick_stained_slab", "ariasessentials:slag_brick_slab", "ariasessentials:rebar_concrete_slab", - "ariasessentials:panzerglass_slab" + "ariasessentials:panzerglass_slab", + + "ariasessentials:pool_tile_slab", + "ariasessentials:blue_pool_tile_slab", + "ariasessentials:dark_pool_tile_slab", + "ariasessentials:green_pool_tile_slab", + "ariasessentials:red_pool_tile_slab", + "ariasessentials:dirty_pool_tile_slab", + "ariasessentials:dirty_blue_pool_tile_slab", + "ariasessentials:dirty_green_pool_tile_slab", + "ariasessentials:dirty_red_pool_tile_slab" ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/stairs.json b/src/main/resources/data/minecraft/tags/items/stairs.json index e3608de..fba777a 100644 --- a/src/main/resources/data/minecraft/tags/items/stairs.json +++ b/src/main/resources/data/minecraft/tags/items/stairs.json @@ -5,6 +5,16 @@ "ariasessentials:clinker_brick_stairs", "ariasessentials:clinker_brick_stained_stairs", "ariasessentials:slag_brick_stairs", - "ariasessentials:rebar_concrete_stairs" + "ariasessentials:rebar_concrete_stairs", + + "ariasessentials:pool_tile_stairs", + "ariasessentials:dark_pool_tile_stairs", + "ariasessentials:blue_pool_tile_stairs", + "ariasessentials:green_pool_tile_stairs", + "ariasessentials:red_pool_tile_stairs", + "ariasessentials:dirty_pool_tile_stairs", + "ariasessentials:dirty_blue_pool_tile_stairs", + "ariasessentials:dirty_green_pool_tile_stairs", + "ariasessentials:dirty_red_pool_tile_stairs" ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/walls.json b/src/main/resources/data/minecraft/tags/items/walls.json index 0b1bd59..e38afa6 100644 --- a/src/main/resources/data/minecraft/tags/items/walls.json +++ b/src/main/resources/data/minecraft/tags/items/walls.json @@ -3,6 +3,14 @@ "values": [ "ariasessentials:clinker_brick_wall", "ariasessentials:slag_brick_wall", - "ariasessentials:rebar_concrete_wall" + "ariasessentials:rebar_concrete_wall", + "ariasessentials:pool_tile_wall", + "ariasessentials:dirty_pool_tile_wall", + "ariasessentials:blue_pool_tile_wall", + "ariasessentials:dirty_blue_pool_tile_wall", + "ariasessentials:red_pool_tile_wall", + "ariasessentials:dirty_red_pool_tile_wall", + "ariasessentials:green_pool_tile_wall", + "ariasessentials:dirty_green_pool_tile_wall" ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/wool.json b/src/main/resources/data/minecraft/tags/items/wool.json new file mode 100644 index 0000000..ba320ef --- /dev/null +++ b/src/main/resources/data/minecraft/tags/items/wool.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "ariasessentials:dark_red_wool" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/wool_carpet.json b/src/main/resources/data/minecraft/tags/items/wool_carpet.json new file mode 100644 index 0000000..ff7d208 --- /dev/null +++ b/src/main/resources/data/minecraft/tags/items/wool_carpet.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "ariasessentials:dark_red_carpet" + ] +} \ No newline at end of file diff --git a/src/main/resources/pack.mcmeta b/src/main/resources/pack.mcmeta index 81a429d..f647c87 100644 --- a/src/main/resources/pack.mcmeta +++ b/src/main/resources/pack.mcmeta @@ -1,8 +1,7 @@ { - "pack": { - "description": "${mod_id} resources", - "pack_format": 9, - "forge:resource_pack_format": 9, - "forge:data_pack_format": 10 - } + "pack": { + "description": "Aria's Essentials", + "forge:data_pack_format": 10, + "pack_format": 9 + } }