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 e4011bdcc..000000000 Binary files a/src/main/resources/data/biomesoplenty/worldgen.7z and /dev/null differ 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