zwei enemies gepixelt
This commit is contained in:
parent
74ba66451b
commit
64c061b68f
Binary file not shown.
After Width: | Height: | Size: 552 B |
Binary file not shown.
After Width: | Height: | Size: 583 B |
|
@ -15,7 +15,7 @@ public class EnemyFour extends Enemy{
|
|||
|
||||
public EnemyFour(int x, int y, ArrayList<Point> points) {
|
||||
super(x, y);
|
||||
this.setImage("images/nyancat.png");
|
||||
this.setImage("images/enemy01.png");
|
||||
this.setShootSpeed(4);
|
||||
this.setShootDelay(42);
|
||||
this.setShootSpawn(-10, 10);
|
||||
|
|
|
@ -19,7 +19,7 @@ public class EnemyThree extends Enemy{
|
|||
public EnemyThree(int x, int y) {
|
||||
super(x, y);
|
||||
random = new Random();
|
||||
this.setImage("images/nyancat.png");
|
||||
this.setImage("images/enemy02.png");
|
||||
this.setShootSpeed(4);
|
||||
this.setShootDelay(42);
|
||||
this.setShootSpawn(-10, 10);
|
||||
|
|
|
@ -9,7 +9,7 @@ public class EnemyTwo extends Enemy{
|
|||
public EnemyTwo(int x, int y) {
|
||||
super(x, y);
|
||||
Random random = new Random();
|
||||
this.setImage("images/nyancat.png");
|
||||
this.setImage("images/enemy02.png");
|
||||
this.setShootSpeed(4);
|
||||
this.setShootDelay(42);
|
||||
this.setShootSpawn(-10, 10);
|
||||
|
|
Loading…
Reference in New Issue