v0.3.2: added some flavour text to the prison

This commit is contained in:
Evan Debenham
2015-11-01 23:31:50 -05:00
parent 77d9abcd7b
commit 45546c0d0d
6 changed files with 25 additions and 12 deletions
@@ -146,7 +146,9 @@ public class Guard extends Mob {
@Override
public String description() {
return ""; //TODO
return "Once keepers of the prison, these guards have long since become no different than the inmates. " +
"They shamble like zombies, brainlessly roaming through the halls in search of anything out of place, like you!\n\n" +
"They carry chains around their hip, possibly used to pull in enemies to close range.";
}
private final String CHAINSUSED = "chainsused";
@@ -213,8 +213,9 @@ public class Tengu extends Mob {
@Override
public String description() {
return
"Tengu are members of the ancient assassins clan, which is also called Tengu. " +
"These assassins are noted for extensive use of shuriken and traps.";
"A famous assassin, named for the mask grafted to his face.\n\n" +
"Tengu is held down with large clasps on his wrists and knees, though he seems to have gotten rid of his chains long ago.\n\n" +
"He will try to use traps, deceptive magic, and precise attacks to eliminate the only thing stopping his escape: you.";
}
private static final HashSet<Class<?>> RESISTANCES = new HashSet<>();
@@ -159,9 +159,11 @@ public class Thief extends Mob {
@Override
public String description() {
String desc =
"Deeper levels of the dungeon have always been a hiding place for all kinds of criminals. " +
"Not all of them could keep a clear mind during their extended periods so far from daylight. Long ago, " +
"these crazy thieves and bandits have forgotten who they are and why they steal.";
"Though these inmates roam free of their cells, this place is still their prison. " +
"Over time, this place has taken their minds as well as their freedom. " +
"Long ago, these crazy thieves and bandits have forgotten who they are and why they steal.\n\n" +
"These enemies are more likely to steal and run than they are to fight. " +
"Make sure to keep them in sight, of you might never see your stolen item again.";
if (item != null) {
desc += String.format( TXT_CARRIES, Utils.capitalize( this.name ), item.name() );