30 lines
1.1 KiB
Java
30 lines
1.1 KiB
Java
package biomesoplenty.biomes;
|
|
|
|
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 BiomeGenNetherBase extends BiomeGenBase
|
|
{
|
|
private BiomeDecoratorBOP customBiomeDecorator;
|
|
|
|
public BiomeGenNetherBase(int par1)
|
|
{
|
|
super(par1);
|
|
theBiomeDecorator = new BiomeDecoratorBOP(this);
|
|
customBiomeDecorator = (BiomeDecoratorBOP)theBiomeDecorator;
|
|
topBlock = (byte)Block.netherrack.blockID;
|
|
fillerBlock = (byte)Block.netherrack.blockID;
|
|
customBiomeDecorator.gravesPerChunk = 1;
|
|
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));
|
|
}
|
|
}
|