diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Albino.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Albino.java index 2ea258e22..bebdcb13f 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Albino.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Albino.java @@ -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."; + } } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Crab.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Crab.java index 3986601dd..4e5fbe3af 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Crab.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Crab.java @@ -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."; } } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Goo.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Goo.java index e730e9353..04870a2ca 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Goo.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Goo.java @@ -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"; diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Rat.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Rat.java index c723da3fd..2a0349efa 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Rat.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Rat.java @@ -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."; } } diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Statue.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Statue.java index 124f976dd..ba3bcd434 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Statue.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/Statue.java @@ -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> RESISTANCES = new HashSet>();