slightly easier
This commit is contained in:
parent
3142bd517d
commit
91ec162c88
@ -10,7 +10,7 @@ public class Wave2 extends WaveBase
|
||||
{
|
||||
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
|
||||
|
@ -9,7 +9,7 @@ public class Wave3 extends WaveBase
|
||||
{
|
||||
public Wave3(Halloween host)
|
||||
{
|
||||
super(host, "Spiders Spiders Spiders!", 60000, host.GetSpawnSet(2));
|
||||
super(host, "Spiders Spiders Spiders!", 70000, host.GetSpawnSet(2));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -25,7 +25,7 @@ public class WaveBoss extends WaveBase
|
||||
}
|
||||
|
||||
//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 (Math.random() > 0.10)
|
||||
@ -34,8 +34,8 @@ public class WaveBoss extends WaveBase
|
||||
Host.AddCreature(new MobCreeper(Host, Host.GetRandomSpawn()));
|
||||
}
|
||||
|
||||
//Giant every 1.5 minutes
|
||||
if (tick % 1800 == 0 && !_king.IsFinal())
|
||||
//Giant every 2.5 minutes
|
||||
if (tick % 3000 == 0 && !_king.IsFinal())
|
||||
{
|
||||
Host.AddCreature(new MobGiant(Host, GetSpawn()));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user