From cb524aee35f14e8da1a20800902568f5cc049c08 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Mon, 13 Apr 2020 15:58:58 -0400 Subject: [PATCH] v0.8.0: final improvements to DM-100 sprites --- core/src/main/assets/dm100.png | Bin 532 -> 638 bytes .../sprites/DM100Sprite.java | 5 ++--- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/core/src/main/assets/dm100.png b/core/src/main/assets/dm100.png index 7c35f7ee51a5f388ad5882d89abf149216c61047..b563bc06103ffe20ad15c437aceb7a691ed4ca95 100644 GIT binary patch delta 613 zcmV-r0-F7l1pWk&B!4haOjJbx006kSvweMlJ3B!oB`yE|X4Tcq0001*nwh`9O^=T` zLPAYnUuJ7-D^gM+Jv|u9#%sv{0004WQchC-fFjR?OsB-og@Jb!| zz3YCWrw$4TIBdIayQ}j;2}T_U(&`=txv4>J^_!WX`^8s{q!^Hg-`&~>6HaJFr@#lX z0g|ipE>LGM>h?hHbdO%u;#R+z3I2G=SM5nL=wWGe1%F{84Rs_m=&hIMCX{&-sWTV{ zohMz@dwnwvvbx_CK2$zdZZr3?xFyfPspY;i{mAzl64YNYz+LP7AK(j(_c%AmY>;G- z$xhOjmeqA&X^_SJW#L2RW93$8qZqqj;}N)W!TBR-0QU|xK(oO`Y8{dY(MBAbJ9zS( z@5qpHWL|q|U4RyY=t+#yc`-K8c`-22fMl5lrR3<5j41)U^GFvd^O*0*kaA=`w{iTB zZiN39E2je(NDGjOJwbx>(!xVaPhy&XH^Kn`l;xFjHU@kb00000NkvXXu0mjfMQR=6 delta 506 zcmVh|F6H@0g- z^8%B~f1wntfV!K&wmXjrD?{@FlgfVyM8OKEzyAc={dqTIWoTYtQu!}|C|CjYmmi63 zTb)9I8*t+uRA5s1E08Bj!3wDNpJ)Gj2cQ9<@WBM1rwXhHQ15g%fjqT|#NYyIOD*;< zW$<+vej&pR6n|WoVOVDPJQW1vplO2MA;@h7@^};Jw|y!B7{K@b45vUHF(Jc^rKBbT zV<DE=7J$!FVPN2(sr;-j7Kk>n zSqe5i0u$dmBEs~*T;6}QL!U3;Ju>VN!9YZe_(#m%TXU;n00g2WLp=@Q0f_bwBDp w5+Dd5fGvHD?7cH>*rNG6n7ODSfg6kh0E;bUc2B+y+W-In07*qoM6N<$f}_#guK)l5 diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/sprites/DM100Sprite.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/sprites/DM100Sprite.java index 590e26041..1e13020bc 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/sprites/DM100Sprite.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/sprites/DM100Sprite.java @@ -31,7 +31,6 @@ import com.watabou.noosa.TextureFilm; import com.watabou.noosa.audio.Sample; import com.watabou.utils.PointF; -//TODO sprite still needs some color tweaking? public class DM100Sprite extends MobSprite { public DM100Sprite () { @@ -53,8 +52,8 @@ public class DM100Sprite extends MobSprite { zap = new Animation( 8, false ); zap.frames( frames, 5, 5, 1 ); - die = new Animation( 8, false ); - die.frames( frames, 10, 11, 12 ); + die = new Animation( 12, false ); + die.frames( frames, 10, 11, 12, 13, 14, 15 ); play( idle ); }