v0.3.4: externalized all remaining actor strings

This commit is contained in:
Evan Debenham
2015-12-29 20:09:44 -05:00
committed by Evan Debenham
parent c3b964a8cc
commit 2c76c77360
53 changed files with 415 additions and 812 deletions
@@ -34,7 +34,6 @@ import com.watabou.utils.Random;
public class Bat extends Mob {
{
name = "vampire bat";
spriteClass = BatSprite.class;
HP = HT = 30;
@@ -65,11 +64,6 @@ public class Bat extends Mob {
return 4;
}
@Override
public String defenseVerb() {
return "evaded";
}
@Override
public int attackProc( Char enemy, int damage ) {
@@ -96,14 +90,7 @@ public class Bat extends Mob {
return super.createLoot();
}
@Override
public String description() {
return
"These brisk and tenacious inhabitants of cave domes may defeat much larger opponents by " +
"replenishing their health with each successful attack.";
}
private static final HashSet<Class<?>> RESISTANCES = new HashSet<Class<?>>();
private static final HashSet<Class<?>> RESISTANCES = new HashSet<>();
static {
RESISTANCES.add( Leech.class );
}