v0.3.4: externalized painter and trap strings

This commit is contained in:
Evan Debenham
2015-12-30 04:41:18 -05:00
committed by Evan Debenham
parent e7934c838f
commit df293c01e8
36 changed files with 122 additions and 262 deletions
@@ -32,7 +32,6 @@ import com.shatteredpixel.shatteredpixeldungeon.sprites.TrapSprite;
public class PoisonTrap extends Trap{
{
name = "Poison trap";
color = TrapSprite.VIOLET;
shape = TrapSprite.CROSSHAIR;
}
@@ -49,9 +48,4 @@ public class PoisonTrap extends Trap{
CellEmitter.center( pos ).burst( PoisonParticle.SPLASH, 3 );
}
@Override
public String desc() {
return "A small dart-blower must be hidden nearby, activating this trap will cause it to shoot a poisoned dart at you.";
}
}