v0.3.0: buff descriptions round 5, all descriptions added

This commit is contained in:
Evan Debenham
2015-05-22 12:00:52 -04:00
committed by Evan Debenham
parent 33616a1ce2
commit b707123f69
5 changed files with 55 additions and 2 deletions
@@ -17,6 +17,8 @@
*/
package com.shatteredpixel.shatteredpixeldungeon.actors.buffs;
import com.shatteredpixel.shatteredpixeldungeon.actors.Actor;
import com.shatteredpixel.shatteredpixeldungeon.actors.Char;
import com.shatteredpixel.shatteredpixeldungeon.ui.BuffIndicator;
import com.watabou.utils.Bundle;
@@ -48,4 +50,12 @@ public class SnipersMark extends FlavourBuff {
public String toString() {
return "Sniper's mark";
}
@Override
public String desc() {
return "The sniper is honed in on the nearby " + ((Char)Actor.findById(object)).name + ", " +
"gaining increased attack speed and armor penetration while attacking it.\n" +
"\n" +
"The sniper will remain honed in until she switches targets, stops attacking, or the target dies.";
}
}