Added poison ivy to other biomes

This commit is contained in:
Matt Caughey 2013-05-06 06:19:33 -04:00
parent 8032a052d5
commit d3af5f7482
10 changed files with 10 additions and 0 deletions

View file

@ -32,6 +32,7 @@ public class BiomeGenConiferousForest extends BiomeGenBase
this.customBiomeDecorator.toadstoolsPerChunk = 3;
this.customBiomeDecorator.violetsPerChunk = 2;
this.customBiomeDecorator.blueMilksPerChunk = 1;
this.customBiomeDecorator.poisonIvyPerChunk = 1;
}
/**

View file

@ -27,6 +27,7 @@ public class BiomeGenDeciduousForest extends BiomeGenBase
this.customBiomeDecorator.toadstoolsPerChunk = 1;
this.customBiomeDecorator.bushesPerChunk = 8;
this.customBiomeDecorator.blueMilksPerChunk = 2;
this.customBiomeDecorator.poisonIvyPerChunk = 1;
}
/**

View file

@ -26,6 +26,7 @@ public class BiomeGenForestNew extends BiomeGenBase
this.customBiomeDecorator.hydrangeasPerChunk = 2;
this.customBiomeDecorator.whiteFlowersPerChunk = 1;
this.customBiomeDecorator.reedsBOPPerChunk = 5;
this.customBiomeDecorator.poisonIvyPerChunk = 2;
}
/**

View file

@ -19,6 +19,7 @@ public class BiomeGenGrove extends BiomeGenBase
this.customBiomeDecorator.flowersPerChunk = 5;
this.customBiomeDecorator.grassPerChunk = 10;
this.customBiomeDecorator.sproutsPerChunk = 2;
this.customBiomeDecorator.poisonIvyPerChunk = 2;
this.customBiomeDecorator.generatePumpkins = false;
}

View file

@ -34,6 +34,7 @@ public class BiomeGenJungleNew extends BiomeGenBase
this.customBiomeDecorator.flowersPerChunk = 4;
this.customBiomeDecorator.orangeFlowersPerChunk = 5;
this.customBiomeDecorator.quicksandPerChunk = 1;
this.customBiomeDecorator.poisonIvyPerChunk = 1;
this.customBiomeDecorator.generateMelons = true;
this.waterColorMultiplier = 10745289;
this.spawnableMonsterList.add(new SpawnListEntry(EntityOcelot.class, 2, 1, 1));

View file

@ -20,6 +20,7 @@ public class BiomeGenMapleWoods extends BiomeGenBase
this.customBiomeDecorator.treesPerChunk = 9;
this.customBiomeDecorator.grassPerChunk = 1;
this.customBiomeDecorator.violetsPerChunk = 1;
this.customBiomeDecorator.poisonIvyPerChunk = 1;
}
/**

View file

@ -31,6 +31,7 @@ public class BiomeGenSeasonalForest extends BiomeGenBase
this.customBiomeDecorator.grassPerChunk = 8;
this.customBiomeDecorator.flowersPerChunk = -999;
this.customBiomeDecorator.toadstoolsPerChunk = 4;
this.customBiomeDecorator.poisonIvyPerChunk = 1;
}
/**

View file

@ -24,6 +24,7 @@ public class BiomeGenSpruceWoods extends BiomeGenBase
this.customBiomeDecorator.treesPerChunk = 10;
this.customBiomeDecorator.grassPerChunk = 6;
this.customBiomeDecorator.sproutsPerChunk = 3;
this.customBiomeDecorator.poisonIvyPerChunk = 1;
}
/**

View file

@ -30,6 +30,7 @@ public class BiomeGenTemperateRainforest extends BiomeGenBase
this.customBiomeDecorator.grassPerChunk = 25;
this.customBiomeDecorator.generatePumpkins = false;
this.customBiomeDecorator.blueMilksPerChunk = 3;
this.customBiomeDecorator.poisonIvyPerChunk = 1;
}
/**

View file

@ -36,6 +36,7 @@ public class BiomeGenTropicalRainforest extends BiomeGenBase
this.customBiomeDecorator.generateMelons = true;
this.customBiomeDecorator.sproutsPerChunk = 2;
this.customBiomeDecorator.quicksandPerChunk = 3;
this.customBiomeDecorator.poisonIvyPerChunk = 4;
this.spawnableMonsterList.add(new SpawnListEntry(EntityJungleSpider.class, 12, 6, 6));
this.waterColorMultiplier = 6160128;
}