public List getPossibleCreatures(EnumCreatureType par1EnumCreatureType, int i, int j, int k)
{
if (par1EnumCreatureType == EnumCreatureType.monster)
{
final List monsters = new ArrayList();
monsters.add(new SpawnListEntry(EntityEvolvedZombie.class, 2000, 1, 1));
monsters.add(new SpawnListEntry(EntityEvolvedSpider.class, 2000, 1, 1));
monsters.add(new SpawnListEntry(EntityEvolvedSkeleton.class, 2000, 1, 1));
monsters.add(new SpawnListEntry(EntityEvolvedCreeper.class, 2000, 1, 1));
return monsters;
}
else
{
return null;