V0.2.1 : Finalized visuals for Gnoll Trickster

This commit is contained in:
Evan Debenham 2014-10-13 17:04:15 -04:00
parent 19aa1c3f1a
commit e2e9a25050
4 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.shatteredpixel.shatteredpixeldungeon" package="com.shatteredpixel.shatteredpixeldungeon"
android:versionCode="8" android:versionCode="8"
android:versionName="0.2.0c" android:versionName="0.2.1INDEV"
android:installLocation="auto"> android:installLocation="auto">
<uses-permission android:name="android.permission.VIBRATE"/> <uses-permission android:name="android.permission.VIBRATE"/>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

View File

@ -539,10 +539,10 @@ public class Ghost extends Mob.NPC {
public String description() { public String description() {
return return
"A strange looking creature, even by gnoll standards. It hunches forward with a wicked grin, " + "A strange looking creature, even by gnoll standards. It hunches forward with a wicked grin, " +
"almost cradling the satchel hanging at its side. Its eyes are wide with a strange mix of " + "almost cradling the satchel hanging over its shoulder. Its eyes are wide with a strange mix of " +
"fear and excitement.\n\n" + "fear and excitement.\n\n" +
"There is a large collection of poorly made darts in its satchel, they all seem to be " + "There is a large collection of poorly made darts in its satchel, they all seem to be " +
"tipped with various poisonous and flammable substances."; "tipped with various harmful substances.";
} }
private static final String COMBO = "combo"; private static final String COMBO = "combo";

View File

@ -1,7 +1,7 @@
package com.shatteredpixel.shatteredpixeldungeon.sprites; package com.shatteredpixel.shatteredpixeldungeon.sprites;
import com.shatteredpixel.shatteredpixeldungeon.Assets; import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.IncendiaryDart; import com.shatteredpixel.shatteredpixeldungeon.items.weapon.missiles.CurareDart;
import com.shatteredpixel.shatteredpixeldungeon.levels.Level; import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
import com.watabou.noosa.MovieClip; import com.watabou.noosa.MovieClip;
import com.watabou.noosa.TextureFilm; import com.watabou.noosa.TextureFilm;
@ -43,7 +43,7 @@ public class GnollTricksterSprite extends MobSprite {
if (!Level.adjacent(cell, ch.pos)) { if (!Level.adjacent(cell, ch.pos)) {
((MissileSprite)parent.recycle( MissileSprite.class )). ((MissileSprite)parent.recycle( MissileSprite.class )).
reset( ch.pos, cell, new IncendiaryDart(), new Callback() { reset( ch.pos, cell, new CurareDart(), new Callback() {
@Override @Override
public void call() { public void call() {
ch.onAttackComplete(); ch.onAttackComplete();