Improved spawnrates kind of.

This commit is contained in:
bconlon 2020-07-15 12:18:38 -07:00
parent 7b32b593fd
commit c90077beb5

View file

@ -56,22 +56,23 @@ public class AetherBiome extends BiomeGenBase {
this.setColor(0);
}
private void addCreatureEntry(ArrayList<SpawnListEntry> list) {
list.add(new SpawnListEntry(EntitySwet.class, 10, 4, 4));
list.add(new SpawnListEntry(EntityAechorPlant.class, 8, 3, 3));
list.add(new SpawnListEntry(EntitySheepuff.class, 10, 4, 4));
private void addCreatureEntry(ArrayList<SpawnListEntry> list)
{
list.add(new SpawnListEntry(EntitySwet.class, 20, 3, 4));
list.add(new SpawnListEntry(EntityPhyg.class, 12, 4, 4));
list.add(new SpawnListEntry(EntityAerbunny.class, 11, 3, 3));
list.add(new SpawnListEntry(EntitySheepuff.class, 10, 4, 4));
list.add(new SpawnListEntry(EntityMoa.class, 10, 3, 3));
list.add(new SpawnListEntry(EntityFlyingCow.class, 10, 4, 4));
list.add(new SpawnListEntry(EntityAerbunny.class, 11, 3, 3));
}
private void addMobEntry(ArrayList<SpawnListEntry> list) {
private void addMobEntry(ArrayList<SpawnListEntry> list)
{
list.add(new SpawnListEntry(EntityWhirlwind.class, 8, 2, 2));
list.add(new SpawnListEntry(EntityCockatrice.class, 4, 4, 4));
list.add(new SpawnListEntry(EntityAerwhale.class, 3, 1, 1));
list.add(new SpawnListEntry(EntityZephyr.class, 4, 1, 1));
list.add(new SpawnListEntry(EntityAechorPlant.class, 2, 3, 3));
list.add(new SpawnListEntry(EntityAerwhale.class, 2, 1, 1));
list.add(new SpawnListEntry(EntityAechorPlant.class, 1, 3, 3));
}
@Override