summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/output.cc')
-rw-r--r--crawl-ref/source/output.cc22
1 files changed, 19 insertions, 3 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index 995039e0e5..b5b14fe1b2 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -2045,6 +2045,13 @@ std::string status_mut_abilities()
text += info;
have_any = true;
break;
+ case MUT_FANGS:
+ if (have_any)
+ text += ", ";
+ snprintf(info, INFO_SIZE, "sharp teeth %d", level);
+ text += info;
+ have_any = true;
+ break;
case MUT_HOOVES:
if (have_any)
text += ", ";
@@ -2057,11 +2064,10 @@ std::string status_mut_abilities()
text += "talons";
have_any = true;
break;
- case MUT_FANGS:
+ case MUT_PAWS:
if (have_any)
text += ", ";
- snprintf(info, INFO_SIZE, "sharp teeth %d", level);
- text += info;
+ text += "soft paws";
have_any = true;
break;
case MUT_BREATHE_POISON:
@@ -2097,6 +2103,16 @@ std::string status_mut_abilities()
text += info;
have_any = true;
break;
+ case MUT_EXTRA_EYES:
+ if (have_any)
+ text += ", ";
+ snprintf(info, INFO_SIZE, "%d extra eye%s",
+ level, level > 1? "s" : "");
+ text += info;
+ have_any = true;
+ break;
+
+ // scales -> calculate sum of AC bonus
case MUT_RED_SCALES:
AC_change += level;
if (level == 3)