summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex MacDonald <alex@alexjmacdonald.com>2009-11-15 23:01:06 -0500
committerDavid Ploog <dploog@users.sourceforge.net>2009-11-16 05:30:04 +0100
commite3afab40e6c4b0c52f21c74a2fa2b249be8ebc6c (patch)
tree3dc972abe1b740d48cbd9b769ae38dbc040876c9
parent8c9924e60faee7101352a553f892bf7eb2c03ab6 (diff)
downloadcrawl-ref-e3afab40e6c4b0c52f21c74a2fa2b249be8ebc6c.tar.gz
crawl-ref-e3afab40e6c4b0c52f21c74a2fa2b249be8ebc6c.zip
Worshippers of Xom will find Crazy Yiuf to be rather enlightening!
Signed-off-by: David Ploog <dploog@users.sourceforge.net>
-rw-r--r--crawl-ref/source/dat/database/monspeak.txt30
-rw-r--r--crawl-ref/source/mon-speak.cc2
2 files changed, 32 insertions, 0 deletions
diff --git a/crawl-ref/source/dat/database/monspeak.txt b/crawl-ref/source/dat/database/monspeak.txt
index 0d22cc502f..56ecfd504a 100644
--- a/crawl-ref/source/dat/database/monspeak.txt
+++ b/crawl-ref/source/dat/database/monspeak.txt
@@ -1324,6 +1324,36 @@ Crazy Yiuf
@_crazy_yiuf_speech_@
%%%%
+# Xom worshippers will find Crazy Yiuf to be somewhat more enlightening.
+Xom Crazy Yiuf
+
+# Socrates
+@The_monster@ says, "The life which is unexamined is not worth living."
+
+# Stephen Hawking
+@The_monster@ says, "My goal is simple. It is a complete understanding of the universe, why it is as it is and why it exists at all."
+
+# Einstein
+@The_monster@ says, "One may say the eternal mystery of the world is its comprehensibility."
+
+# Kierkegaard
+@The_monster@ says, "Which is more difficult, to awaken one who sleeps or to awaken one who, awake, dreams that he is awake?"
+
+# Chekhov
+@The_monster@ says, "Everyone has the same god; only people differ."
+
+# Nietzsche
+@The_monster@ says, "Against boredom even gods struggle in vain."
+
+VISUAL:@The_monster@ considers dialectic materialism.
+
+VISUAL:@The_monster@ ponders an existential dilemma.
+
+VISUAL:@The_monster@ shuffles his notes under his cloak.
+
+VISUAL:@The_monster@ heaves a sigh in contemplation.
+
+%%%%
# Not quite so mad when he's confused.
confused Crazy Yiuf
diff --git a/crawl-ref/source/mon-speak.cc b/crawl-ref/source/mon-speak.cc
index 595dbcffd5..3a2232cfe1 100644
--- a/crawl-ref/source/mon-speak.cc
+++ b/crawl-ref/source/mon-speak.cc
@@ -530,6 +530,8 @@ bool mons_speaks(monsters *monster)
prefixes.push_back("good god");
else if (is_evil_god(god))
prefixes.push_back("evil god");
+ else if (god == GOD_XOM)
+ prefixes.push_back("Xom");
}
#ifdef DEBUG_MONSPEAK