v0.3.0: buff descriptions round 2

This commit is contained in:
Evan Debenham
2015-05-13 01:54:54 -04:00
parent ccf6249b8f
commit 508c23b9a4
9 changed files with 90 additions and 2 deletions
@@ -241,6 +241,16 @@ public class CloakOfShadows extends Artifact {
return "Cloaked";
}
@Override
public String desc() {
return "Your cloak of shadows is granting you invisibility while you are shrouded by it.\n" +
"\n" +
"While you are invisible enemies are unable to attack or follow you. " +
"Most physical attacks and magical effects (such as scrolls and wands) will immediately cancel invisibility.\n" +
"\n" +
"You will remain cloaked until it is cancelled or your cloak runs out of charge.";
}
@Override
public void detach() {
if (target.invisible > 0)
@@ -91,5 +91,13 @@ public class ScrollOfRecharging extends Scroll {
return Math.min(1f, this.cooldown());
}
@Override
public String desc() {
return "Energy is coursing through you, improving the rate that your wands and staffs charge.\n" +
"\n" +
"Each turn this buff will increase current charge by one quarter, in addition to regular recharge. \n" +
"\n" +
"The recharging will last for " + dispTurns() + ".";
}
}
}