summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/misc.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/misc.cc')
-rw-r--r--crawl-ref/source/misc.cc18
1 files changed, 18 insertions, 0 deletions
diff --git a/crawl-ref/source/misc.cc b/crawl-ref/source/misc.cc
index 8815dfbfaa..6424b506af 100644
--- a/crawl-ref/source/misc.cc
+++ b/crawl-ref/source/misc.cc
@@ -2392,6 +2392,24 @@ std::string weird_writing()
return result;
}
+std::string weird_roaring_animal()
+{
+ std::string result = getRandNameString("roaring_animal_name");
+
+ lowercase(result);
+
+ return result;
+}
+
+std::string weird_smell()
+{
+ std::string result = getRandNameString("smell_name");
+
+ lowercase(result);
+
+ return result;
+}
+
bool scramble(void)
{
if (you.attribute[ATTR_TRANSFORMATION] == TRAN_STATUE)