BiomesOPlenty/common/biomesoplenty/biomes/nether/BiomeGenNetherBone.java

34 lines
1.2 KiB
Java
Raw Normal View History

2013-09-14 10:16:39 +00:00
package biomesoplenty.biomes.nether;
2013-09-14 10:16:39 +00:00
import biomesoplenty.biomes.BiomeDecoratorBOP;
2013-05-18 22:23:21 +00:00
import net.minecraft.block.Block;
import net.minecraft.entity.monster.EntityGhast;
import net.minecraft.entity.monster.EntityMagmaCube;
import net.minecraft.entity.monster.EntityPigZombie;
import net.minecraft.world.biome.BiomeGenBase;
import net.minecraft.world.biome.SpawnListEntry;
public class BiomeGenNetherBone extends BiomeGenBase
{
private BiomeDecoratorBOP customBiomeDecorator;
2013-05-31 10:34:02 +00:00
public BiomeGenNetherBone(int par1)
{
super(par1);
theBiomeDecorator = new BiomeDecoratorBOP(this);
customBiomeDecorator = (BiomeDecoratorBOP)theBiomeDecorator;
topBlock = (byte)Block.netherrack.blockID;
fillerBlock = (byte)Block.netherrack.blockID;
customBiomeDecorator.boneSpinesPerChunk = 6;
customBiomeDecorator.boneSpines2PerChunk = 9;
2013-09-09 23:46:48 +00:00
customBiomeDecorator.gravesPerChunk = 1;
2013-05-31 10:34:02 +00:00
spawnableMonsterList.clear();
spawnableCreatureList.clear();
spawnableWaterCreatureList.clear();
spawnableCaveCreatureList.clear();
spawnableMonsterList.add(new SpawnListEntry(EntityGhast.class, 50, 4, 4));
spawnableMonsterList.add(new SpawnListEntry(EntityPigZombie.class, 100, 4, 4));
spawnableMonsterList.add(new SpawnListEntry(EntityMagmaCube.class, 1, 4, 4));
}
}