From bdd7ed8c7660991f5a5a0904664ea3f4ce54cc05 Mon Sep 17 00:00:00 2001 From: Adubbz Date: Sat, 10 Dec 2022 22:48:24 +1100 Subject: [PATCH] Completed 1.19.3 updated --- LICENSE | 1 + README.md | 2 +- .../common/biome/BOPNetherBiomes.java | 11 +- .../biome/BOPOverworldBiomeBuilder.java | 3 +- .../common/biome/BOPOverworldBiomes.java | 9 +- .../common/datagen/DataGenerationHandler.java | 5 + .../common/util/biome/BiomeUtil.java | 11 +- .../worldgen/carver/BOPConfiguredCarvers.java | 29 ++- .../java/biomesoplenty/init/ModConfig.java | 5 +- .../java/biomesoplenty/init/ModFeatures.java | 2 - .../resources/data/biomesoplenty/worldgen.7z | Bin 32586 -> 0 bytes .../worldgen/biome/auroral_garden.json | 223 +----------------- .../worldgen/biome/bamboo_grove.json | 223 +----------------- .../biomesoplenty/worldgen/biome/bayou.json | 223 +----------------- .../biomesoplenty/worldgen/biome/bog.json | 223 +----------------- .../worldgen/biome/cherry_blossom_grove.json | 223 +----------------- .../worldgen/biome/clover_patch.json | 223 +----------------- .../worldgen/biome/cold_desert.json | 223 +----------------- .../worldgen/biome/coniferous_forest.json | 223 +----------------- .../biomesoplenty/worldgen/biome/crag.json | 223 +----------------- .../worldgen/biome/crystalline_chasm.json | 24 +- .../worldgen/biome/dead_forest.json | 223 +----------------- .../biomesoplenty/worldgen/biome/dryland.json | 223 +----------------- .../worldgen/biome/dune_beach.json | 223 +----------------- .../worldgen/biome/erupting_inferno.json | 24 +- .../biomesoplenty/worldgen/biome/field.json | 223 +----------------- .../worldgen/biome/fir_clearing.json | 223 +----------------- .../worldgen/biome/floodplain.json | 223 +----------------- .../worldgen/biome/forested_field.json | 223 +----------------- .../worldgen/biome/fungal_jungle.json | 223 +----------------- .../worldgen/biome/glowing_grotto.json | 223 +----------------- .../worldgen/biome/grassland.json | 223 +----------------- .../worldgen/biome/highland.json | 223 +----------------- .../worldgen/biome/highland_moor.json | 223 +----------------- .../worldgen/biome/jade_cliffs.json | 223 +----------------- .../worldgen/biome/lavender_field.json | 223 +----------------- .../worldgen/biome/lavender_forest.json | 223 +----------------- .../worldgen/biome/lush_desert.json | 223 +----------------- .../worldgen/biome/lush_savanna.json | 223 +----------------- .../worldgen/biome/maple_woods.json | 223 +----------------- .../biomesoplenty/worldgen/biome/marsh.json | 223 +----------------- .../worldgen/biome/mediterranean_forest.json | 223 +----------------- .../biomesoplenty/worldgen/biome/muskeg.json | 223 +----------------- .../worldgen/biome/mystic_grove.json | 223 +----------------- .../biome/old_growth_dead_forest.json | 223 +----------------- .../worldgen/biome/old_growth_woodland.json | 223 +----------------- .../worldgen/biome/ominous_woods.json | 223 +----------------- .../biomesoplenty/worldgen/biome/orchard.json | 223 +----------------- .../worldgen/biome/origin_valley.json | 4 +- .../biomesoplenty/worldgen/biome/pasture.json | 223 +----------------- .../biomesoplenty/worldgen/biome/prairie.json | 223 +----------------- .../worldgen/biome/pumpkin_patch.json | 223 +----------------- .../worldgen/biome/rainforest.json | 223 +----------------- .../worldgen/biome/redwood_forest.json | 223 +----------------- .../worldgen/biome/rocky_rainforest.json | 223 +----------------- .../worldgen/biome/rocky_shrubland.json | 223 +----------------- .../worldgen/biome/scrubland.json | 223 +----------------- .../worldgen/biome/seasonal_forest.json | 223 +----------------- .../worldgen/biome/seasonal_orchard.json | 223 +----------------- .../worldgen/biome/shrubland.json | 223 +----------------- .../biome/snowy_coniferous_forest.json | 223 +----------------- .../worldgen/biome/snowy_fir_clearing.json | 223 +----------------- .../worldgen/biome/snowy_maple_woods.json | 223 +----------------- .../worldgen/biome/spider_nest.json | 223 +----------------- .../biomesoplenty/worldgen/biome/tropics.json | 223 +----------------- .../biomesoplenty/worldgen/biome/tundra.json | 223 +----------------- .../worldgen/biome/undergrowth.json | 24 +- .../worldgen/biome/visceral_heap.json | 24 +- .../worldgen/biome/volcanic_plains.json | 223 +----------------- .../biomesoplenty/worldgen/biome/volcano.json | 223 +----------------- .../worldgen/biome/wasteland.json | 223 +----------------- .../biomesoplenty/worldgen/biome/wetland.json | 223 +----------------- .../worldgen/biome/withered_abyss.json | 24 +- .../worldgen/biome/wooded_scrubland.json | 223 +----------------- .../worldgen/biome/wooded_wasteland.json | 223 +----------------- .../worldgen/biome/woodland.json | 223 +----------------- .../configured_carver/origin_cave.json | 48 ++++ 77 files changed, 279 insertions(+), 13128 deletions(-) create mode 100644 LICENSE delete mode 100644 src/main/resources/data/biomesoplenty/worldgen.7z create mode 100644 src/main/resources/data/biomesoplenty/worldgen/configured_carver/origin_cave.json diff --git a/LICENSE b/LICENSE new file mode 100644 index 000000000..1d1026aee --- /dev/null +++ b/LICENSE @@ -0,0 +1 @@ +All rights reserved. \ No newline at end of file diff --git a/README.md b/README.md index 1bacf8dad..2cc656911 100644 --- a/README.md +++ b/README.md @@ -12,4 +12,4 @@ ----------------- -© 2021 Glitchfiend. All rights reserved. \ No newline at end of file +© 2022 Glitchfiend. All rights reserved. \ No newline at end of file diff --git a/src/main/java/biomesoplenty/common/biome/BOPNetherBiomes.java b/src/main/java/biomesoplenty/common/biome/BOPNetherBiomes.java index 6194f9fd3..6e135c53f 100644 --- a/src/main/java/biomesoplenty/common/biome/BOPNetherBiomes.java +++ b/src/main/java/biomesoplenty/common/biome/BOPNetherBiomes.java @@ -6,8 +6,10 @@ import biomesoplenty.api.sound.BOPSounds; import biomesoplenty.common.worldgen.placement.BOPNetherPlacements; +import net.minecraft.core.Holder; import net.minecraft.core.HolderGetter; import net.minecraft.core.particles.ParticleTypes; +import net.minecraft.core.registries.BuiltInRegistries; import net.minecraft.data.worldgen.BiomeDefaultFeatures; import net.minecraft.data.worldgen.Carvers; import net.minecraft.data.worldgen.placement.NetherPlacements; @@ -15,6 +17,7 @@ import net.minecraft.data.worldgen.placement.VegetationPlacements; import net.minecraft.resources.ResourceKey; import net.minecraft.sounds.Musics; +import net.minecraft.sounds.SoundEvent; import net.minecraft.sounds.SoundEvents; import net.minecraft.world.entity.EntityType; import net.minecraft.world.entity.MobCategory; @@ -22,16 +25,12 @@ import net.minecraft.world.level.levelgen.GenerationStep; import net.minecraft.world.level.levelgen.carver.ConfiguredWorldCarver; import net.minecraft.world.level.levelgen.placement.PlacedFeature; -import net.minecraftforge.registries.RegistryObject; import static biomesoplenty.common.biome.BOPOverworldBiomes.calculateSkyColor; public class BOPNetherBiomes { - private static void addFeature(BiomeGenerationSettings.Builder builder, GenerationStep.Decoration step, RegistryObject feature) - { - builder.addFeature(step, feature.getHolder().orElseThrow()); - } + public static final Holder.Reference AMETHYST_BLOCK_CHIME = BuiltInRegistries.SOUND_EVENT.createIntrusiveHolder(SoundEvents.AMETHYST_BLOCK_CHIME); private static void addFeature(BiomeGenerationSettings.Builder builder, GenerationStep.Decoration step, ResourceKey feature) { @@ -60,7 +59,7 @@ public static Biome crystallineChasm(HolderGetter placedFeatureGe return new Biome.BiomeBuilder() .precipitation(Biome.Precipitation.NONE).temperature(2.0F).downfall(0.0F) - .specialEffects((new BiomeSpecialEffects.Builder()).waterColor(4159204).waterFogColor(329011).fogColor(0x59002C).skyColor(calculateSkyColor(2.0F)).ambientParticle(new AmbientParticleSettings(ParticleTypes.ELECTRIC_SPARK, 0.0008925F)).ambientLoopSound(SoundEvents.AMBIENT_CRIMSON_FOREST_LOOP).ambientMoodSound(new AmbientMoodSettings(SoundEvents.AMBIENT_BASALT_DELTAS_MOOD, 6000, 8, 2.0D))/* TODO: .ambientAdditionsSound(new AmbientAdditionsSettings(SoundEvents.AMETHYST_BLOCK_CHIME, 0.0111D))*/.backgroundMusic(Musics.createGameMusic(BOPSounds.MUSIC_BIOME_CRYSTALLINE_CHASM.getHolder().get())).build()) + .specialEffects((new BiomeSpecialEffects.Builder()).waterColor(4159204).waterFogColor(329011).fogColor(0x59002C).skyColor(calculateSkyColor(2.0F)).ambientParticle(new AmbientParticleSettings(ParticleTypes.ELECTRIC_SPARK, 0.0008925F)).ambientLoopSound(SoundEvents.AMBIENT_CRIMSON_FOREST_LOOP).ambientMoodSound(new AmbientMoodSettings(SoundEvents.AMBIENT_BASALT_DELTAS_MOOD, 6000, 8, 2.0D)).ambientAdditionsSound(new AmbientAdditionsSettings(AMETHYST_BLOCK_CHIME, 0.0111D)).backgroundMusic(Musics.createGameMusic(BOPSounds.MUSIC_BIOME_CRYSTALLINE_CHASM.getHolder().get())).build()) .mobSpawnSettings(spawnBuilder.build()).generationSettings(biomeBuilder.build()).build(); } diff --git a/src/main/java/biomesoplenty/common/biome/BOPOverworldBiomeBuilder.java b/src/main/java/biomesoplenty/common/biome/BOPOverworldBiomeBuilder.java index 271a3f656..5b58cb73c 100644 --- a/src/main/java/biomesoplenty/common/biome/BOPOverworldBiomeBuilder.java +++ b/src/main/java/biomesoplenty/common/biome/BOPOverworldBiomeBuilder.java @@ -6,6 +6,7 @@ import biomesoplenty.api.biome.BOPBiomes; import biomesoplenty.common.util.biome.BiomeUtil; +import biomesoplenty.init.ModConfig; import com.mojang.datafixers.util.Pair; import net.minecraft.core.Registry; import net.minecraft.resources.ResourceKey; @@ -608,7 +609,7 @@ protected void addSurfaceBiome(Consumer biomeRegistry, Consumer>> mapper, Climate.Parameter temperature, Climate.Parameter humidity, Climate.Parameter continentalness, Climate.Parameter erosion, Climate.Parameter weirdness, float offset, ResourceKey biome) { - if (!BiomeUtil.isKeyRegistered(biomeRegistry, biome)) + if (!ModConfig.isBiomeEnabled(biome)) return; mapper.accept(Pair.of(Climate.parameters(temperature, humidity, continentalness, erosion, Climate.Parameter.span(0.2F, 0.9F), weirdness, offset), biome)); diff --git a/src/main/java/biomesoplenty/common/biome/BOPOverworldBiomes.java b/src/main/java/biomesoplenty/common/biome/BOPOverworldBiomes.java index e421592d3..284ce5ae2 100644 --- a/src/main/java/biomesoplenty/common/biome/BOPOverworldBiomes.java +++ b/src/main/java/biomesoplenty/common/biome/BOPOverworldBiomes.java @@ -5,6 +5,7 @@ package biomesoplenty.common.biome; import biomesoplenty.api.sound.BOPSounds; +import biomesoplenty.common.worldgen.carver.BOPConfiguredCarvers; import biomesoplenty.common.worldgen.placement.BOPCavePlacements; import biomesoplenty.common.worldgen.placement.BOPMiscOverworldPlacements; import biomesoplenty.common.worldgen.placement.BOPVegetationPlacements; @@ -27,7 +28,6 @@ import net.minecraft.world.level.levelgen.GenerationStep; import net.minecraft.world.level.levelgen.carver.ConfiguredWorldCarver; import net.minecraft.world.level.levelgen.placement.PlacedFeature; -import net.minecraftforge.registries.RegistryObject; import javax.annotation.Nullable; @@ -77,11 +77,6 @@ private static Biome biomeWithColorOverridesAndParticles(Biome.Precipitation pre { return (new Biome.BiomeBuilder()).precipitation(precipitation).temperature(temperature).downfall(downfall).specialEffects((new BiomeSpecialEffects.Builder()).waterColor(waterColor).waterFogColor(waterFogColor).fogColor(fogColor).grassColorOverride(grassColor).foliageColorOverride(foliageColor).skyColor(skyColor).ambientParticle(new AmbientParticleSettings(particleOptions, particleProbability)).ambientMoodSound(AmbientMoodSettings.LEGACY_CAVE_SETTINGS).backgroundMusic(music).build()).mobSpawnSettings(spawnBuilder.build()).generationSettings(biomeBuilder.build()).build(); } - - private static void addFeature(BiomeGenerationSettings.Builder builder, GenerationStep.Decoration step, RegistryObject feature) - { - builder.addFeature(step, feature.getHolder().orElseThrow()); - } private static void addFeature(BiomeGenerationSettings.Builder builder, GenerationStep.Decoration step, ResourceKey feature) { @@ -921,7 +916,7 @@ public static Biome originValley(HolderGetter placedFeatureGetter // Biome features BiomeGenerationSettings.Builder biomeBuilder = new BiomeGenerationSettings.Builder(placedFeatureGetter, carverGetter); - // TODO: biomeBuilder.addCarver(GenerationStep.Carving.AIR, BOPConfiguredCarvers.ORIGIN_CAVE.getHolder().orElseThrow()); + biomeBuilder.addCarver(GenerationStep.Carving.AIR, BOPConfiguredCarvers.ORIGIN_CAVE); BiomeDefaultFeatures.addDefaultMonsterRoom(biomeBuilder); BiomeDefaultFeatures.addDefaultSprings(biomeBuilder); BiomeDefaultFeatures.addSurfaceFreezing(biomeBuilder); diff --git a/src/main/java/biomesoplenty/common/datagen/DataGenerationHandler.java b/src/main/java/biomesoplenty/common/datagen/DataGenerationHandler.java index 8ed1782ac..1af9e37be 100644 --- a/src/main/java/biomesoplenty/common/datagen/DataGenerationHandler.java +++ b/src/main/java/biomesoplenty/common/datagen/DataGenerationHandler.java @@ -7,6 +7,7 @@ import biomesoplenty.api.biome.BOPBiomes; import biomesoplenty.common.util.worldgen.BOPFeatureUtils; import biomesoplenty.common.util.worldgen.BOPPlacementUtils; +import biomesoplenty.common.worldgen.carver.BOPConfiguredCarvers; import biomesoplenty.common.worldgen.feature.*; import biomesoplenty.common.worldgen.placement.*; import biomesoplenty.core.BiomesOPlenty; @@ -26,6 +27,7 @@ import net.minecraft.resources.ResourceKey; import net.minecraft.resources.ResourceLocation; import net.minecraft.world.level.biome.Biome; +import net.minecraft.world.level.levelgen.carver.ConfiguredWorldCarver; import net.minecraft.world.level.levelgen.feature.ConfiguredFeature; import net.minecraft.world.level.levelgen.placement.PlacedFeature; import net.minecraftforge.common.data.ExistingFileHelper; @@ -50,6 +52,7 @@ public static void onGatherData(GatherDataEvent event) ExistingFileHelper existingFileHelper = event.getExistingFileHelper(); HolderLookup.Provider lookupProvider = new RegistrySetBuilder() + .add(Registries.CONFIGURED_CARVER, (RegistrySetBuilder.RegistryBootstrap) BOPConfiguredCarvers::bootstrap) .add(Registries.CONFIGURED_FEATURE, (RegistrySetBuilder.RegistryBootstrap) BOPFeatureUtils::bootstrap) .add(Registries.PLACED_FEATURE, (RegistrySetBuilder.RegistryBootstrap) BOPPlacementUtils::bootstrap) .add(Registries.BIOME, ModBiomes::bootstrapBiomes) @@ -57,10 +60,12 @@ public static void onGatherData(GatherDataEvent event) RegistryOps registryOps = RegistryOps.create(JsonOps.INSTANCE, lookupProvider); + Map> configuredWorldCarverMap = createMap(Registries.CONFIGURED_CARVER, lookupProvider, BOPConfiguredCarvers.class); Map> configuredFeatureMap = createMap(Registries.CONFIGURED_FEATURE, lookupProvider, BOPCaveFeatures.class, BOPMiscOverworldFeatures.class, BOPNetherFeatures.class, BOPTreeFeatures.class, BOPVegetationFeatures.class); Map placedFeatureMap = createMap(Registries.PLACED_FEATURE, lookupProvider, BOPCavePlacements.class, BOPMiscOverworldPlacements.class, BOPNetherPlacements.class, BOPTreePlacements.class, BOPVegetationPlacements.class); Map biomeMap = createMap(Registries.BIOME, lookupProvider, BOPBiomes.class); + generator.addProvider(event.includeServer(), JsonCodecProvider.forDatapackRegistry(generator, existingFileHelper, BiomesOPlenty.MOD_ID, registryOps, Registries.CONFIGURED_CARVER, configuredWorldCarverMap)); generator.addProvider(event.includeServer(), JsonCodecProvider.forDatapackRegistry(generator, existingFileHelper, BiomesOPlenty.MOD_ID, registryOps, Registries.CONFIGURED_FEATURE, configuredFeatureMap)); generator.addProvider(event.includeServer(), JsonCodecProvider.forDatapackRegistry(generator, existingFileHelper, BiomesOPlenty.MOD_ID, registryOps, Registries.PLACED_FEATURE, placedFeatureMap)); generator.addProvider(event.includeServer(), JsonCodecProvider.forDatapackRegistry(generator, existingFileHelper, BiomesOPlenty.MOD_ID, registryOps, Registries.BIOME, biomeMap)); diff --git a/src/main/java/biomesoplenty/common/util/biome/BiomeUtil.java b/src/main/java/biomesoplenty/common/util/biome/BiomeUtil.java index 5298b4e7c..a3b7e9c16 100644 --- a/src/main/java/biomesoplenty/common/util/biome/BiomeUtil.java +++ b/src/main/java/biomesoplenty/common/util/biome/BiomeUtil.java @@ -4,6 +4,7 @@ ******************************************************************************/ package biomesoplenty.common.util.biome; +import biomesoplenty.init.ModConfig; import net.minecraft.core.Registry; import net.minecraft.resources.ResourceKey; import net.minecraft.world.level.biome.Biome; @@ -16,15 +17,13 @@ public static ResourceKey biomeOrFallback(Registry biomeRegistry, { for (ResourceKey key : biomes) { - if (isKeyRegistered(biomeRegistry, key)) + if (key == null) + continue; + + if (ModConfig.isBiomeEnabled(key) || key.location().getNamespace().equals("minecraft")) return key; } throw new RuntimeException("Failed to find fallback for biome!"); } - - public static boolean isKeyRegistered(Registry registry, ResourceKey key) - { - return key != null && registry.get(key) != null; - } } diff --git a/src/main/java/biomesoplenty/common/worldgen/carver/BOPConfiguredCarvers.java b/src/main/java/biomesoplenty/common/worldgen/carver/BOPConfiguredCarvers.java index 8bf550f2a..906d4c33b 100644 --- a/src/main/java/biomesoplenty/common/worldgen/carver/BOPConfiguredCarvers.java +++ b/src/main/java/biomesoplenty/common/worldgen/carver/BOPConfiguredCarvers.java @@ -5,20 +5,33 @@ package biomesoplenty.common.worldgen.carver; import biomesoplenty.core.BiomesOPlenty; -import net.minecraft.world.level.levelgen.carver.CarverConfiguration; +import net.minecraft.core.HolderGetter; +import net.minecraft.core.registries.Registries; +import net.minecraft.data.worldgen.BootstapContext; +import net.minecraft.resources.ResourceKey; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.tags.BlockTags; +import net.minecraft.util.valueproviders.ConstantFloat; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.Blocks; +import net.minecraft.world.level.levelgen.VerticalAnchor; +import net.minecraft.world.level.levelgen.carver.CarverDebugSettings; +import net.minecraft.world.level.levelgen.carver.CaveCarverConfiguration; import net.minecraft.world.level.levelgen.carver.ConfiguredWorldCarver; -import net.minecraftforge.registries.RegistryObject; - -import java.util.function.Supplier; +import net.minecraft.world.level.levelgen.heightproviders.BiasedToBottomHeight; public class BOPConfiguredCarvers { - // TODO: public static final RegistryObject> ORIGIN_CAVE = register("origin_cave", () -> BOPWorldCarvers.ORIGIN_CAVE.get().configured(new CaveCarverConfiguration(0.14285715F, BiasedToBottomHeight.of(VerticalAnchor.absolute(0), VerticalAnchor.absolute(127), 8), ConstantFloat.of(0.5F), VerticalAnchor.aboveBottom(10), CarverDebugSettings.of(false, Blocks.CRIMSON_BUTTON.defaultBlockState()), Registries.BLOCK.getOrCreateTag(BlockTags.OVERWORLD_CARVER_REPLACEABLES), ConstantFloat.of(1.0F), ConstantFloat.of(1.0F), ConstantFloat.of(-0.7F)))); + public static final ResourceKey> ORIGIN_CAVE = createKey("origin_cave"); - private static RegistryObject> register(String key, Supplier> carverSupplier) + public static void bootstrap(BootstapContext> context) { - return BiomesOPlenty.CONFIGURED_CARVER_REGISTER.register(key, carverSupplier); + HolderGetter blockGetter = context.lookup(Registries.BLOCK); + context.register(ORIGIN_CAVE, BOPWorldCarvers.ORIGIN_CAVE.get().configured(new CaveCarverConfiguration(0.14285715F, BiasedToBottomHeight.of(VerticalAnchor.absolute(0), VerticalAnchor.absolute(127), 8), ConstantFloat.of(0.5F), VerticalAnchor.aboveBottom(10), CarverDebugSettings.of(false, Blocks.CRIMSON_BUTTON.defaultBlockState()), blockGetter.getOrThrow(BlockTags.OVERWORLD_CARVER_REPLACEABLES), ConstantFloat.of(1.0F), ConstantFloat.of(1.0F), ConstantFloat.of(-0.7F)))); } - public static void setup() {} + private static ResourceKey> createKey(String name) + { + return ResourceKey.create(Registries.CONFIGURED_CARVER, new ResourceLocation(BiomesOPlenty.MOD_ID, name)); + } } diff --git a/src/main/java/biomesoplenty/init/ModConfig.java b/src/main/java/biomesoplenty/init/ModConfig.java index 48f71cfb5..7c4e6a058 100644 --- a/src/main/java/biomesoplenty/init/ModConfig.java +++ b/src/main/java/biomesoplenty/init/ModConfig.java @@ -64,11 +64,14 @@ public static void setup() public static boolean isBiomeEnabled(ResourceKey key) { + if (key == null || !key.location().getNamespace().equals(BiomesOPlenty.MOD_ID)) + return false; + String optionName = getBiomeConfigOptionName(key); Map biomeToggles = getBiomeToggles(); // Add the biome toggle if it is missing - if (!biomeToggles.containsKey(optionName) && key.location().getNamespace().equals("biomesoplenty")) + if (!biomeToggles.containsKey(optionName)) { addBiomeToggle(key); } diff --git a/src/main/java/biomesoplenty/init/ModFeatures.java b/src/main/java/biomesoplenty/init/ModFeatures.java index 5fda9ac62..d92478f14 100644 --- a/src/main/java/biomesoplenty/init/ModFeatures.java +++ b/src/main/java/biomesoplenty/init/ModFeatures.java @@ -4,7 +4,6 @@ ******************************************************************************/ package biomesoplenty.init; -import biomesoplenty.common.worldgen.carver.BOPConfiguredCarvers; import biomesoplenty.common.worldgen.carver.BOPWorldCarvers; import biomesoplenty.common.worldgen.feature.BOPBaseFeatures; @@ -19,6 +18,5 @@ public static void setup() // Carvers BOPWorldCarvers.setup(); - BOPConfiguredCarvers.setup(); } } diff --git a/src/main/resources/data/biomesoplenty/worldgen.7z b/src/main/resources/data/biomesoplenty/worldgen.7z deleted file mode 100644 index e4011bdcc431e01d5e51f2716a62488f0cecae17..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 32586 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 DfA-6P diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/auroral_garden.json b/src/main/resources/data/biomesoplenty/worldgen/biome/auroral_garden.json index 3e8e13f4e..fff8e38e2 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/auroral_garden.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/auroral_garden.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.5, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/bamboo_grove.json b/src/main/resources/data/biomesoplenty/worldgen/biome/bamboo_grove.json index 519f4c291..70e2e6f41 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/bamboo_grove.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/bamboo_grove.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.9, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/bayou.json b/src/main/resources/data/biomesoplenty/worldgen/biome/bayou.json index cbf0036df..4763b1a2f 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/bayou.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/bayou.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.9, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/bog.json b/src/main/resources/data/biomesoplenty/worldgen/biome/bog.json index d7f311bd2..693570be3 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/bog.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/bog.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.5, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/cherry_blossom_grove.json b/src/main/resources/data/biomesoplenty/worldgen/biome/cherry_blossom_grove.json index 2e0a57c5c..2e9dd42ea 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/cherry_blossom_grove.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/cherry_blossom_grove.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.9, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/clover_patch.json b/src/main/resources/data/biomesoplenty/worldgen/biome/clover_patch.json index 50ccab1cb..9412481eb 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/clover_patch.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/clover_patch.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.7, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/cold_desert.json b/src/main/resources/data/biomesoplenty/worldgen/biome/cold_desert.json index 204c1dd5b..e8152b86a 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/cold_desert.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/cold_desert.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.0, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/coniferous_forest.json b/src/main/resources/data/biomesoplenty/worldgen/biome/coniferous_forest.json index 9fc2eefbd..2bacc3151 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/coniferous_forest.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/coniferous_forest.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.5, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/crag.json b/src/main/resources/data/biomesoplenty/worldgen/biome/crag.json index a7e5d0532..5495f747b 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/crag.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/crag.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.6, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/crystalline_chasm.json b/src/main/resources/data/biomesoplenty/worldgen/biome/crystalline_chasm.json index c35760ee1..15d5cd6f8 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/crystalline_chasm.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/crystalline_chasm.json @@ -1,28 +1,6 @@ { "carvers": { - "air": { - "type": "minecraft:nether_cave", - "config": { - "floor_level": -0.7, - "horizontal_radius_multiplier": 1.0, - "lava_level": { - "above_bottom": 10 - }, - "probability": 0.2, - "replaceable": "#minecraft:nether_carver_replaceables", - "vertical_radius_multiplier": 1.0, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "below_top": 1 - }, - "min_inclusive": { - "absolute": 0 - } - }, - "yScale": 0.5 - } - } + "air": "minecraft:nether_cave" }, "downfall": 0.0, "effects": { diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/dead_forest.json b/src/main/resources/data/biomesoplenty/worldgen/biome/dead_forest.json index aede18258..063e11b0c 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/dead_forest.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/dead_forest.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.3, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/dryland.json b/src/main/resources/data/biomesoplenty/worldgen/biome/dryland.json index 69f0b669d..d975af1e7 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/dryland.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/dryland.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.05, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/dune_beach.json b/src/main/resources/data/biomesoplenty/worldgen/biome/dune_beach.json index 2ad836bf6..bcd47f66f 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/dune_beach.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/dune_beach.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.4, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/erupting_inferno.json b/src/main/resources/data/biomesoplenty/worldgen/biome/erupting_inferno.json index f212e00e5..377b509fb 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/erupting_inferno.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/erupting_inferno.json @@ -1,28 +1,6 @@ { "carvers": { - "air": { - "type": "minecraft:nether_cave", - "config": { - "floor_level": -0.7, - "horizontal_radius_multiplier": 1.0, - "lava_level": { - "above_bottom": 10 - }, - "probability": 0.2, - "replaceable": "#minecraft:nether_carver_replaceables", - "vertical_radius_multiplier": 1.0, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "below_top": 1 - }, - "min_inclusive": { - "absolute": 0 - } - }, - "yScale": 0.5 - } - } + "air": "minecraft:nether_cave" }, "downfall": 0.0, "effects": { diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/field.json b/src/main/resources/data/biomesoplenty/worldgen/biome/field.json index d250cb481..33264c8be 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/field.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/field.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.7, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/fir_clearing.json b/src/main/resources/data/biomesoplenty/worldgen/biome/fir_clearing.json index 80ab3c1d4..2a9ccedd8 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/fir_clearing.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/fir_clearing.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.5, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/floodplain.json b/src/main/resources/data/biomesoplenty/worldgen/biome/floodplain.json index f64d2f92a..e018f70f4 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/floodplain.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/floodplain.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 2.0, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/forested_field.json b/src/main/resources/data/biomesoplenty/worldgen/biome/forested_field.json index ddce49711..c2f9d275d 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/forested_field.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/forested_field.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.7, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/fungal_jungle.json b/src/main/resources/data/biomesoplenty/worldgen/biome/fungal_jungle.json index 5a411603f..4f91876b3 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/fungal_jungle.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/fungal_jungle.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.9, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/glowing_grotto.json b/src/main/resources/data/biomesoplenty/worldgen/biome/glowing_grotto.json index a0651bb6e..a83c9f6a2 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/glowing_grotto.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/glowing_grotto.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.5, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/grassland.json b/src/main/resources/data/biomesoplenty/worldgen/biome/grassland.json index c78a8fcf9..a5bb8bca1 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/grassland.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/grassland.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.7, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/highland.json b/src/main/resources/data/biomesoplenty/worldgen/biome/highland.json index f0db735f8..7ad96e44b 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/highland.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/highland.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.6, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/highland_moor.json b/src/main/resources/data/biomesoplenty/worldgen/biome/highland_moor.json index e53d8b211..352e76276 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/highland_moor.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/highland_moor.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.6, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/jade_cliffs.json b/src/main/resources/data/biomesoplenty/worldgen/biome/jade_cliffs.json index be16c2ec5..2bbe4c8f5 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/jade_cliffs.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/jade_cliffs.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.85, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/lavender_field.json b/src/main/resources/data/biomesoplenty/worldgen/biome/lavender_field.json index 370be0346..225fef719 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/lavender_field.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/lavender_field.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.7, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/lavender_forest.json b/src/main/resources/data/biomesoplenty/worldgen/biome/lavender_forest.json index 5506d9a5d..7f7a9d65f 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/lavender_forest.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/lavender_forest.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.7, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/lush_desert.json b/src/main/resources/data/biomesoplenty/worldgen/biome/lush_desert.json index 4204979de..4210a4116 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/lush_desert.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/lush_desert.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.5, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/lush_savanna.json b/src/main/resources/data/biomesoplenty/worldgen/biome/lush_savanna.json index 104ecc207..ccf92c063 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/lush_savanna.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/lush_savanna.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.5, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/maple_woods.json b/src/main/resources/data/biomesoplenty/worldgen/biome/maple_woods.json index cd730fd6f..86f28dad5 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/maple_woods.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/maple_woods.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.5, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/marsh.json b/src/main/resources/data/biomesoplenty/worldgen/biome/marsh.json index aa6824d44..b704ab83c 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/marsh.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/marsh.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.7, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/mediterranean_forest.json b/src/main/resources/data/biomesoplenty/worldgen/biome/mediterranean_forest.json index 2af6ed9fc..125535437 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/mediterranean_forest.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/mediterranean_forest.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.275, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/muskeg.json b/src/main/resources/data/biomesoplenty/worldgen/biome/muskeg.json index 24901d71a..f0a895d7e 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/muskeg.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/muskeg.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.6, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/mystic_grove.json b/src/main/resources/data/biomesoplenty/worldgen/biome/mystic_grove.json index 74243b11c..cede0238b 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/mystic_grove.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/mystic_grove.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.8, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/old_growth_dead_forest.json b/src/main/resources/data/biomesoplenty/worldgen/biome/old_growth_dead_forest.json index 820b3c3b9..9bd2dde2c 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/old_growth_dead_forest.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/old_growth_dead_forest.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.3, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/old_growth_woodland.json b/src/main/resources/data/biomesoplenty/worldgen/biome/old_growth_woodland.json index 5faf506c3..ca8290597 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/old_growth_woodland.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/old_growth_woodland.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.5, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/ominous_woods.json b/src/main/resources/data/biomesoplenty/worldgen/biome/ominous_woods.json index fe6682df8..da5bb0916 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/ominous_woods.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/ominous_woods.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.6, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/orchard.json b/src/main/resources/data/biomesoplenty/worldgen/biome/orchard.json index f93d0b7a2..ea94af72f 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/orchard.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/orchard.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.4, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/origin_valley.json b/src/main/resources/data/biomesoplenty/worldgen/biome/origin_valley.json index 9ed09ee47..76084d59f 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/origin_valley.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/origin_valley.json @@ -1,5 +1,7 @@ { - "carvers": {}, + "carvers": { + "air": "biomesoplenty:origin_cave" + }, "downfall": 0.6, "effects": { "fog_color": 11587583, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/pasture.json b/src/main/resources/data/biomesoplenty/worldgen/biome/pasture.json index 756e1cef5..ad770ce10 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/pasture.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/pasture.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.3, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/prairie.json b/src/main/resources/data/biomesoplenty/worldgen/biome/prairie.json index af769698e..29582208e 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/prairie.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/prairie.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.3, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/pumpkin_patch.json b/src/main/resources/data/biomesoplenty/worldgen/biome/pumpkin_patch.json index 379c43735..25856cb58 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/pumpkin_patch.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/pumpkin_patch.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.8, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/rainforest.json b/src/main/resources/data/biomesoplenty/worldgen/biome/rainforest.json index c1e2bb3e9..b34b1a143 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/rainforest.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/rainforest.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 2.0, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/redwood_forest.json b/src/main/resources/data/biomesoplenty/worldgen/biome/redwood_forest.json index dbac6b138..c49648d35 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/redwood_forest.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/redwood_forest.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.6, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/rocky_rainforest.json b/src/main/resources/data/biomesoplenty/worldgen/biome/rocky_rainforest.json index 403558bff..64a7df2cd 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/rocky_rainforest.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/rocky_rainforest.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 2.0, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/rocky_shrubland.json b/src/main/resources/data/biomesoplenty/worldgen/biome/rocky_shrubland.json index 65c6ef211..ee15bafd2 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/rocky_shrubland.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/rocky_shrubland.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.05, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/scrubland.json b/src/main/resources/data/biomesoplenty/worldgen/biome/scrubland.json index 43e273121..13a32604c 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/scrubland.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/scrubland.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.15, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/seasonal_forest.json b/src/main/resources/data/biomesoplenty/worldgen/biome/seasonal_forest.json index e589dda76..abfb5531a 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/seasonal_forest.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/seasonal_forest.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.8, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/seasonal_orchard.json b/src/main/resources/data/biomesoplenty/worldgen/biome/seasonal_orchard.json index 0ba9e1a1f..e549925cf 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/seasonal_orchard.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/seasonal_orchard.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.8, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/shrubland.json b/src/main/resources/data/biomesoplenty/worldgen/biome/shrubland.json index f8c7acf7a..9839b531d 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/shrubland.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/shrubland.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.05, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/snowy_coniferous_forest.json b/src/main/resources/data/biomesoplenty/worldgen/biome/snowy_coniferous_forest.json index 1895b132d..d6b5af12b 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/snowy_coniferous_forest.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/snowy_coniferous_forest.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.5, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/snowy_fir_clearing.json b/src/main/resources/data/biomesoplenty/worldgen/biome/snowy_fir_clearing.json index 57d5418ef..6c87d6f3f 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/snowy_fir_clearing.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/snowy_fir_clearing.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.5, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/snowy_maple_woods.json b/src/main/resources/data/biomesoplenty/worldgen/biome/snowy_maple_woods.json index b76b20cc5..0aafb4956 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/snowy_maple_woods.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/snowy_maple_woods.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.5, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/spider_nest.json b/src/main/resources/data/biomesoplenty/worldgen/biome/spider_nest.json index 963e0c085..9465f504f 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/spider_nest.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/spider_nest.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.5, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/tropics.json b/src/main/resources/data/biomesoplenty/worldgen/biome/tropics.json index ea871b975..83b5a3e65 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/tropics.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/tropics.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 1.0, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/tundra.json b/src/main/resources/data/biomesoplenty/worldgen/biome/tundra.json index 6b55b9b2e..815eb3fb5 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/tundra.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/tundra.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.5, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/undergrowth.json b/src/main/resources/data/biomesoplenty/worldgen/biome/undergrowth.json index 513566fd5..d62d2088f 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/undergrowth.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/undergrowth.json @@ -1,28 +1,6 @@ { "carvers": { - "air": { - "type": "minecraft:nether_cave", - "config": { - "floor_level": -0.7, - "horizontal_radius_multiplier": 1.0, - "lava_level": { - "above_bottom": 10 - }, - "probability": 0.2, - "replaceable": "#minecraft:nether_carver_replaceables", - "vertical_radius_multiplier": 1.0, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "below_top": 1 - }, - "min_inclusive": { - "absolute": 0 - } - }, - "yScale": 0.5 - } - } + "air": "minecraft:nether_cave" }, "downfall": 0.0, "effects": { diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/visceral_heap.json b/src/main/resources/data/biomesoplenty/worldgen/biome/visceral_heap.json index 82367feee..59d469017 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/visceral_heap.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/visceral_heap.json @@ -1,28 +1,6 @@ { "carvers": { - "air": { - "type": "minecraft:nether_cave", - "config": { - "floor_level": -0.7, - "horizontal_radius_multiplier": 1.0, - "lava_level": { - "above_bottom": 10 - }, - "probability": 0.2, - "replaceable": "#minecraft:nether_carver_replaceables", - "vertical_radius_multiplier": 1.0, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "below_top": 1 - }, - "min_inclusive": { - "absolute": 0 - } - }, - "yScale": 0.5 - } - } + "air": "minecraft:nether_cave" }, "downfall": 0.0, "effects": { diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/volcanic_plains.json b/src/main/resources/data/biomesoplenty/worldgen/biome/volcanic_plains.json index 5b95553bb..daa59c086 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/volcanic_plains.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/volcanic_plains.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.3, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/volcano.json b/src/main/resources/data/biomesoplenty/worldgen/biome/volcano.json index a90665b34..9ecc9c362 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/volcano.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/volcano.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.3, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/wasteland.json b/src/main/resources/data/biomesoplenty/worldgen/biome/wasteland.json index d3ff4f5a0..c1f576aa0 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/wasteland.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/wasteland.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.0, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/wetland.json b/src/main/resources/data/biomesoplenty/worldgen/biome/wetland.json index 274895f9a..81730bb5e 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/wetland.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/wetland.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.7, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/withered_abyss.json b/src/main/resources/data/biomesoplenty/worldgen/biome/withered_abyss.json index b44aaad11..27c2d7c2e 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/withered_abyss.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/withered_abyss.json @@ -1,28 +1,6 @@ { "carvers": { - "air": { - "type": "minecraft:nether_cave", - "config": { - "floor_level": -0.7, - "horizontal_radius_multiplier": 1.0, - "lava_level": { - "above_bottom": 10 - }, - "probability": 0.2, - "replaceable": "#minecraft:nether_carver_replaceables", - "vertical_radius_multiplier": 1.0, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "below_top": 1 - }, - "min_inclusive": { - "absolute": 0 - } - }, - "yScale": 0.5 - } - } + "air": "minecraft:nether_cave" }, "downfall": 0.0, "effects": { diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/wooded_scrubland.json b/src/main/resources/data/biomesoplenty/worldgen/biome/wooded_scrubland.json index b0254d0f0..25b6b3afd 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/wooded_scrubland.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/wooded_scrubland.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.15, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/wooded_wasteland.json b/src/main/resources/data/biomesoplenty/worldgen/biome/wooded_wasteland.json index 88cb1fc0a..1ed3758e1 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/wooded_wasteland.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/wooded_wasteland.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.0, diff --git a/src/main/resources/data/biomesoplenty/worldgen/biome/woodland.json b/src/main/resources/data/biomesoplenty/worldgen/biome/woodland.json index b588c44be..0efc8e550 100644 --- a/src/main/resources/data/biomesoplenty/worldgen/biome/woodland.json +++ b/src/main/resources/data/biomesoplenty/worldgen/biome/woodland.json @@ -1,226 +1,9 @@ { "carvers": { "air": [ - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:crimson_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.15, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 180 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:cave", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:oak_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "floor_level": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": -0.4, - "min_inclusive": -1.0 - } - }, - "horizontal_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.4, - "min_inclusive": 0.7 - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.07, - "replaceable": "#minecraft:overworld_carver_replaceables", - "vertical_radius_multiplier": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.3, - "min_inclusive": 0.8 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 47 - }, - "min_inclusive": { - "above_bottom": 8 - } - }, - "yScale": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.9, - "min_inclusive": 0.1 - } - } - } - }, - { - "type": "minecraft:canyon", - "config": { - "debug_settings": { - "air_state": { - "Name": "minecraft:warped_button", - "Properties": { - "face": "wall", - "facing": "north", - "powered": "false" - } - }, - "barrier_state": { - "Name": "minecraft:glass" - }, - "lava_state": { - "Name": "minecraft:orange_stained_glass" - }, - "water_state": { - "Name": "minecraft:candle", - "Properties": { - "candles": "1", - "lit": "false", - "waterlogged": "false" - } - } - }, - "lava_level": { - "above_bottom": 8 - }, - "probability": 0.01, - "replaceable": "#minecraft:overworld_carver_replaceables", - "shape": { - "distance_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "horizontal_radius_factor": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 1.0, - "min_inclusive": 0.75 - } - }, - "thickness": { - "type": "minecraft:trapezoid", - "value": { - "max": 6.0, - "min": 0.0, - "plateau": 2.0 - } - }, - "vertical_radius_center_factor": 0.0, - "vertical_radius_default_factor": 1.0, - "width_smoothness": 3 - }, - "vertical_rotation": { - "type": "minecraft:uniform", - "value": { - "max_exclusive": 0.125, - "min_inclusive": -0.125 - } - }, - "y": { - "type": "minecraft:uniform", - "max_inclusive": { - "absolute": 67 - }, - "min_inclusive": { - "absolute": 10 - } - }, - "yScale": 3.0 - } - } + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" ] }, "downfall": 0.5, diff --git a/src/main/resources/data/biomesoplenty/worldgen/configured_carver/origin_cave.json b/src/main/resources/data/biomesoplenty/worldgen/configured_carver/origin_cave.json new file mode 100644 index 000000000..32f0a0632 --- /dev/null +++ b/src/main/resources/data/biomesoplenty/worldgen/configured_carver/origin_cave.json @@ -0,0 +1,48 @@ +{ + "type": "biomesoplenty:origin_cave", + "config": { + "debug_settings": { + "air_state": { + "Name": "minecraft:crimson_button", + "Properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + "barrier_state": { + "Name": "minecraft:glass" + }, + "lava_state": { + "Name": "minecraft:orange_stained_glass" + }, + "water_state": { + "Name": "minecraft:candle", + "Properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + } + }, + "floor_level": -0.7, + "horizontal_radius_multiplier": 1.0, + "lava_level": { + "above_bottom": 10 + }, + "probability": 0.14285715, + "replaceable": "#minecraft:overworld_carver_replaceables", + "vertical_radius_multiplier": 1.0, + "y": { + "type": "minecraft:biased_to_bottom", + "inner": 8, + "max_inclusive": { + "absolute": 127 + }, + "min_inclusive": { + "absolute": 0 + } + }, + "yScale": 0.5 + } +} \ No newline at end of file