Merge branch 'master' of /home/stud/timmeja/SpaceScooter

This commit is contained in:
Jan Philipp Timme 2014-11-11 15:14:26 +01:00
commit cc980bbd12
10 changed files with 3 additions and 4 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -46,7 +46,7 @@ public class Player extends ShootingEntity implements KeyboardListener {
if(this.canMove()) {
super.update();
int offset = 3;
if(Keyboard.isKeyDown(KeyEvent.VK_UP) && this.getY() > 0) {
if(Keyboard.isKeyDown(KeyEvent.VK_UP) && this.getY() > 51) {
this.transpose(0, -1 * offset);
}
if(Keyboard.isKeyDown(KeyEvent.VK_DOWN) && this.getY() < (GameConfig.windowHeight - this.getImage().getHeight())) {

View File

@ -10,7 +10,7 @@ public class StaticValue {
public static int ShieldPoints = 100;
/**
* Values for the Shop
* Values for the shop
*/
public static int schaden = 0;
public static int schild = 0;

View File

@ -26,7 +26,7 @@ public class EnemyThree extends Enemy{
this.setHealthPoints(15);
this.setCollisionDamage(10);
this.setScore(30);
this.setPosition(GameConfig.windowWidth, Random.nextInt(GameConfig.windowHeight - this.getHeight()));
this.setPosition(GameConfig.windowWidth, Random.nextInt(GameConfig.windowHeight - this.getHeight() - 50) +50);
this.newY = this.getY();
this.entityIterator = Screen.currentScreen.createEntityIterator();
}

View File

@ -81,7 +81,6 @@ public class ShopScreen extends Screen {
StaticValue.ShootDamage += 5;
StaticValue.schaden++;
Credits.setCredits(Credits.getCredits() - 5);
System.out.println(schaden.getGekauft());
}
break;
case 1: