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
@@ -33,7 +33,6 @@ import com.shatteredpixel.shatteredpixeldungeon.sprites.TrapSprite;
public class WeakeningTrap extends Trap{
{
name = "Weakening trap";
color = TrapSprite.GREEN;
shape = TrapSprite.WAVES;
}
@@ -51,9 +50,4 @@ public class WeakeningTrap extends Trap{
Buff.prolong( ch, Slow.class, Slow.duration(ch));
}
}
@Override
public String desc() {
return "Dark magic in this trap sucks the energy out of anything that comes into contact with it.";
}
}