slightly easier

This commit is contained in:
Chiss 2013-10-28 22:30:51 +11:00
parent 3142bd517d
commit 91ec162c88
3 changed files with 5 additions and 5 deletions

View File

@ -10,7 +10,7 @@ public class Wave2 extends WaveBase
{ {
public Wave2(Halloween host) public Wave2(Halloween host)
{ {
super(host, "A GIANT!? Better kill that guy fast!", 60000, host.GetSpawnSet(0)); super(host, "A GIANT!? Better kill that guy fast!", 65000, host.GetSpawnSet(0));
} }
@Override @Override

View File

@ -9,7 +9,7 @@ public class Wave3 extends WaveBase
{ {
public Wave3(Halloween host) public Wave3(Halloween host)
{ {
super(host, "Spiders Spiders Spiders!", 60000, host.GetSpawnSet(2)); super(host, "Spiders Spiders Spiders!", 70000, host.GetSpawnSet(2));
} }
@Override @Override

View File

@ -25,7 +25,7 @@ public class WaveBoss extends WaveBase
} }
//Increasing difficulty of mobs //Increasing difficulty of mobs
if (Host.GetCreatures().size() < 40 + (tick/200) && !_king.IsFinal()) if (Host.GetCreatures().size() < 20 + (tick/200) && !_king.IsFinal())
{ {
if (tick % Math.max(5, 15 - tick/400) == 0) if (tick % Math.max(5, 15 - tick/400) == 0)
if (Math.random() > 0.10) if (Math.random() > 0.10)
@ -34,8 +34,8 @@ public class WaveBoss extends WaveBase
Host.AddCreature(new MobCreeper(Host, Host.GetRandomSpawn())); Host.AddCreature(new MobCreeper(Host, Host.GetRandomSpawn()));
} }
//Giant every 1.5 minutes //Giant every 2.5 minutes
if (tick % 1800 == 0 && !_king.IsFinal()) if (tick % 3000 == 0 && !_king.IsFinal())
{ {
Host.AddCreature(new MobGiant(Host, GetSpawn())); Host.AddCreature(new MobGiant(Host, GetSpawn()));
} }