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

101 lines
5.1 KiB
Java
Raw Normal View History

2019-05-02 17:06:37 +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.enums.BOPClimates;
import biomesoplenty.common.biome.BiomeBOP;
import biomesoplenty.common.world.gen.feature.BOPBiomeFeatures;
import biomesoplenty.common.world.gen.feature.WastelandGrassFeature;
2019-06-13 06:07:49 +00:00
import net.minecraft.block.Blocks;
2019-06-13 05:08:11 +00:00
import net.minecraft.entity.EntityClassification;
2019-06-13 06:07:49 +00:00
import net.minecraft.entity.EntityType;
2019-06-25 06:47:04 +00:00
import net.minecraft.fluid.Fluids;
2019-05-02 17:06:37 +00:00
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.biome.Biome;
2019-06-25 06:47:04 +00:00
import net.minecraft.world.biome.Biomes;
import net.minecraft.world.biome.DefaultBiomeFeatures;
2019-05-02 17:06:37 +00:00
import net.minecraft.world.gen.GenerationStage;
2019-06-25 06:47:04 +00:00
import net.minecraft.world.gen.carver.WorldCarver;
2019-06-13 06:07:49 +00:00
import net.minecraft.world.gen.feature.*;
2019-05-02 17:06:37 +00:00
import net.minecraft.world.gen.feature.structure.MineshaftConfig;
import net.minecraft.world.gen.feature.structure.MineshaftStructure;
2019-06-13 06:07:49 +00:00
import net.minecraft.world.gen.placement.*;
2019-06-13 07:31:07 +00:00
import net.minecraft.world.gen.surfacebuilders.ConfiguredSurfaceBuilder;
2019-06-25 06:47:04 +00:00
import net.minecraft.world.gen.surfacebuilders.SurfaceBuilder;
2019-05-02 17:06:37 +00:00
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
public class WastelandBiome extends BiomeBOP
{
public WastelandBiome()
{
2019-06-13 07:31:07 +00:00
super((new Biome.Builder()).surfaceBuilder(new ConfiguredSurfaceBuilder(SurfaceBuilder.DEFAULT, BOPBiomeFeatures.DRIED_SAND_GRAVEL_SURFACE)).precipitation(Biome.RainType.NONE).category(Biome.Category.DESERT).depth(0.0F).scale(-0.05F).temperature(2.0F).downfall(0.0F).waterColor(0x433721).waterFogColor(0x0C0C03).parent((String)null));
2019-05-02 17:06:37 +00:00
// Structures
2019-05-02 17:06:37 +00:00
this.addStructure(Feature.MINESHAFT, new MineshaftConfig(0.004D, MineshaftStructure.Type.NORMAL));
2019-06-13 06:07:49 +00:00
this.addStructure(Feature.STRONGHOLD, IFeatureConfig.NO_FEATURE_CONFIG);
2019-05-02 17:06:37 +00:00
// Underground
DefaultBiomeFeatures.addCarvers(this);
2019-06-13 07:31:07 +00:00
DefaultBiomeFeatures.addStructures(this);
DefaultBiomeFeatures.addLakes(this);
DefaultBiomeFeatures.addMonsterRooms(this);
DefaultBiomeFeatures.addStoneVariants(this);
DefaultBiomeFeatures.addOres(this);
2019-05-02 17:06:37 +00:00
////////////////////////////////////////////////////////////
2019-05-02 17:06:37 +00:00
// Vegetation
2019-06-25 06:47:04 +00:00
this.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Biome.createDecoratedFeature(Feature.RANDOM_SELECTOR, new MultipleRandomFeatureConfig(new Feature[]{BOPBiomeFeatures.DEAD_TREE_WASTELAND}, new IFeatureConfig[]{IFeatureConfig.NO_FEATURE_CONFIG}, new float[]{0.2F}, BOPBiomeFeatures.DYING_TREE_WASTELAND, IFeatureConfig.NO_FEATURE_CONFIG), Placement.COUNT_EXTRA_HEIGHTMAP, new AtSurfaceWithExtraConfig((int)0.75F, 0.1F, 1)));
this.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Biome.createDecoratedFeature(BOPBiomeFeatures.WASTELAND_FLOWERS, IFeatureConfig.NO_FEATURE_CONFIG, Placement.COUNT_HEIGHTMAP_32, new FrequencyConfig(1)));
this.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Biome.createDecoratedFeature(new WastelandGrassFeature(NoFeatureConfig::deserialize), IFeatureConfig.NO_FEATURE_CONFIG, Placement.COUNT_HEIGHTMAP_DOUBLE, new FrequencyConfig(2)));
2019-05-02 17:06:37 +00:00
////////////////////////////////////////////////////////////
// Other Features
DefaultBiomeFeatures.addSprings(this);
DefaultBiomeFeatures.addFossils(this);
DefaultBiomeFeatures.addFreezeTopLayer(this);
// Entities
2019-06-13 05:08:11 +00:00
this.addSpawn(EntityClassification.MONSTER, new Biome.SpawnListEntry(EntityType.SPIDER, 100, 4, 4));
this.addSpawn(EntityClassification.MONSTER, new Biome.SpawnListEntry(EntityType.ZOMBIE, 95, 4, 4));
this.addSpawn(EntityClassification.MONSTER, new Biome.SpawnListEntry(EntityType.ZOMBIE_VILLAGER, 5, 1, 1));
this.addSpawn(EntityClassification.MONSTER, new Biome.SpawnListEntry(EntityType.SKELETON, 100, 4, 4));
this.addSpawn(EntityClassification.MONSTER, new Biome.SpawnListEntry(EntityType.CREEPER, 100, 4, 4));
this.addSpawn(EntityClassification.MONSTER, new Biome.SpawnListEntry(EntityType.SLIME, 100, 4, 4));
this.addSpawn(EntityClassification.MONSTER, new Biome.SpawnListEntry(EntityType.ENDERMAN, 10, 1, 4));
this.addSpawn(EntityClassification.MONSTER, new Biome.SpawnListEntry(EntityType.WITCH, 5, 1, 1));
2019-05-02 17:06:37 +00:00
this.addWeight(BOPClimates.WASTELAND, 500);
this.setBeachBiome(Biomes.DESERT);
this.setRiverBiome((Biome)null);
2019-05-02 17:06:37 +00:00
}
2019-06-04 17:36:28 +00:00
@OnlyIn(Dist.CLIENT)
@Override
2019-06-04 17:36:28 +00:00
public int getSkyColorByTemp(float currentTemperature)
{
return 0x70ADEF;
}
2019-05-02 17:06:37 +00:00
@OnlyIn(Dist.CLIENT)
@Override
2019-05-02 17:06:37 +00:00
public int getGrassColor(BlockPos pos)
{
return 0xAD9364;
2019-05-02 17:06:37 +00:00
}
@OnlyIn(Dist.CLIENT)
@Override
2019-05-02 17:06:37 +00:00
public int getFoliageColor(BlockPos pos)
{
2019-06-04 17:36:28 +00:00
return 0xB5A76C;
2019-05-02 17:06:37 +00:00
}
}