v0.2.2: refactored fetid rat immunity to stench gas

This commit is contained in:
Evan Debenham
2014-10-27 10:34:15 -04:00
parent a0be7b2188
commit f4f1f9f930
2 changed files with 11 additions and 3 deletions
@@ -443,6 +443,16 @@ public class Ghost extends NPC {
"The rat carries a cloud of horrible stench with it, it's overpoweringly strong up close.\n\n" +
"Dark ooze dribbles from the rat's mouth, it eats through the floor but seems to dissolve in water.";
}
private static final HashSet<Class<?>> IMMUNITIES = new HashSet<Class<?>>();
static {
IMMUNITIES.add( StenchGas.class );
}
@Override
public HashSet<Class<?>> immunities() {
return IMMUNITIES;
}
}