2019-05-14 08:17:30 +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;
|
|
|
|
import biomesoplenty.common.biome.BiomeBOP;
|
|
|
|
import biomesoplenty.common.world.gen.feature.BOPBiomeFeatures;
|
|
|
|
import biomesoplenty.common.world.gen.feature.StandardGrassFeature;
|
2019-06-13 06:07:49 +00:00
|
|
|
import com.google.common.collect.Lists;
|
2019-06-25 06:47:04 +00:00
|
|
|
import net.minecraft.block.BlockState;
|
2019-06-13 05:08:11 +00:00
|
|
|
import net.minecraft.block.Blocks;
|
2019-06-13 06:07:49 +00:00
|
|
|
import net.minecraft.entity.EntityClassification;
|
|
|
|
import net.minecraft.entity.EntityType;
|
2019-06-25 06:47:04 +00:00
|
|
|
import net.minecraft.fluid.Fluids;
|
2019-05-14 08:17:30 +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.DefaultBiomeFeatures;
|
2019-05-14 08:17:30 +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-14 08:17:30 +00:00
|
|
|
import net.minecraft.world.gen.feature.structure.MineshaftConfig;
|
|
|
|
import net.minecraft.world.gen.feature.structure.MineshaftStructure;
|
2019-06-28 13:38:31 +00:00
|
|
|
import net.minecraft.world.gen.feature.structure.PillagerOutpostConfig;
|
|
|
|
import net.minecraft.world.gen.feature.structure.VillageConfig;
|
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-14 08:17:30 +00:00
|
|
|
import net.minecraftforge.api.distmarker.Dist;
|
|
|
|
import net.minecraftforge.api.distmarker.OnlyIn;
|
|
|
|
|
|
|
|
public class BrushlandBiome extends BiomeBOP
|
|
|
|
{
|
|
|
|
public BrushlandBiome()
|
|
|
|
{
|
2019-06-13 07:31:07 +00:00
|
|
|
super((new Biome.Builder()).surfaceBuilder(new ConfiguredSurfaceBuilder(BOPBiomeFeatures.BRUSHLAND_SURFACE_BUILDER, SurfaceBuilder.GRASS_DIRT_GRAVEL_CONFIG)).precipitation(Biome.RainType.NONE).category(Biome.Category.SAVANNA).depth(0.1F).scale(0.1F).temperature(1.5F).downfall(0.1F).waterColor(4159204).waterFogColor(329011).parent((String)null));
|
2019-05-14 08:17:30 +00:00
|
|
|
|
2019-06-27 20:52:52 +00:00
|
|
|
// Structures
|
2019-06-28 13:38:31 +00:00
|
|
|
this.addStructure(Feature.VILLAGE, new VillageConfig("village/savanna/town_centers", 6));
|
|
|
|
this.addStructure(Feature.PILLAGER_OUTPOST, new PillagerOutpostConfig(0.004D));
|
2019-05-14 08:17:30 +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-14 08:17:30 +00:00
|
|
|
|
2019-06-27 20:52:52 +00:00
|
|
|
// Underground
|
|
|
|
DefaultBiomeFeatures.addCarvers(this);
|
2019-06-13 07:31:07 +00:00
|
|
|
DefaultBiomeFeatures.addStructures(this);
|
2019-05-14 08:17:30 +00:00
|
|
|
|
2019-06-13 07:31:07 +00:00
|
|
|
this.addFeature(GenerationStage.Decoration.LOCAL_MODIFICATIONS, Biome.createDecoratedFeature(Feature.LAKE, new LakesConfig(Blocks.LAVA.getDefaultState()), Placement.LAVA_LAKE, new LakeChanceConfig(80)));
|
2019-06-27 20:52:52 +00:00
|
|
|
|
|
|
|
DefaultBiomeFeatures.addMonsterRooms(this);
|
|
|
|
DefaultBiomeFeatures.addStoneVariants(this);
|
|
|
|
DefaultBiomeFeatures.addOres(this);
|
|
|
|
DefaultBiomeFeatures.addSedimentDisks(this);
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////
|
2019-05-14 08:17:30 +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.TWIGLET_TREE, BOPBiomeFeatures.DYING_TREE, BOPBiomeFeatures.SPARSE_OAK_TREE}, new IFeatureConfig[]{IFeatureConfig.NO_FEATURE_CONFIG, IFeatureConfig.NO_FEATURE_CONFIG, IFeatureConfig.NO_FEATURE_CONFIG}, new float[]{0.4F, 0.1F, 0.2F}, BOPBiomeFeatures.ACACIA_TWIGLET_SMALL, IFeatureConfig.NO_FEATURE_CONFIG), Placement.COUNT_EXTRA_HEIGHTMAP, new AtSurfaceWithExtraConfig(3, 0.4F, 1)));
|
2019-06-25 05:33:43 +00:00
|
|
|
this.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Biome.createDecoratedFeature(new StandardGrassFeature(NoFeatureConfig::deserialize), IFeatureConfig.NO_FEATURE_CONFIG, Placement.COUNT_HEIGHTMAP_DOUBLE, new FrequencyConfig(12)));
|
|
|
|
this.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Biome.createDecoratedFeature(Feature.DOUBLE_PLANT, new DoublePlantConfig(Blocks.TALL_GRASS.getDefaultState()), Placement.COUNT_HEIGHTMAP_32, new FrequencyConfig(3)));
|
|
|
|
this.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Biome.createDecoratedFeature(Feature.DEAD_BUSH, IFeatureConfig.NO_FEATURE_CONFIG, Placement.COUNT_HEIGHTMAP_DOUBLE, new FrequencyConfig(7)));
|
|
|
|
this.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Biome.createDecoratedFeature(Feature.CACTUS, IFeatureConfig.NO_FEATURE_CONFIG, Placement.COUNT_HEIGHTMAP_DOUBLE, new FrequencyConfig(5)));
|
|
|
|
this.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Biome.createDecoratedFeature(Feature.BUSH, new BushConfig(BOPBlocks.bush.getDefaultState()), Placement.COUNT_HEIGHTMAP_DOUBLE, new FrequencyConfig(15)));
|
2019-06-25 06:47:04 +00:00
|
|
|
this.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Biome.createDecoratedFeature(Feature.BUSH, new BushConfig(BOPBlocks.tiny_cactus.getDefaultState()), Placement.COUNT_HEIGHTMAP_DOUBLE, new FrequencyConfig(4)));
|
|
|
|
this.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Biome.createDecoratedFeature(Feature.BUSH, new BushConfig(BOPBlocks.dune_grass.getDefaultState()), Placement.COUNT_HEIGHTMAP_DOUBLE, new FrequencyConfig(9)));
|
|
|
|
this.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Biome.createDecoratedFeature(Feature.BUSH, new BushConfig(BOPBlocks.desert_grass.getDefaultState()), Placement.COUNT_HEIGHTMAP_DOUBLE, new FrequencyConfig(10)));
|
|
|
|
this.addFeature(GenerationStage.Decoration.VEGETAL_DECORATION, Biome.createDecoratedFeature(Feature.BUSH, new BushConfig(BOPBlocks.dead_grass.getDefaultState()), Placement.COUNT_HEIGHTMAP_DOUBLE, new FrequencyConfig(5)));
|
2019-05-14 08:17:30 +00:00
|
|
|
|
2019-06-27 20:52:52 +00:00
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
// Other Features
|
|
|
|
DefaultBiomeFeatures.addSprings(this);
|
|
|
|
DefaultBiomeFeatures.func_222297_ap(this);
|
|
|
|
|
|
|
|
// Entities
|
2019-06-13 05:08:11 +00:00
|
|
|
this.addSpawn(EntityClassification.CREATURE, new Biome.SpawnListEntry(EntityType.RABBIT, 4, 2, 3));
|
|
|
|
this.addSpawn(EntityClassification.AMBIENT, new Biome.SpawnListEntry(EntityType.BAT, 10, 8, 8));
|
|
|
|
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));
|
|
|
|
this.addSpawn(EntityClassification.MONSTER, new Biome.SpawnListEntry(EntityType.HUSK, 80, 4, 4));
|
2019-05-14 08:17:30 +00:00
|
|
|
|
2019-05-19 03:20:31 +00:00
|
|
|
this.addWeight(BOPClimates.SAVANNA, 5);
|
2019-05-14 08:17:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@OnlyIn(Dist.CLIENT)
|
2019-06-13 04:49:50 +00:00
|
|
|
@Override
|
2019-05-14 08:17:30 +00:00
|
|
|
public int getGrassColor(BlockPos pos)
|
|
|
|
{
|
|
|
|
return 0xE5DFA9;
|
|
|
|
}
|
|
|
|
|
|
|
|
@OnlyIn(Dist.CLIENT)
|
2019-06-13 04:49:50 +00:00
|
|
|
@Override
|
2019-05-14 08:17:30 +00:00
|
|
|
public int getFoliageColor(BlockPos pos)
|
|
|
|
{
|
|
|
|
return 0xDAE0B3;
|
|
|
|
}
|
|
|
|
}
|