Heavily increased Aechor Plant spawning

This commit is contained in:
Kino 2016-12-24 11:51:54 -05:00
parent 48390f2fc9
commit b176f6f240
2 changed files with 12 additions and 5 deletions

View file

@ -178,9 +178,15 @@ public class EntityAechorPlant extends EntityAetherAnimal
}
@Override
public int getMaxSpawnedInChunk()
{
return 2;
}
public int getMaxSpawnedInChunk()
{
return 2;
}
@Override
public boolean getCanSpawnHere()
{
return this.getBlockPathWeight(new BlockPos(this.posX, this.getEntityBoundingBox().minY, this.posZ)) == 10.0F;
}
}

View file

@ -57,7 +57,7 @@ public class AetherBiome extends Biome
private void addCreatureEntry(ArrayList<SpawnListEntry> list)
{
list.add(new SpawnListEntry(EntitySwet.class, 20, 4, 4));
list.add(new SpawnListEntry(EntityAechorPlant.class, 76, 3, 3));
list.add(new SpawnListEntry(EntityAechorPlant.class, 120, 3, 3));
list.add(new SpawnListEntry(EntitySheepuff.class, 30, 4, 4));
list.add(new SpawnListEntry(EntityPhyg.class, 39, 4, 4));
list.add(new SpawnListEntry(EntityMoa.class, 40, 3, 3));
@ -67,6 +67,7 @@ public class AetherBiome extends Biome
private void addMobEntry(ArrayList<SpawnListEntry> list)
{
list.add(new SpawnListEntry(EntityAechorPlant.class, 120, 1, 4));
list.add(new SpawnListEntry(EntityCockatrice.class, 60, 1, 2));
}