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
@@ -32,10 +32,6 @@ import com.shatteredpixel.shatteredpixeldungeon.actors.blobs.Fire;
import com.shatteredpixel.shatteredpixeldungeon.scenes.GameScene;
public class PotionOfLiquidFlame extends Potion {
{
initials = "LF";
}
@Override
public void shatter( int cell ) {
@@ -62,13 +58,6 @@ public class PotionOfLiquidFlame extends Potion {
}
}
@Override
public String desc() {
return
"This flask contains an unstable compound which will burst " +
"violently into flame upon exposure to open air.";
}
@Override
public int price() {
return isKnown() ? 40 * quantity : super.price();