V0.2.1: Updated sewer character descriptions

This commit is contained in:
Evan Debenham 2014-10-10 17:46:41 -04:00
parent 850470ef27
commit 02a20b083b
5 changed files with 16 additions and 7 deletions

View File

@ -47,4 +47,10 @@ public class Albino extends Rat {
return damage;
}
@Override
public String description() {
return
"This is a rare breed of marsupial rat, with pure white fur and jagged teeth.";
}
}

View File

@ -64,7 +64,7 @@ public class Crab extends Mob {
public String description() {
return
"These huge crabs are at the top of the food chain in the sewers. " +
"They are extremely fast and their thick exoskeleton can withstand " +
"They are extremely fast and their thick carapace can withstand " +
"heavy blows.";
}
}

View File

@ -216,8 +216,11 @@ public class Goo extends Mob {
@Override
public String description() {
return
"Little known about The Goo. It's quite possible that it is not even a creature, but rather a " +
"conglomerate of substances from the sewers that gained rudiments of free will.";
"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\n" +
"You feel a chill just from being near Goo, its gelatinus nature has let it absorb lots of dark energy, " +
"you can feel it just from being near. If goo is able to attack with this energy you won't live for long.";
}
private final String PUMPEDUP = "pumpedup";

View File

@ -52,7 +52,7 @@ public class Rat extends Mob {
@Override
public String description() {
return
"Marsupial rats are aggressive, but rather weak denizens " +
"of the sewers. They can be dangerous only in big numbers.";
"Marsupial rats are aggressive but rather weak denizens " +
"of the sewers. They have a nasty bite, but are only life threatening in large numbers.";
}
}

View File

@ -144,8 +144,8 @@ public class Statue extends Mob {
@Override
public String description() {
return
"You would think that it's just another ugly statue of this dungeon, but its red glowing eyes give itself away. " +
"While the statue itself is made of stone, the _" + weapon.name() + "_, it's wielding, looks real.";
"You would think that it's just another one of this dungeon's ugly statues, but its red glowing eyes give it away." +
"\n\nWhile the statue itself is made of stone, the _" + weapon.name() + "_, it's wielding, looks real.";
}
private static final HashSet<Class<?>> RESISTANCES = new HashSet<Class<?>>();