v0.3.2: lotsa quest polish

This commit is contained in:
Evan Debenham
2015-10-23 02:40:09 -04:00
parent 2c3b12a1a7
commit 14f4d4aad6
5 changed files with 37 additions and 14 deletions
@@ -40,6 +40,8 @@ public class RotHeart extends Mob {
HP = HT = 80;
defenseSkill = 0;
EXP = 4;
loot = Wandmaker.Rotberry.Seed.class;
lootChance = 1f;
@@ -97,10 +99,12 @@ public class RotHeart extends Mob {
@Override
public String description() {
return
"heart";
"A Rotberry's fruit is very unique. Instead of rotting away and providing nutrients, the fruit grows, " +
"hardens, and encompasses the seed. It provides protection for the internal organs which grow " +
"inside the fruit. This giant orb is referred to as the heart of an adult rotberry plant.";
}
private static final HashSet<Class<?>> IMMUNITIES = new HashSet<Class<?>>();
private static final HashSet<Class<?>> IMMUNITIES = new HashSet<>();
static {
IMMUNITIES.add( ToxicGas.class );
}