diff --git a/src/de/teamteamteam/spacescooter/entity/enemy/EnemyBossMinion.java b/src/de/teamteamteam/spacescooter/entity/enemy/EnemyBossMinion.java index 155a1be..969e24d 100644 --- a/src/de/teamteamteam/spacescooter/entity/enemy/EnemyBossMinion.java +++ b/src/de/teamteamteam/spacescooter/entity/enemy/EnemyBossMinion.java @@ -16,7 +16,7 @@ public class EnemyBossMinion extends Enemy{ this.setImage("images/enemybossminion.png"); this.setPrimaryShotImage("images/shots/laser_green.png"); this.setShootSpeed(4); - this.setShootDelay(42); + this.setShootDelay(30); this.setShootSpawn(-10, 10); this.setShootDamage(5); this.setHealthPoints(15); diff --git a/src/de/teamteamteam/spacescooter/entity/enemy/EnemyFour.java b/src/de/teamteamteam/spacescooter/entity/enemy/EnemyFour.java index 1a2ddd2..36aa40c 100644 --- a/src/de/teamteamteam/spacescooter/entity/enemy/EnemyFour.java +++ b/src/de/teamteamteam/spacescooter/entity/enemy/EnemyFour.java @@ -21,7 +21,7 @@ public class EnemyFour extends Enemy{ this.setImage("images/enemy01.png"); this.setPrimaryShotImage("images/shots/laser_yellow.png"); this.setShootSpeed(4); - this.setShootDelay(42); + this.setShootDelay(62); this.setShootSpawn(-10, 10); this.setShootDamage(5); this.setCollisionDamage(5); diff --git a/src/de/teamteamteam/spacescooter/entity/enemy/EnemyOne.java b/src/de/teamteamteam/spacescooter/entity/enemy/EnemyOne.java index 5520a0e..e403de8 100644 --- a/src/de/teamteamteam/spacescooter/entity/enemy/EnemyOne.java +++ b/src/de/teamteamteam/spacescooter/entity/enemy/EnemyOne.java @@ -9,7 +9,7 @@ public class EnemyOne extends Enemy { this.setImage("images/nyancat.png"); this.setPrimaryShotImage("images/shots/laser_red.png"); this.setShootSpeed(2); - this.setShootDelay(42); + this.setShootDelay(62); this.setShootSpawn(-8, 10); this.setShootDamage(5); this.setCollisionDamage(5); diff --git a/src/de/teamteamteam/spacescooter/entity/enemy/EnemyThree.java b/src/de/teamteamteam/spacescooter/entity/enemy/EnemyThree.java index 435373e..8c0f3d4 100644 --- a/src/de/teamteamteam/spacescooter/entity/enemy/EnemyThree.java +++ b/src/de/teamteamteam/spacescooter/entity/enemy/EnemyThree.java @@ -16,7 +16,7 @@ public class EnemyThree extends Enemy{ this.setImage("images/enemy03.png"); this.setPrimaryShotImage("images/shots/laser_red.png"); this.setShootSpeed(4); - this.setShootDelay(42); + this.setShootDelay(62); this.setShootSpawn(-10, 10); this.setShootDamage(5); this.setHealthPoints(15); diff --git a/src/de/teamteamteam/spacescooter/entity/enemy/EnemyTwo.java b/src/de/teamteamteam/spacescooter/entity/enemy/EnemyTwo.java index bdef067..67323bd 100644 --- a/src/de/teamteamteam/spacescooter/entity/enemy/EnemyTwo.java +++ b/src/de/teamteamteam/spacescooter/entity/enemy/EnemyTwo.java @@ -9,7 +9,7 @@ public class EnemyTwo extends Enemy{ this.setImage("images/enemy02.png"); this.setPrimaryShotImage("images/shots/laser_green.png"); this.setShootSpeed(4); - this.setShootDelay(42); + this.setShootDelay(62); this.setShootSpawn(-10, 10); this.setShootDamage(5); this.setCollisionDamage(5); diff --git a/src/de/teamteamteam/spacescooter/entity/item/Item.java b/src/de/teamteamteam/spacescooter/entity/item/Item.java index 88020c2..84f7507 100644 --- a/src/de/teamteamteam/spacescooter/entity/item/Item.java +++ b/src/de/teamteamteam/spacescooter/entity/item/Item.java @@ -60,7 +60,7 @@ public abstract class Item extends CollidableEntity { int[] items = new int[6]; items[0] = 1; //ItemNuke items[1] = 4; //ItemCredit - items[2] = 2; //ItemHeal + items[2] = 3; //ItemHeal items[3] = 2; //ItemShield items[4] = 2; //ItemRocket or ItemBeam items[5] = 3; //ItemIncreaseDamage diff --git a/src/de/teamteamteam/spacescooter/entity/item/ItemHeal.java b/src/de/teamteamteam/spacescooter/entity/item/ItemHeal.java index e9fe589..7e0582d 100644 --- a/src/de/teamteamteam/spacescooter/entity/item/ItemHeal.java +++ b/src/de/teamteamteam/spacescooter/entity/item/ItemHeal.java @@ -11,6 +11,6 @@ public class ItemHeal extends Item { @Override public void itemCollected(Player player) { - player.addHealthPoints(15); + player.addHealthPoints(20); } }