balancing: made nyancat much stronger and nearly doubled boss hp as well

This commit is contained in:
ramapcsx2 2014-12-10 10:47:51 +01:00
parent 33a72d9268
commit 74f0f778e2
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ public class EnemyBoss extends Enemy{
this.setShootDelay(50);
this.setShootSpawn(-10, 30);
this.setShootDamage(20);
this.setHealthPoints(300);
this.setHealthPoints(500);
this.setCollisionDamage(50);
this.setScore(5000);
this.willShoot = true;

View File

@ -13,7 +13,7 @@ public class EnemyOne extends Enemy {
this.setShootSpawn(-8, 10);
this.setShootDamage(5);
this.setCollisionDamage(5);
this.setHealthPoints(5);
this.setHealthPoints(100); // NyanCats are strong!
this.setScore(10);
}