v0.3.0: first round of buff descriptions

This commit is contained in:
Evan Debenham
2015-05-07 20:48:59 -04:00
parent 42af14f98a
commit 82a428233b
15 changed files with 173 additions and 21 deletions
@@ -63,5 +63,16 @@ public class Combo extends Buff {
detach();
return true;
}
@Override
public String desc() {
return "Through building momentum, the gladiator deals bonus damage.\n" +
"\n" +
"Your combo will keep building with quick attacks that do not miss. " +
"The higher your combo gets, the faster your attacks will need to be. " +
"failing to land a hit quickly enough will reset the combo.\n" +
"\n" +
(count <= 2 ? "Your combo has not built up enough to give you bonus damage yet." :
"Your combo is currently giving you " + ((count - 2) / 5f) + " % bonus damage.");
}
}