v0.3.4: externalized 2 remaining blob strings
This commit is contained in:
parent
7ee1f86ee2
commit
492e9069d2
|
@ -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 );
|
||||
|
||||
|
|
|
@ -39,9 +39,6 @@ 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 );
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue
Block a user