From 64c061b68f981d172bc9f7bfa01403f9ab586aa8 Mon Sep 17 00:00:00 2001 From: lubiana Date: Wed, 5 Nov 2014 01:00:16 +0100 Subject: [PATCH] zwei enemies gepixelt --- res/images/enemy01.png | Bin 0 -> 552 bytes res/images/enemy02.png | Bin 0 -> 583 bytes .../spacescooter/entity/enemy/EnemyFour.java | 2 +- .../spacescooter/entity/enemy/EnemyThree.java | 2 +- .../spacescooter/entity/enemy/EnemyTwo.java | 2 +- 5 files changed, 3 insertions(+), 3 deletions(-) create mode 100644 res/images/enemy01.png create mode 100644 res/images/enemy02.png diff --git a/res/images/enemy01.png b/res/images/enemy01.png new file mode 100644 index 0000000000000000000000000000000000000000..b07c4b95b0157d445bb8c14ffba96f487b403ee3 GIT binary patch literal 552 zcmV+@0@wYCP)e zSad^gZEa<4bO1wgWnpw>WFU8GbZ8()Nlj2!fese{00EFmL_t(o!`)Xqj)O1|eU1>6 zxdL4p&Ok{8UGCswPk_>H#0gSxhjdVF=`+xz;|i2X<1N5o2;pN5i?kyl{=CnO#|AKr zD2gNq;;<*UF#*arn5YlKa32Dc)*CxOseToKE!3}e!1KI)2oJj*in>Eln|Zyj`mV3Q7vDdwEF$8j9@dV%JI z9FmaVXn;jW1~r)>k%Qh|-@(6{4M>t?QLX5zap^WY5U>N$zYo9~>+PI#oKD?yj|TwU z;JWTxI*Ovey{d4IB6+VW*ny})htXWKF9Pxk`TFtU2*Gxr4Xq}BJr~k61?Nn2;Wqh^ z^YMr*%b3&T+E%&Oow(LJrCimArB!mT2o(vP)Thvk&=GD?+w({11Bp z)i7ixjYti{DRARPG&cn+LR17M=K=*ly$my&4fVYLIROf*NmfK#xUiVORxYe=#ndjW qBCv%E*4h{Jw*4>u4UL29N97j}LB#=f#s5?Q0000e zSad^gZEa<4bO1wgWnpw>WFU8GbZ8()Nlj2!fese{00FN_L_t(o!|j*7af2`zhF|44 zC|QAyh8ZYbq0T!{Bn$Y`#^(j%f*ssJl~Oa%(6Is~X_Uf}EI?pkaO}%PjScqcdB1-N zc<>_k*pyPr_2)d#$=wC$&?HGv6vb6I061&HlO%zy<*NwjTP>Hg{;oMNX0@&B7YSGk zK3l*T_*OUoyxdw^Yrw5MV6wU>3iZ4MJ}F=282fn{zc#M%*vmgvVg^=TFquUX#Qz6K*3~8F8s)z>W0!&m0^hDhHKJq*# zo^Y{i2m$uz4{5m!lhey$t|!|i35iO=AP5Fl=vCk`Mq0$&-7p1}U{ey3xeaJeAFwII z=j?<}F$?B+WQhptaXhuT6f`xm|Hg^vY0iYUr(zost6WURD&^M%EV&sy{BHQaegFVT V6#o|nLxKPR002ovPDHLkV1hWB^VR?W literal 0 HcmV?d00001 diff --git a/src/de/teamteamteam/spacescooter/entity/enemy/EnemyFour.java b/src/de/teamteamteam/spacescooter/entity/enemy/EnemyFour.java index d890ab9..1affc54 100644 --- a/src/de/teamteamteam/spacescooter/entity/enemy/EnemyFour.java +++ b/src/de/teamteamteam/spacescooter/entity/enemy/EnemyFour.java @@ -15,7 +15,7 @@ public class EnemyFour extends Enemy{ public EnemyFour(int x, int y, ArrayList points) { super(x, y); - this.setImage("images/nyancat.png"); + this.setImage("images/enemy01.png"); this.setShootSpeed(4); this.setShootDelay(42); this.setShootSpawn(-10, 10); diff --git a/src/de/teamteamteam/spacescooter/entity/enemy/EnemyThree.java b/src/de/teamteamteam/spacescooter/entity/enemy/EnemyThree.java index b6a0863..05c2646 100644 --- a/src/de/teamteamteam/spacescooter/entity/enemy/EnemyThree.java +++ b/src/de/teamteamteam/spacescooter/entity/enemy/EnemyThree.java @@ -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); diff --git a/src/de/teamteamteam/spacescooter/entity/enemy/EnemyTwo.java b/src/de/teamteamteam/spacescooter/entity/enemy/EnemyTwo.java index 41a75b2..14d3d43 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{ 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);