summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/directn.cc
diff options
context:
space:
mode:
authorzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2008-12-30 03:58:03 +0000
committerzelgadis <zelgadis@c06c8d41-db1a-0410-9941-cceddc491573>2008-12-30 03:58:03 +0000
commit50c2196b356f5e1ebe609e956ee5e31567f974bc (patch)
tree8420a05174dd4399742b05d708a2e53359c34c78 /crawl-ref/source/directn.cc
parent47d7437c65a71d5b7f13c017bb3358da9392e4a5 (diff)
downloadcrawl-ref-50c2196b356f5e1ebe609e956ee5e31567f974bc.tar.gz
crawl-ref-50c2196b356f5e1ebe609e956ee5e31567f974bc.zip
Describe the rock walls of the Slime Pit as "slime covered rock wall".
Describe the stone walls making up the vaults in Slime:6 as slime-free rune carved rocks walls, with the runes mentioning "the royal jelly". Make the metal and crystal walls of Vault:8 be described as "heavily etched", with the long description saying that they're covered with etched murals depecting exactly what is done to theives. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8026 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/directn.cc')
-rw-r--r--crawl-ref/source/directn.cc13
1 files changed, 13 insertions, 0 deletions
diff --git a/crawl-ref/source/directn.cc b/crawl-ref/source/directn.cc
index c6bb78faaf..a497db3916 100644
--- a/crawl-ref/source/directn.cc
+++ b/crawl-ref/source/directn.cc
@@ -2565,6 +2565,19 @@ std::string raw_feature_description(dungeon_feature_type grid,
if (base_desc)
return (base_str);
+ if (you.level_type == LEVEL_DUNGEON)
+ {
+ switch(you.where_are_you)
+ {
+ case BRANCH_SLIME_PITS:
+ if (grid == DNGN_ROCK_WALL)
+ base_str = "slime covered rock wall";
+ break;
+ default:
+ break;
+ }
+ }
+
desc_map::iterator i = base_desc_to_short.find(base_str);
if (i != base_desc_to_short.end())