v0.6.2: cleaned up some game log entries

This commit is contained in:
Evan Debenham 2017-08-31 04:29:42 -04:00
parent 697c814551
commit 592976b91c
6 changed files with 15 additions and 19 deletions

View File

@ -687,10 +687,7 @@ public class Hero extends Char {
GLog.i( Messages.get(this, "you_now_have", item.name()) );
}
}
if (!heap.isEmpty()) {
GLog.i( Messages.get(this, "something_else") );
}
curAction = null;
} else {
heap.sprite.drop();

View File

@ -28,7 +28,6 @@ import com.shatteredpixel.shatteredpixeldungeon.items.Gold;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.sprites.BruteSprite;
import com.shatteredpixel.shatteredpixeldungeon.sprites.CharSprite;
import com.shatteredpixel.shatteredpixeldungeon.utils.GLog;
import com.watabou.utils.Bundle;
import com.watabou.utils.Random;
@ -82,7 +81,6 @@ public class Brute extends Mob {
enraged = true;
spend( TICK );
if (Dungeon.visible[pos]) {
GLog.w( Messages.get(this, "enraged_text") );
sprite.showStatus( CharSprite.NEGATIVE, Messages.get(this, "enraged") );
}
}

View File

@ -222,7 +222,6 @@ public class Goo extends Mob {
super.damage(dmg, src);
if ((HP*2 <= HT) && !bleeding){
BossHealthBar.bleed(true);
GLog.w( Messages.get(this, "enraged_text") );
sprite.showStatus(CharSprite.NEGATIVE, Messages.get(this, "enraged"));
((GooSprite)sprite).spray(true);
yell(Messages.get(this, "gluuurp"));

View File

@ -318,6 +318,7 @@ public class GameScene extends PixelScene {
log = new GameLog();
log.camera = uiCamera;
log.newLine();
add( log );
layoutTags();
@ -386,11 +387,14 @@ public class GameScene extends PixelScene {
Camera.main.target = hero;
if (InterlevelScene.mode != InterlevelScene.Mode.NONE) {
if (Dungeon.depth < Statistics.deepestFloor) {
GLog.h(Messages.get(this, "welcome_back"), Dungeon.depth);
} else {
GLog.h(Messages.get(this, "welcome"), Dungeon.depth);
if (Dungeon.depth == Statistics.deepestFloor
&& (InterlevelScene.mode == InterlevelScene.Mode.DESCEND || InterlevelScene.mode == InterlevelScene.Mode.FALL)) {
GLog.h(Messages.get(this, "descend"), Dungeon.depth);
Sample.INSTANCE.play(Assets.SND_DESCEND);
} else if (InterlevelScene.mode == InterlevelScene.Mode.RESET) {
GLog.h(Messages.get(this, "warp"));
} else {
GLog.h(Messages.get(this, "return"), Dungeon.depth);
}
switch (Dungeon.level.feeling) {

View File

@ -205,12 +205,11 @@ actors.buffs.weakness.desc=Your gear suddenly feels a lot heavier.\n\nWeakening
###hero
actors.hero.hero.name=you
actors.hero.hero.leave=One does not simply leave Pixel Dungeon.
actors.hero.hero.leave=You can't leave yet!
actors.hero.hero.level_up=Level up!
actors.hero.hero.new_level=Welcome to level %d! Now you are healthier and more focused. It's easier for you to hit enemies and dodge their attacks.
actors.hero.hero.new_level=Level up!\nYou are more accurate, evasive, & healthy!
actors.hero.hero.level_cap=You cannot grow stronger, but your experiences do give you a surge of power!
actors.hero.hero.you_now_have=You now have %s.
actors.hero.hero.something_else=There is something else here.
actors.hero.hero.you_now_have=You now have: %s.
actors.hero.hero.locked_chest=This chest is locked and you don't have a matching key.
actors.hero.hero.locked_door=You don't have a matching key.
actors.hero.hero.noticed_smth=You noticed something.
@ -367,7 +366,6 @@ actors.mobs.bee.desc=Despite their small size, golden bees tend to protect their
actors.mobs.brute.name=gnoll brute
actors.mobs.brute.enraged=enraged
actors.mobs.brute.enraged_text=The brute becomes enraged!
actors.mobs.brute.desc=Brutes are the largest, strongest and toughest of all gnolls. When severely wounded, they go berserk, inflicting even more damage to their enemies.
actors.mobs.crab.name=sewer crab
@ -407,7 +405,6 @@ actors.mobs.goo.defeated=glurp... glurp...
actors.mobs.goo.!!!=!!!
actors.mobs.goo.pumpup=Goo is pumping itself up!
actors.mobs.goo.enraged=enraged
actors.mobs.goo.enraged_text=Goo Becomes Enraged!!
actors.mobs.goo.gluuurp=GLUUUURP!
actors.mobs.goo.rankings_desc=Absorbed by the Goo
actors.mobs.goo.desc=Little is known about The Goo. It's quite possible that it is not even a creature, but rather a conglomerate of vile substances from the sewers that somehow gained basic intelligence. Regardless, dark magic is certainly what has allowed Goo to exist.\n\nIts gelatinous nature has let it absorb lots of dark energy, you feel a chill just from being near. If goo is able to attack with this energy you won't live for long.

View File

@ -16,8 +16,9 @@ scenes.changesscene.misc=Miscellaneous Changes
scenes.changesscene.translation=Translation Improvements
scenes.changesscene.previous=Previous Updates
scenes.gamescene.welcome=Welcome to the level %d of Pixel Dungeon!
scenes.gamescene.welcome_back=Welcome back to the level %d of Pixel Dungeon!
scenes.gamescene.descend=You descend to floor %d of the dungeon.
scenes.gamescene.warp=The walls warp and shift around you!
scenes.gamescene.return=You return to floor %d of the dungeon.
scenes.gamescene.chasm=Your steps echo across the dungeon.
scenes.gamescene.water=You hear water splashing around you.
scenes.gamescene.grass=The smell of vegetation is thick in the air.