summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-07 11:23:54 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-07 11:23:54 +0000
commit17b7bb3e2bab6f05a2e3000b11896f3987ed5a80 (patch)
tree4a6c734d4a0002d7b5feaf342e0a78c5f72db007 /crawl-ref/source
parenta300efc63ded7eca8eaf7cfa74bc7918b1d05a7d (diff)
downloadcrawl-ref-17b7bb3e2bab6f05a2e3000b11896f3987ed5a80.tar.gz
crawl-ref-17b7bb3e2bab6f05a2e3000b11896f3987ed5a80.zip
The keys "zombie", "spectral thing", "skeleton" and "simulacrum" now describe
the appropriate monsters [1749225]. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1783 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/describe.cc16
1 files changed, 16 insertions, 0 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 5fee2d0fd2..9f65fcd112 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -3562,6 +3562,22 @@ void describe_monsters(monsters& mons)
switch (mons.type)
{
+ case MONS_ZOMBIE_SMALL: case MONS_ZOMBIE_LARGE:
+ description << getLongDescription("zombie");
+ break;
+
+ case MONS_SKELETON_SMALL: case MONS_SKELETON_LARGE:
+ description << getLongDescription("skeleton");
+ break;
+
+ case MONS_SIMULACRUM_SMALL: case MONS_SIMULACRUM_LARGE:
+ description << getLongDescription("simulacrum");
+ break;
+
+ case MONS_SPECTRAL_THING:
+ description << getLongDescription("spectral thing");
+ break;
+
case MONS_ROTTING_DEVIL:
if (you.species == SP_GHOUL)
description << "It smells great!";