summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2006-09-26 11:03:20 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2006-09-26 11:03:20 +0000
commita53c89950b50d8a1713279bb80575d3f85d813d9 (patch)
treead69b2bf56345b265b56dfc3044f6695eb2e42cb
parent3c7e3bba2dc0521573baa7a0444f6c8777da81a2 (diff)
downloadcrawl-ref-a53c89950b50d8a1713279bb80575d3f85d813d9.tar.gz
crawl-ref-a53c89950b50d8a1713279bb80575d3f85d813d9.zip
Centaurs and nagas now have their speed noted in the 'A' screen.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup@132 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/mutation.cc13
1 files changed, 12 insertions, 1 deletions
diff --git a/crawl-ref/source/mutation.cc b/crawl-ref/source/mutation.cc
index 568c00aadd..f2a041b11b 100644
--- a/crawl-ref/source/mutation.cc
+++ b/crawl-ref/source/mutation.cc
@@ -902,6 +902,14 @@ void display_mutations(void)
j++;
break;
+ case SP_CENTAUR:
+ if (!you.mutation[MUT_FAST])
+ cprintf("You cover the ground quickly." EOL);
+ else
+ cprintf("You cover the ground extremely quickly." EOL);
+ j++;
+ break;
+
case SP_NAGA:
// breathe poison replaces spit poison:
if (!you.mutation[MUT_BREATHE_POISON])
@@ -911,7 +919,8 @@ void display_mutations(void)
cprintf("Your system is immune to poisons." EOL);
cprintf("You can see invisible." EOL);
- j += 3;
+ cprintf("You move rather slowly." EOL);
+ j += 4;
break;
case SP_GNOME:
@@ -1057,6 +1066,8 @@ void display_mutations(void)
// this is already handled above:
if (you.species == SP_NAGA && i == MUT_BREATHE_POISON)
continue;
+ if (you.species == SP_CENTAUR && i == MUT_FAST)
+ continue;
j++;
textcolor(LIGHTGREY);