v0.3.4: externalized potion strings

This commit is contained in:
Evan Debenham
2016-01-02 04:15:12 -05:00
committed by Evan Debenham
parent 4b768ea85c
commit 5ab29b50fa
14 changed files with 92 additions and 168 deletions
@@ -25,8 +25,6 @@ import com.shatteredpixel.shatteredpixeldungeon.actors.hero.Hero;
public class PotionOfExperience extends Potion {
{
initials = "Ex";
bones = true;
}
@@ -36,13 +34,6 @@ public class PotionOfExperience extends Potion {
hero.earnExp( hero.maxExp() );
}
@Override
public String desc() {
return
"The storied experiences of multitudes of battles reduced to liquid form, " +
"this draught will instantly raise your experience level.";
}
@Override
public int price() {
return isKnown() ? 80 * quantity : super.price();