From 50c2196b356f5e1ebe609e956ee5e31567f974bc Mon Sep 17 00:00:00 2001 From: zelgadis Date: Tue, 30 Dec 2008 03:58:03 +0000 Subject: 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 --- crawl-ref/source/directn.cc | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'crawl-ref/source/directn.cc') 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()) -- cgit v1.2.3-54-g00ecf