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

View File

@ -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 );

View File

@ -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 );

View File

@ -8,7 +8,9 @@ actors.blobs.stenchgas.desc=A cloud of fetid stench is swirling here.
actors.blobs.toxicgas.desc=A greenish cloud of toxic gas is swirling here.
actors.blobs.toxicgas.ondeath=You died from a toxic gas...
actors.blobs.venomgas.desc=A cloud of foul acidic venom is swirling here.
actors.blobs.waterofawareness.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.
actors.blobs.waterofawareness.desc=Power of knowledge radiates from the water of this well. Take a sip from it to reveal all secrets of equipped items.
actors.blobs.waterofhealth.procced=As you take a sip, you feel your wounds heal completely.
actors.blobs.waterofhealth.desc=Power of health radiates from the water of this well. Take a sip from it to heal your wounds and satisfy hunger.
actors.blobs.wateroftransmutation.desc=Power of change radiates from the water of this well. Throw an item into the well to turn it into something else.
actors.blobs.web.desc=Everything is covered with a thick web here.