From 841875c09cb1d3c82a6a5e8fd7ca9baac6a759ca Mon Sep 17 00:00:00 2001 From: JJTCM Date: Tue, 18 Nov 2014 14:36:18 +0100 Subject: [PATCH] Switch Shoot DMG --- .../teamteamteam/spacescooter/entity/enemy/EnemyBoss.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/de/teamteamteam/spacescooter/entity/enemy/EnemyBoss.java b/src/de/teamteamteam/spacescooter/entity/enemy/EnemyBoss.java index b610f00..3912984 100644 --- a/src/de/teamteamteam/spacescooter/entity/enemy/EnemyBoss.java +++ b/src/de/teamteamteam/spacescooter/entity/enemy/EnemyBoss.java @@ -16,7 +16,7 @@ public class EnemyBoss extends Enemy{ this.setShootSpeed(5); this.setShootDelay(50); this.setShootSpawn(-10, 30); - this.setShootDamage(8); + this.setShootDamage(20); this.setHealthPoints(300); this.setCollisionDamage(50); this.setScore(5000); @@ -53,8 +53,8 @@ public class EnemyBoss extends Enemy{ } if(Random.nextInt(1000) < 5) new EnemyBossMinion(730, this.getY()); if(Random.nextInt(1000) < 50) { - createCustomShot(-10, 3, 8, 15, "images/shots/laser_red.png"); - createCustomShot(-10, 59, 8, 15, "images/shots/laser_red.png"); + createCustomShot(-10, 3, 8, 5, "images/shots/laser_red.png"); + createCustomShot(-10, 59, 8, 5, "images/shots/laser_red.png"); } }