balancing

This commit is contained in:
ramapcsx2 2014-12-09 13:20:00 +01:00
parent f4699e28ee
commit ced2501c84
7 changed files with 7 additions and 7 deletions

View File

@ -16,7 +16,7 @@ public class EnemyBossMinion extends Enemy{
this.setImage("images/enemybossminion.png"); this.setImage("images/enemybossminion.png");
this.setPrimaryShotImage("images/shots/laser_green.png"); this.setPrimaryShotImage("images/shots/laser_green.png");
this.setShootSpeed(4); this.setShootSpeed(4);
this.setShootDelay(42); this.setShootDelay(30);
this.setShootSpawn(-10, 10); this.setShootSpawn(-10, 10);
this.setShootDamage(5); this.setShootDamage(5);
this.setHealthPoints(15); this.setHealthPoints(15);

View File

@ -21,7 +21,7 @@ public class EnemyFour extends Enemy{
this.setImage("images/enemy01.png"); this.setImage("images/enemy01.png");
this.setPrimaryShotImage("images/shots/laser_yellow.png"); this.setPrimaryShotImage("images/shots/laser_yellow.png");
this.setShootSpeed(4); this.setShootSpeed(4);
this.setShootDelay(42); this.setShootDelay(62);
this.setShootSpawn(-10, 10); this.setShootSpawn(-10, 10);
this.setShootDamage(5); this.setShootDamage(5);
this.setCollisionDamage(5); this.setCollisionDamage(5);

View File

@ -9,7 +9,7 @@ public class EnemyOne extends Enemy {
this.setImage("images/nyancat.png"); this.setImage("images/nyancat.png");
this.setPrimaryShotImage("images/shots/laser_red.png"); this.setPrimaryShotImage("images/shots/laser_red.png");
this.setShootSpeed(2); this.setShootSpeed(2);
this.setShootDelay(42); this.setShootDelay(62);
this.setShootSpawn(-8, 10); this.setShootSpawn(-8, 10);
this.setShootDamage(5); this.setShootDamage(5);
this.setCollisionDamage(5); this.setCollisionDamage(5);

View File

@ -16,7 +16,7 @@ public class EnemyThree extends Enemy{
this.setImage("images/enemy03.png"); this.setImage("images/enemy03.png");
this.setPrimaryShotImage("images/shots/laser_red.png"); this.setPrimaryShotImage("images/shots/laser_red.png");
this.setShootSpeed(4); this.setShootSpeed(4);
this.setShootDelay(42); this.setShootDelay(62);
this.setShootSpawn(-10, 10); this.setShootSpawn(-10, 10);
this.setShootDamage(5); this.setShootDamage(5);
this.setHealthPoints(15); this.setHealthPoints(15);

View File

@ -9,7 +9,7 @@ public class EnemyTwo extends Enemy{
this.setImage("images/enemy02.png"); this.setImage("images/enemy02.png");
this.setPrimaryShotImage("images/shots/laser_green.png"); this.setPrimaryShotImage("images/shots/laser_green.png");
this.setShootSpeed(4); this.setShootSpeed(4);
this.setShootDelay(42); this.setShootDelay(62);
this.setShootSpawn(-10, 10); this.setShootSpawn(-10, 10);
this.setShootDamage(5); this.setShootDamage(5);
this.setCollisionDamage(5); this.setCollisionDamage(5);

View File

@ -60,7 +60,7 @@ public abstract class Item extends CollidableEntity {
int[] items = new int[6]; int[] items = new int[6];
items[0] = 1; //ItemNuke items[0] = 1; //ItemNuke
items[1] = 4; //ItemCredit items[1] = 4; //ItemCredit
items[2] = 2; //ItemHeal items[2] = 3; //ItemHeal
items[3] = 2; //ItemShield items[3] = 2; //ItemShield
items[4] = 2; //ItemRocket or ItemBeam items[4] = 2; //ItemRocket or ItemBeam
items[5] = 3; //ItemIncreaseDamage items[5] = 3; //ItemIncreaseDamage

View File

@ -11,6 +11,6 @@ public class ItemHeal extends Item {
@Override @Override
public void itemCollected(Player player) { public void itemCollected(Player player) {
player.addHealthPoints(15); player.addHealthPoints(20);
} }
} }