v0.3.4: externalized 2 remaining blob strings

This commit is contained in:
Evan Debenham
2016-01-02 06:16:21 -05:00
committed by Evan Debenham
parent 7ee1f86ee2
commit 492e9069d2
3 changed files with 4 additions and 10 deletions
@@ -42,11 +42,6 @@ import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
public class WaterOfAwareness extends WellWater {
private static final String TXT_PROCCED =
"As you take a sip, you feel the knowledge pours into your mind. " +
"Now you know everything about your equipped items. Also you sense " +
"all items on the level and know all its secrets.";
@Override
protected boolean affectHero( Hero hero ) {
@@ -73,7 +68,7 @@ public class WaterOfAwareness extends WellWater {
Dungeon.hero.interrupt();
GLog.p( TXT_PROCCED );
GLog.p( Messages.get(this, "procced") );
Journal.remove( Feature.WELL_OF_AWARENESS );
@@ -38,9 +38,6 @@ import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfHealing;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
public class WaterOfHealth extends WellWater {
private static final String TXT_PROCCED =
"As you take a sip, you feel your wounds heal completely.";
@Override
protected boolean affectHero( Hero hero ) {
@@ -55,7 +52,7 @@ public class WaterOfHealth extends WellWater {
Dungeon.hero.interrupt();
GLog.p( TXT_PROCCED );
GLog.p( Messages.get(this, "procced") );
Journal.remove( Feature.WELL_OF_HEALTH );