Decoration tweaks to a few biomes

This commit is contained in:
Matt Caughey 2014-04-09 14:17:47 -04:00
parent 2b1d4f380c
commit b200cce2e0
5 changed files with 7 additions and 7 deletions

View File

@ -36,13 +36,13 @@ public class BiomeGenGrassland extends BOPBiome
this.theBiomeDecorator.reedsPerChunk = 35;
this.theBiomeDecorator.mushroomsPerChunk = 20;
this.bopWorldFeatures.setFeature("waterLakesPerChunk", 15);
this.bopWorldFeatures.setFeature("waterLakesPerChunk", 5);
this.bopWorldFeatures.setFeature("portobellosPerChunk", 3);
this.bopWorldFeatures.setFeature("riverCanePerChunk", 5);
this.bopWorldFeatures.setFeature("waterReedsPerChunk", 2);
this.bopWorldFeatures.setFeature("generatePumpkins", false);
this.bopWorldFeatures.setFeature("bopGrassPerChunk", 2);
this.bopWorldFeatures.setFeature("bopGrassPerChunk", 3);
this.bopWorldFeatures.weightedGrassGen.put(new WorldGenTallGrass(BOPBlockHelper.get("foliage"), 1), 0.25D);
this.bopWorldFeatures.weightedGrassGen.put(new WorldGenTallGrass(BOPBlockHelper.get("foliage"), 2), 0.25D);

View File

@ -17,7 +17,7 @@ import java.util.Random;
public class BiomeGenJadeCliffs extends BOPBiome
{
private static final Height biomeHeight = new Height(0.5F, 1.5F);
private static final Height biomeHeight = new Height(0.5F, 1.0F);
public BiomeGenJadeCliffs(int id)
{

View File

@ -13,7 +13,7 @@ import java.util.Random;
public class BiomeGenMoor extends BOPBiome
{
private static final Height biomeHeight = new Height(0.4F, 0.6F);
private static final Height biomeHeight = new Height(0.4F, 0.5F);
public BiomeGenMoor(int id)
{

View File

@ -14,7 +14,7 @@ import java.util.Random;
public class BiomeGenMountain extends BOPBiome
{
private static final Height biomeHeight = new Height(0.4F, 0.9F);
private static final Height biomeHeight = new Height(0.4F, 0.8F);
public BiomeGenMountain(int id)
{

View File

@ -19,7 +19,7 @@ import java.util.Random;
public class BiomeGenTemperateRainforest extends BOPBiome
{
private static final Height biomeHeight = new Height(0.1F, 0.4F);
private static final Height biomeHeight = new Height(0.0F, 0.3F);
public BiomeGenTemperateRainforest(int id)
{
@ -40,7 +40,7 @@ public class BiomeGenTemperateRainforest extends BOPBiome
this.bopWorldFeatures.setFeature("poisonIvyPerChunk", 1);
this.bopWorldFeatures.setFeature("wildCarrotsPerChunk", 1);
this.bopWorldFeatures.setFeature("shrubsPerChunk", 10);
this.bopWorldFeatures.setFeature("waterReedsPerChunk", 2);
this.bopWorldFeatures.setFeature("waterReedsPerChunk", 6);
this.bopWorldFeatures.setFeature("leafPilesPerChunk", 15);
this.bopWorldFeatures.setFeature("seaweedPerChunk", 15);
this.bopWorldFeatures.setFeature("algaePerChunk", 5);