BiomesOPlenty/src/main/java/biomesoplenty/common/biome/overworld/PoppyFieldBiome.java

93 lines
5.5 KiB
Java
Raw Normal View History

2020-01-23 10:55:23 +00:00
/*******************************************************************************
* Copyright 2014-2019, the Biomes O' Plenty Team
*
* This work is licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International Public License.
*
* To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/4.0/.
******************************************************************************/
package biomesoplenty.common.biome.overworld;
import biomesoplenty.api.block.BOPBlocks;
import biomesoplenty.api.enums.BOPClimates;
2020-08-20 10:18:53 +00:00
import biomesoplenty.common.biome.BiomeTemplate;
2020-01-23 10:55:23 +00:00
import biomesoplenty.common.world.biome.BiomeFeatureHelper;
2020-09-21 13:28:40 +00:00
import biomesoplenty.common.world.gen.feature.BOPConfiguredFeatures;
2020-09-19 08:53:19 +00:00
import biomesoplenty.common.world.gen.feature.BOPFeatures;
import biomesoplenty.common.world.gen.surfacebuilders.BOPSurfaceBuilders;
2020-01-23 10:55:23 +00:00
import net.minecraft.block.Blocks;
import net.minecraft.entity.EntityClassification;
import net.minecraft.entity.EntityType;
2020-08-25 11:51:25 +00:00
import net.minecraft.world.biome.*;
2020-01-23 10:55:23 +00:00
import net.minecraft.world.gen.GenerationStage;
import net.minecraft.world.gen.feature.Feature;
2020-08-25 11:51:25 +00:00
import net.minecraft.world.gen.feature.Features;
2020-01-23 10:55:23 +00:00
import net.minecraft.world.gen.feature.IFeatureConfig;
2020-08-25 11:51:25 +00:00
import net.minecraft.world.gen.feature.structure.StructureFeatures;
2020-01-23 10:55:23 +00:00
import net.minecraft.world.gen.surfacebuilders.ConfiguredSurfaceBuilder;
import net.minecraft.world.gen.surfacebuilders.SurfaceBuilder;
2020-08-20 10:18:53 +00:00
public class PoppyFieldBiome extends BiomeTemplate
2020-01-23 10:55:23 +00:00
{
public PoppyFieldBiome()
{
2020-08-25 11:51:25 +00:00
this.addWeight(BOPClimates.DRY_TEMPERATE, 2);
}
@Override
protected void configureBiome(Biome.Builder builder)
{
builder.precipitation(Biome.RainType.RAIN).biomeCategory(Biome.Category.PLAINS).depth(0.1F).scale(0.01F).temperature(0.65F).downfall(0.15F);
2020-08-25 21:44:44 +00:00
builder.specialEffects((new BiomeAmbience.Builder()).waterColor(4159204).waterFogColor(329011).fogColor(12638463).skyColor(calculateSkyColor(0.65F)).ambientMoodSound(MoodSoundAmbience.LEGACY_CAVE_SETTINGS).build());
2020-08-25 11:51:25 +00:00
}
@Override
2020-09-19 09:10:20 +00:00
protected void configureGeneration(BiomeGenerationSettingsRegistryBuilder builder)
2020-08-25 11:51:25 +00:00
{
builder.surfaceBuilder(new ConfiguredSurfaceBuilder(BOPSurfaceBuilders.POPPY_FIELD, SurfaceBuilder.CONFIG_GRASS));
2020-01-23 10:55:23 +00:00
// Structures
2020-08-25 11:51:25 +00:00
DefaultBiomeFeatures.addDefaultOverworldLandStructures(builder);
builder.addStructureStart(StructureFeatures.RUINED_PORTAL_STANDARD);
2020-01-23 10:55:23 +00:00
// Underground
2020-08-25 11:51:25 +00:00
DefaultBiomeFeatures.addDefaultCarvers(builder);
DefaultBiomeFeatures.addDefaultMonsterRoom(builder);
DefaultBiomeFeatures.addDefaultUndergroundVariety(builder);
DefaultBiomeFeatures.addDefaultOres(builder);
2020-01-23 10:55:23 +00:00
////////////////////////////////////////////////////////////
// Vegetation
2020-09-21 13:28:40 +00:00
builder.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, BOPConfiguredFeatures.POPPY_FIELD_FLOWERS);
2020-08-25 11:51:25 +00:00
builder.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Feature.RANDOM_PATCH.configured(BiomeFeatureHelper.createClusterConfigurationDouble(Blocks.ROSE_BUSH.defaultBlockState())).decorated(Features.Placements.ADD_32).decorated(Features.Placements.HEIGHTMAP_SQUARE.count(15)));
builder.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Feature.RANDOM_PATCH.configured(BiomeFeatureHelper.createClusterConfigurationDouble(Blocks.TALL_GRASS.defaultBlockState())).decorated(Features.Placements.ADD_32).decorated(Features.Placements.HEIGHTMAP_SQUARE.count(25)));
builder.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Feature.RANDOM_PATCH.configured(BiomeFeatureHelper.createClusterConfiguration(BOPBlocks.sprout.defaultBlockState())).decorated(Features.Placements.HEIGHTMAP_DOUBLE_SQUARE.count(50)));
2020-09-21 13:28:40 +00:00
builder.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, BOPConfiguredFeatures.STANDARD_GRASS_24);
2020-08-25 11:51:25 +00:00
builder.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Feature.RANDOM_PATCH.configured(Features.Configs.SUGAR_CANE_CONFIG).decorated(Features.Placements.HEIGHTMAP_DOUBLE_SQUARE.count(5)));
2020-01-23 10:55:23 +00:00
////////////////////////////////////////////////////////////
// Other Features
2020-08-25 11:51:25 +00:00
DefaultBiomeFeatures.addDefaultSprings(builder);
DefaultBiomeFeatures.addSurfaceFreezing(builder);
}
2020-01-23 10:55:23 +00:00
2020-08-25 11:51:25 +00:00
@Override
protected void configureMobSpawns(MobSpawnInfo.Builder builder)
{
2020-01-23 10:55:23 +00:00
// Entities
2020-08-25 11:51:25 +00:00
builder.addSpawn(EntityClassification.CREATURE, new MobSpawnInfo.Spawners(EntityType.PIG, 10, 4, 4));
builder.addSpawn(EntityClassification.CREATURE, new MobSpawnInfo.Spawners(EntityType.DONKEY, 1, 1, 3));
builder.addSpawn(EntityClassification.AMBIENT, new MobSpawnInfo.Spawners(EntityType.BAT, 10, 8, 8));
builder.addSpawn(EntityClassification.MONSTER, new MobSpawnInfo.Spawners(EntityType.SPIDER, 100, 4, 4));
builder.addSpawn(EntityClassification.MONSTER, new MobSpawnInfo.Spawners(EntityType.ZOMBIE, 95, 4, 4));
builder.addSpawn(EntityClassification.MONSTER, new MobSpawnInfo.Spawners(EntityType.ZOMBIE_VILLAGER, 5, 1, 1));
builder.addSpawn(EntityClassification.MONSTER, new MobSpawnInfo.Spawners(EntityType.SKELETON, 100, 4, 4));
builder.addSpawn(EntityClassification.MONSTER, new MobSpawnInfo.Spawners(EntityType.CREEPER, 100, 4, 4));
builder.addSpawn(EntityClassification.MONSTER, new MobSpawnInfo.Spawners(EntityType.SLIME, 100, 4, 4));
builder.addSpawn(EntityClassification.MONSTER, new MobSpawnInfo.Spawners(EntityType.ENDERMAN, 10, 1, 4));
builder.addSpawn(EntityClassification.MONSTER, new MobSpawnInfo.Spawners(EntityType.WITCH, 5, 1, 1));
2020-01-23 10:55:23 +00:00
}
}