From a53c89950b50d8a1713279bb80575d3f85d813d9 Mon Sep 17 00:00:00 2001 From: haranp Date: Tue, 26 Sep 2006 11:03:20 +0000 Subject: 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 --- crawl-ref/source/mutation.cc | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) 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); -- cgit v1.2.3-54-g00ecf