001    package net.minecraft.src;
002    
003    public class BiomeGenHell extends BiomeGenBase
004    {
005        public BiomeGenHell(int par1)
006        {
007            super(par1);
008            this.spawnableMonsterList.clear();
009            this.spawnableCreatureList.clear();
010            this.spawnableWaterCreatureList.clear();
011            this.spawnableMonsterList.add(new SpawnListEntry(EntityGhast.class, 50, 4, 4));
012            this.spawnableMonsterList.add(new SpawnListEntry(EntityPigZombie.class, 100, 4, 4));
013            this.spawnableMonsterList.add(new SpawnListEntry(EntityMagmaCube.class, 1, 4, 4));
014        }
015    }