summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source
diff options
context:
space:
mode:
authordploog <dploog@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-23 09:08:59 +0000
committerdploog <dploog@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-23 09:08:59 +0000
commit7b9c8f3ef0a491779f4a3100425cee9c227ab6ff (patch)
tree310211cde6dd04353b92756f8d4b64d8a81bd919 /crawl-ref/source
parentc2e58c5553cefab0b87db78225def6f1a13ad8e0 (diff)
downloadcrawl-ref-7b9c8f3ef0a491779f4a3100425cee9c227ab6ff.tar.gz
crawl-ref-7b9c8f3ef0a491779f4a3100425cee9c227ab6ff.zip
Changed stealth descriptors as per FR 1968020.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5192 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source')
-rw-r--r--crawl-ref/source/player.cc19
1 files changed, 10 insertions, 9 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index b8f3ce1b1d..4df73c1b08 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -3993,17 +3993,18 @@ void display_char_status()
// character evaluates their ability to sneak around:
const int ustealth = check_stealth();
- // XXX: made these values up, probably could be better.
mprf("You feel %sstealthy.",
(ustealth < 10) ? "extremely un" :
- (ustealth < 20) ? "very un" :
- (ustealth < 30) ? "un" :
- (ustealth < 50) ? "fairly " :
- (ustealth < 80) ? "" :
- (ustealth < 120) ? "quite " :
- (ustealth < 160) ? "very " :
- (ustealth < 200) ? "extremely "
- : "incredibly " );
+ (ustealth < 30) ? "very un" :
+ (ustealth < 60) ? "un" :
+ (ustealth < 90) ? "fairly " :
+ (ustealth < 120) ? "" :
+ (ustealth < 160) ? "quite " :
+ (ustealth < 220) ? "very " :
+ (ustealth < 300) ? "extremely " :
+ (ustealth < 400) ? "extraordinarily " :
+ (ustealth < 520) ? "incredibly "
+ : "uncannily ");
#if DEBUG_DIAGNOSTICS
mprf("stealth: %d", ustealth);