More progress on the Undergarden

This commit is contained in:
Matt Caughey 2014-05-12 14:21:36 -04:00
parent 868877cd3c
commit 00987e88db
4 changed files with 7 additions and 6 deletions

View File

@ -15,13 +15,13 @@ public class BiomeGenUndergarden extends BOPNetherBiome
this.topBlock = Blocks.netherrack;
this.fillerBlock = Blocks.netherrack;
this.bopWorldFeatures.setFeature("netherVinesPerChunk", 9);
this.bopWorldFeatures.setFeature("overgrownNetherrackPerChunk", 10);
this.bopWorldFeatures.setFeature("netherVinesPerChunk", 12);
this.bopWorldFeatures.setFeature("overgrownNetherrackPerChunk", 60);
//customBiomeDecorator.gravesPerChunk = 1;
this.bopWorldFeatures.setFeature("waspHivesPerChunk", 1);
this.bopWorldFeatures.setFeature("toadstoolsPerChunk", 3);
this.bopWorldFeatures.setFeature("glowshroomsPerChunk", 1);
this.theBiomeDecorator.mushroomsPerChunk = 8;
this.theBiomeDecorator.bigMushroomsPerChunk = 8;
this.theBiomeDecorator.mushroomsPerChunk = 30;
this.theBiomeDecorator.bigMushroomsPerChunk = 30;
}
}

View File

@ -260,10 +260,10 @@ public class BOPBiomes
//Nether Biomes
corruptedSands = registerNetherBiome(BiomeGenCorruptedSands.class, "Corrupted Sands", 10);
//undergarden = registerNetherBiome(BiomeGenUndergarden.class, "Undergarden", 10);
phantasmagoricInferno = registerNetherBiome(BiomeGenPhantasmagoricInferno.class, "Phantasmagoric Inferno", 10);
boneyard = registerNetherBiome(BiomeGenBoneyard.class, "Boneyard", 10);
visceralHeap = registerNetherBiome(BiomeGenVisceralHeap.class, "Visceral Heap", 10);
undergarden = registerNetherBiome(BiomeGenUndergarden.class, "Undergarden", 10);
}
private static void addSpawnBiomes()

View File

@ -90,6 +90,7 @@ public class BOPWorldFeatures
addFeature("boneSpinesDownPerChunk", 0);
addFeature("netherLavaLakesPerChunk", 0);
addFeature("netherVinesPerChunk", 0);
addFeature("overgrownNetherrackPerChunk", 0);
addFeature("bopFlowersPerChunk", 0);
addFeature("bopGrassPerChunk", 0);

View File

@ -109,7 +109,7 @@ public class WorldGenFieldAssociation
associateFeature("boneSpinesUpPerChunk", new WorldGenBoneSpine(false));
associateFeature("boneSpinesDownPerChunk", new WorldGenBoneSpine(true));
associateFeature("netherLavaLakesPerChunk", new WorldGenLakesNether());
associateFeature("netherVinesPerChunk", new WorldGenLongVine(BOPBlockHelper.get("ivy"), 8, 10));
associateFeature("netherVinesPerChunk", new WorldGenLongVine(BOPBlockHelper.get("ivy"), 15, 30));
associateFeature("overgrownNetherrackPerChunk", new WorldGenOvergrownNetherrack());
associateFeature("bopFlowersPerChunk", new WorldGenBOPFlowerManager());