v0.3.0: buff descriptions round 3 plus some tweaks to displaying remaining turns.

This commit is contained in:
Evan Debenham
2015-05-14 19:57:15 -04:00
parent e8a2004345
commit ea628b7212
12 changed files with 93 additions and 6 deletions
@@ -59,4 +59,15 @@ public class Levitation extends FlavourBuff {
public String toString() {
return "Levitating";
}
@Override
public String desc() {
return "A magical force is levitating you over the ground, making you feel weightless.\n" +
"\n " +
"While levitating you ignore all ground-based effects. Traps won't trigger, water won't put out fire, " +
"plants won't be trampled, roots will miss you, and you will hover right over pits. " +
"Be careful, as all these things can come into effect the second the levitation ends!\n" +
"\n" +
"You are levitating for " + dispTurns() + ".";
}
}