Added reeds to more biomes

This commit is contained in:
Matt Caughey 2013-09-27 16:58:55 -04:00
parent c1fdf456c1
commit 435a20c2b3
30 changed files with 30 additions and 2 deletions

View File

@ -32,6 +32,7 @@ public class BiomeGenAutumnHills extends BiomeGenBase
customBiomeDecorator.sproutsPerChunk = 2; customBiomeDecorator.sproutsPerChunk = 2;
customBiomeDecorator.wheatGrassPerChunk = 16; customBiomeDecorator.wheatGrassPerChunk = 16;
customBiomeDecorator.shrubsPerChunk = 20; customBiomeDecorator.shrubsPerChunk = 20;
customBiomeDecorator.waterReedsPerChunk = 2;
} }
/** /**

View File

@ -29,7 +29,7 @@ public class BiomeGenBorealForest extends BiomeGenBase
customBiomeDecorator.grassPerChunk = 50; customBiomeDecorator.grassPerChunk = 50;
customBiomeDecorator.wheatGrassPerChunk = 25; customBiomeDecorator.wheatGrassPerChunk = 25;
customBiomeDecorator.shrubsPerChunk = 10; customBiomeDecorator.shrubsPerChunk = 10;
customBiomeDecorator.waterReedsPerChunk = 2; customBiomeDecorator.waterReedsPerChunk = 4;
} }
/** /**

View File

@ -23,6 +23,7 @@ public class BiomeGenBrushland extends BiomeGenBase
customBiomeDecorator.flowersPerChunk = -999; customBiomeDecorator.flowersPerChunk = -999;
customBiomeDecorator.wheatGrassPerChunk = 3; customBiomeDecorator.wheatGrassPerChunk = 3;
customBiomeDecorator.shrubsPerChunk = 30; customBiomeDecorator.shrubsPerChunk = 30;
customBiomeDecorator.waterReedsPerChunk = 2;
customBiomeDecorator.generateQuicksand = true; customBiomeDecorator.generateQuicksand = true;
} }

View File

@ -26,6 +26,7 @@ public class BiomeGenCanyon extends BiomeGenBase
customBiomeDecorator.flowersPerChunk = -999; customBiomeDecorator.flowersPerChunk = -999;
customBiomeDecorator.canyonGrassPerChunk = 5; customBiomeDecorator.canyonGrassPerChunk = 5;
customBiomeDecorator.aloePerChunk = 2; customBiomeDecorator.aloePerChunk = 2;
customBiomeDecorator.waterReedsPerChunk = 2;
customBiomeDecorator.generatePumpkins = false; customBiomeDecorator.generatePumpkins = false;
customBiomeDecorator.generateCanyon = true; customBiomeDecorator.generateCanyon = true;
} }

View File

@ -26,6 +26,7 @@ public class BiomeGenCanyonRavine extends BiomeGenBase
customBiomeDecorator.flowersPerChunk = -999; customBiomeDecorator.flowersPerChunk = -999;
customBiomeDecorator.canyonGrassPerChunk = 3; customBiomeDecorator.canyonGrassPerChunk = 3;
customBiomeDecorator.aloePerChunk = 2; customBiomeDecorator.aloePerChunk = 2;
customBiomeDecorator.waterReedsPerChunk = 4;
customBiomeDecorator.generatePumpkins = false; customBiomeDecorator.generatePumpkins = false;
customBiomeDecorator.generateCanyon = true; customBiomeDecorator.generateCanyon = true;
} }

View File

@ -33,6 +33,7 @@ public class BiomeGenChaparral extends BiomeGenBase
customBiomeDecorator.carrotsPerChunk = 1; customBiomeDecorator.carrotsPerChunk = 1;
customBiomeDecorator.wheatGrassPerChunk = 10; customBiomeDecorator.wheatGrassPerChunk = 10;
customBiomeDecorator.shrubsPerChunk = 10; customBiomeDecorator.shrubsPerChunk = 10;
customBiomeDecorator.waterReedsPerChunk = 2;
spawnableCreatureList.add(new SpawnListEntry(EntityHorse.class, 5, 2, 6)); spawnableCreatureList.add(new SpawnListEntry(EntityHorse.class, 5, 2, 6));
} }

View File

@ -38,6 +38,7 @@ public class BiomeGenConiferousForest extends BiomeGenBase
customBiomeDecorator.berryBushesPerChunk = 1; customBiomeDecorator.berryBushesPerChunk = 1;
customBiomeDecorator.wheatGrassPerChunk = 5; customBiomeDecorator.wheatGrassPerChunk = 5;
customBiomeDecorator.shrubsPerChunk = 8; customBiomeDecorator.shrubsPerChunk = 8;
customBiomeDecorator.waterReedsPerChunk = 2;
} }
/** /**

View File

@ -25,6 +25,7 @@ public class BiomeGenField extends BiomeGenBase
customBiomeDecorator.bushesPerChunk = 8; customBiomeDecorator.bushesPerChunk = 8;
customBiomeDecorator.berryBushesPerChunk = 5; customBiomeDecorator.berryBushesPerChunk = 5;
customBiomeDecorator.wheatGrassPerChunk = 4; customBiomeDecorator.wheatGrassPerChunk = 4;
customBiomeDecorator.waterReedsPerChunk = 4;
customBiomeDecorator.generatePumpkins = true; customBiomeDecorator.generatePumpkins = true;
spawnableCreatureList.add(new SpawnListEntry(EntityHorse.class, 5, 2, 6)); spawnableCreatureList.add(new SpawnListEntry(EntityHorse.class, 5, 2, 6));
} }

View File

@ -28,6 +28,7 @@ public class BiomeGenFieldForest extends BiomeGenBase
customBiomeDecorator.berryBushesPerChunk = 5; customBiomeDecorator.berryBushesPerChunk = 5;
customBiomeDecorator.wheatGrassPerChunk = 4; customBiomeDecorator.wheatGrassPerChunk = 4;
customBiomeDecorator.shrubsPerChunk = 2; customBiomeDecorator.shrubsPerChunk = 2;
customBiomeDecorator.waterReedsPerChunk = 4;
customBiomeDecorator.generatePumpkins = true; customBiomeDecorator.generatePumpkins = true;
spawnableCreatureList.add(new SpawnListEntry(EntityHorse.class, 5, 2, 6)); spawnableCreatureList.add(new SpawnListEntry(EntityHorse.class, 5, 2, 6));
} }

View File

@ -40,6 +40,7 @@ public class BiomeGenGarden extends BiomeGenBase
customBiomeDecorator.lilyflowersPerChunk = 4; customBiomeDecorator.lilyflowersPerChunk = 4;
customBiomeDecorator.wheatGrassPerChunk = 10; customBiomeDecorator.wheatGrassPerChunk = 10;
customBiomeDecorator.shrubsPerChunk = 10; customBiomeDecorator.shrubsPerChunk = 10;
customBiomeDecorator.waterReedsPerChunk = 4;
customBiomeDecorator.generatePumpkins = true; customBiomeDecorator.generatePumpkins = true;
customBiomeDecorator.generateMelons = true; customBiomeDecorator.generateMelons = true;
spawnableCreatureList.clear(); spawnableCreatureList.clear();

View File

@ -34,6 +34,7 @@ public class BiomeGenGrassland extends BiomeGenBase
customBiomeDecorator.waterLakesPerChunk = 15; customBiomeDecorator.waterLakesPerChunk = 15;
customBiomeDecorator.portobellosPerChunk = 3; customBiomeDecorator.portobellosPerChunk = 3;
customBiomeDecorator.reedsBOPPerChunk = 5; customBiomeDecorator.reedsBOPPerChunk = 5;
customBiomeDecorator.waterReedsPerChunk = 2;
customBiomeDecorator.generatePumpkins = false; customBiomeDecorator.generatePumpkins = false;
spawnableCreatureList.add(new SpawnListEntry(EntitySheep.class, 14, 4, 4)); spawnableCreatureList.add(new SpawnListEntry(EntitySheep.class, 14, 4, 4));
spawnableCreatureList.add(new SpawnListEntry(EntityPig.class, 12, 4, 4)); spawnableCreatureList.add(new SpawnListEntry(EntityPig.class, 12, 4, 4));

View File

@ -36,6 +36,7 @@ public class BiomeGenLushDesert extends BiomeGenBase
customBiomeDecorator.cactiPerChunk = 20; customBiomeDecorator.cactiPerChunk = 20;
customBiomeDecorator.tinyCactiPerChunk = 5; customBiomeDecorator.tinyCactiPerChunk = 5;
customBiomeDecorator.waterLakesPerChunk = 5; customBiomeDecorator.waterLakesPerChunk = 5;
customBiomeDecorator.waterReedsPerChunk = 4;
customBiomeDecorator.aloePerChunk = 3; customBiomeDecorator.aloePerChunk = 3;
customBiomeDecorator.generateGrass = true; customBiomeDecorator.generateGrass = true;
customBiomeDecorator.generateSand = true; customBiomeDecorator.generateSand = true;

View File

@ -28,6 +28,7 @@ public class BiomeGenMesa extends BiomeGenBase
customBiomeDecorator.deadBushPerChunk = 2; customBiomeDecorator.deadBushPerChunk = 2;
customBiomeDecorator.desertGrassPerChunk = 10; customBiomeDecorator.desertGrassPerChunk = 10;
customBiomeDecorator.tinyCactiPerChunk = 2; customBiomeDecorator.tinyCactiPerChunk = 2;
customBiomeDecorator.waterReedsPerChunk = 2;
spawnableMonsterList.add(new SpawnListEntry(EntitySpider.class, 15, 2, 6)); spawnableMonsterList.add(new SpawnListEntry(EntitySpider.class, 15, 2, 6));
} }

View File

@ -25,6 +25,7 @@ public class BiomeGenMountain extends BiomeGenBase
customBiomeDecorator.wheatGrassPerChunk = 1; customBiomeDecorator.wheatGrassPerChunk = 1;
customBiomeDecorator.berryBushesPerChunk = 3; customBiomeDecorator.berryBushesPerChunk = 3;
customBiomeDecorator.shrubsPerChunk = 10; customBiomeDecorator.shrubsPerChunk = 10;
customBiomeDecorator.waterReedsPerChunk = 4;
} }
/** /**

View File

@ -32,6 +32,7 @@ public class BiomeGenOrchard extends BiomeGenBase
customBiomeDecorator.berryBushesPerChunk = 3; customBiomeDecorator.berryBushesPerChunk = 3;
customBiomeDecorator.carrotsPerChunk = 1; customBiomeDecorator.carrotsPerChunk = 1;
customBiomeDecorator.shrubsPerChunk = 10; customBiomeDecorator.shrubsPerChunk = 10;
customBiomeDecorator.waterReedsPerChunk = 4;
spawnableCreatureList.add(new SpawnListEntry(EntityHorse.class, 5, 2, 6)); spawnableCreatureList.add(new SpawnListEntry(EntityHorse.class, 5, 2, 6));
} }

View File

@ -27,6 +27,7 @@ public class BiomeGenOvergrownGreens extends BiomeGenBase
customBiomeDecorator.wheatGrassPerChunk = 10; customBiomeDecorator.wheatGrassPerChunk = 10;
customBiomeDecorator.highGrassPerChunk = 15; customBiomeDecorator.highGrassPerChunk = 15;
customBiomeDecorator.shrubsPerChunk = 5; customBiomeDecorator.shrubsPerChunk = 5;
customBiomeDecorator.waterReedsPerChunk = 4;
} }
@Override @Override

View File

@ -30,6 +30,7 @@ public class BiomeGenPrairie extends BiomeGenBase
customBiomeDecorator.wheatGrassPerChunk = 25; customBiomeDecorator.wheatGrassPerChunk = 25;
customBiomeDecorator.carrotsPerChunk = 1; customBiomeDecorator.carrotsPerChunk = 1;
customBiomeDecorator.shrubsPerChunk = 3; customBiomeDecorator.shrubsPerChunk = 3;
customBiomeDecorator.waterReedsPerChunk = 4;
spawnableCreatureList.add(new SpawnListEntry(EntityHorse.class, 5, 2, 6)); spawnableCreatureList.add(new SpawnListEntry(EntityHorse.class, 5, 2, 6));
} }

View File

@ -31,6 +31,7 @@ public class BiomeGenRedwoodForest extends BiomeGenBase
customBiomeDecorator.wheatGrassPerChunk = 7; customBiomeDecorator.wheatGrassPerChunk = 7;
customBiomeDecorator.shrubsPerChunk = 10; customBiomeDecorator.shrubsPerChunk = 10;
customBiomeDecorator.redwoodShrubsPerChunk = 100; customBiomeDecorator.redwoodShrubsPerChunk = 100;
customBiomeDecorator.waterReedsPerChunk = 2;
customBiomeDecorator.generatePumpkins = false; customBiomeDecorator.generatePumpkins = false;
} }

View File

@ -28,6 +28,7 @@ public class BiomeGenSavanna extends BiomeGenBase
customBiomeDecorator.wheatGrassPerChunk = 10; customBiomeDecorator.wheatGrassPerChunk = 10;
customBiomeDecorator.bushesPerChunk = 10; customBiomeDecorator.bushesPerChunk = 10;
customBiomeDecorator.shrubsPerChunk = 3; customBiomeDecorator.shrubsPerChunk = 3;
customBiomeDecorator.waterReedsPerChunk = 2;
customBiomeDecorator.generatePumpkins = false; customBiomeDecorator.generatePumpkins = false;
} }

View File

@ -26,6 +26,7 @@ public class BiomeGenScrubland extends BiomeGenBase
customBiomeDecorator.grassPerChunk = 30; customBiomeDecorator.grassPerChunk = 30;
customBiomeDecorator.wheatGrassPerChunk = 10; customBiomeDecorator.wheatGrassPerChunk = 10;
customBiomeDecorator.shrubsPerChunk = 2; customBiomeDecorator.shrubsPerChunk = 2;
customBiomeDecorator.waterReedsPerChunk = 2;
customBiomeDecorator.generatePumpkins = false; customBiomeDecorator.generatePumpkins = false;
} }

View File

@ -34,6 +34,7 @@ public class BiomeGenSeasonalForest extends BiomeGenBase
customBiomeDecorator.toadstoolsPerChunk = 4; customBiomeDecorator.toadstoolsPerChunk = 4;
customBiomeDecorator.wheatGrassPerChunk = 4; customBiomeDecorator.wheatGrassPerChunk = 4;
customBiomeDecorator.shrubsPerChunk = 15; customBiomeDecorator.shrubsPerChunk = 15;
customBiomeDecorator.waterReedsPerChunk = 4;
} }
/** /**

View File

@ -34,6 +34,7 @@ public class BiomeGenSeasonalSpruceForest extends BiomeGenBase
customBiomeDecorator.toadstoolsPerChunk = 4; customBiomeDecorator.toadstoolsPerChunk = 4;
customBiomeDecorator.wheatGrassPerChunk = 4; customBiomeDecorator.wheatGrassPerChunk = 4;
customBiomeDecorator.shrubsPerChunk = 15; customBiomeDecorator.shrubsPerChunk = 15;
customBiomeDecorator.waterReedsPerChunk = 2;
} }
/** /**

View File

@ -32,6 +32,7 @@ public class BiomeGenSpruceWoods extends BiomeGenBase
customBiomeDecorator.carrotsPerChunk = 1; customBiomeDecorator.carrotsPerChunk = 1;
customBiomeDecorator.bluebellsPerChunk = 100; customBiomeDecorator.bluebellsPerChunk = 100;
customBiomeDecorator.shrubsPerChunk = 5; customBiomeDecorator.shrubsPerChunk = 5;
customBiomeDecorator.waterReedsPerChunk = 2;
} }
/** /**

View File

@ -36,6 +36,7 @@ public class BiomeGenTemperateRainforest extends BiomeGenBase
customBiomeDecorator.sandPerChunk = -999; customBiomeDecorator.sandPerChunk = -999;
customBiomeDecorator.sandPerChunk2 = -999; customBiomeDecorator.sandPerChunk2 = -999;
customBiomeDecorator.shrubsPerChunk = 10; customBiomeDecorator.shrubsPerChunk = 10;
customBiomeDecorator.waterReedsPerChunk = 2;
} }
/** /**

View File

@ -27,7 +27,7 @@ public class BiomeGenTimber extends BiomeGenBase
customBiomeDecorator.thornsPerChunk = 2; customBiomeDecorator.thornsPerChunk = 2;
customBiomeDecorator.flowersPerChunk = -999; customBiomeDecorator.flowersPerChunk = -999;
customBiomeDecorator.toadstoolsPerChunk = 2; customBiomeDecorator.toadstoolsPerChunk = 2;
customBiomeDecorator.waterReedsPerChunk = 2; customBiomeDecorator.waterReedsPerChunk = 4;
customBiomeDecorator.shrubsPerChunk = 10; customBiomeDecorator.shrubsPerChunk = 10;
} }

View File

@ -28,6 +28,7 @@ public class BiomeGenTimberThin extends BiomeGenBase
customBiomeDecorator.flowersPerChunk = -999; customBiomeDecorator.flowersPerChunk = -999;
customBiomeDecorator.toadstoolsPerChunk = 2; customBiomeDecorator.toadstoolsPerChunk = 2;
customBiomeDecorator.shrubsPerChunk = 5; customBiomeDecorator.shrubsPerChunk = 5;
customBiomeDecorator.waterReedsPerChunk = 2;
} }
/** /**

View File

@ -29,6 +29,7 @@ public class BiomeGenTundra extends BiomeGenBase
customBiomeDecorator.gravelPerChunk = 8; customBiomeDecorator.gravelPerChunk = 8;
customBiomeDecorator.gravelPerChunk2 = 8; customBiomeDecorator.gravelPerChunk2 = 8;
customBiomeDecorator.shrubsPerChunk = 2; customBiomeDecorator.shrubsPerChunk = 2;
customBiomeDecorator.waterReedsPerChunk = 2;
} }
@Override @Override

View File

@ -23,6 +23,7 @@ public class BiomeGenWoodland extends BiomeGenBase
customBiomeDecorator.wheatGrassPerChunk = 3; customBiomeDecorator.wheatGrassPerChunk = 3;
customBiomeDecorator.toadstoolsPerChunk = 3; customBiomeDecorator.toadstoolsPerChunk = 3;
customBiomeDecorator.shrubsPerChunk = 20; customBiomeDecorator.shrubsPerChunk = 20;
customBiomeDecorator.waterReedsPerChunk = 2;
} }
@Override @Override

View File

@ -33,6 +33,7 @@ public class BiomeGenForestNew extends BiomeGenBase
customBiomeDecorator.carrotsPerChunk = 1; customBiomeDecorator.carrotsPerChunk = 1;
customBiomeDecorator.wheatGrassPerChunk = 1; customBiomeDecorator.wheatGrassPerChunk = 1;
customBiomeDecorator.shrubsPerChunk = 10; customBiomeDecorator.shrubsPerChunk = 10;
customBiomeDecorator.waterReedsPerChunk = 2;
} }
/** /**

View File

@ -28,6 +28,7 @@ public class BiomeGenPlainsNew extends BiomeGenBase
customBiomeDecorator.tinyFlowersPerChunk = 1; customBiomeDecorator.tinyFlowersPerChunk = 1;
customBiomeDecorator.portobellosPerChunk = 1; customBiomeDecorator.portobellosPerChunk = 1;
customBiomeDecorator.sunflowersPerChunk = 2; customBiomeDecorator.sunflowersPerChunk = 2;
customBiomeDecorator.waterReedsPerChunk = 2;
spawnableCreatureList.add(new SpawnListEntry(EntityHorse.class, 5, 2, 6)); spawnableCreatureList.add(new SpawnListEntry(EntityHorse.class, 5, 2, 6));
} }