summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
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
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')
-rw-r--r--crawl-ref/source/dat/descript/features.txt4
-rw-r--r--crawl-ref/source/dat/lair.des7
-rw-r--r--crawl-ref/source/dat/vaults.des14
-rw-r--r--crawl-ref/source/directn.cc13
4 files changed, 38 insertions, 0 deletions
diff --git a/crawl-ref/source/dat/descript/features.txt b/crawl-ref/source/dat/descript/features.txt
index 5f344e5488..c4399317ff 100644
--- a/crawl-ref/source/dat/descript/features.txt
+++ b/crawl-ref/source/dat/descript/features.txt
@@ -147,6 +147,10 @@ as to the quality or nature of their goods.
%%%%
A silver altar of Elyvilon
%%%%
+A slime covered rock wall
+
+This rock wall has is thickly coated with bright green slime. Ewwwwww.
+%%%%
A sparkling altar of Nemelex Xobeh
%%%%
A staircase back to the Crypt
diff --git a/crawl-ref/source/dat/lair.des b/crawl-ref/source/dat/lair.des
index db6599b007..3a46a715ea 100644
--- a/crawl-ref/source/dat/lair.des
+++ b/crawl-ref/source/dat/lair.des
@@ -757,6 +757,13 @@ NSUBST: P = O / *|
KMASK: | = no_monster_gen
SHUFFLE: ([{
LFLAGS: no_tele_control
+{{
+ dgn.set_feature_desc_short("stone wall", "rune carved stone wall")
+ dgn.set_feature_desc_long("stone wall",
+"This strangely slime-free stone wall is carved all over with countless "..
+"mystical runes. One often repeated set of runes seems to refer to "..
+"'the royal jelly'")
+}}
MAP
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
diff --git a/crawl-ref/source/dat/vaults.des b/crawl-ref/source/dat/vaults.des
index 6155f73919..3e9477cf49 100644
--- a/crawl-ref/source/dat/vaults.des
+++ b/crawl-ref/source/dat/vaults.des
@@ -235,6 +235,20 @@ SUBST: * = * |:2
#
MONS: vault guard
#
+{{
+ local detail = "is etched with murals depicting, in great and gruesome "..
+"detail, exactly what will be done to anyone caught stealing from the "..
+"Vaults. It makes you feel queasy."
+
+ dgn.set_feature_desc_short("metal wall", "heavily etched metal wall")
+ dgn.set_feature_desc_long("metal wall", "This metal wall " .. detail)
+
+ dgn.set_feature_desc_short("wall of green crystal",
+ "heavily etched wall of green crystal")
+ dgn.set_feature_desc_long("wall of green crystal",
+ "This wall of green crystal " .. detail)
+}}
+#
validate {{ return glyphs_connected('O', '{') }}
MAP
xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
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())