summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/religion.cc
diff options
context:
space:
mode:
authorAlex MacDonald <alex@alexjmacdonald.com>2009-11-15 03:13:28 -0500
committerDavid Ploog <dploog@users.sourceforge.net>2009-11-16 05:30:04 +0100
commit9282c221f93706907095680b1156ab8861640eba (patch)
treebe60390f697b420cbb09394583da140200cf6583 /crawl-ref/source/religion.cc
parente3afab40e6c4b0c52f21c74a2fa2b249be8ebc6c (diff)
downloadcrawl-ref-9282c221f93706907095680b1156ab8861640eba.tar.gz
crawl-ref-9282c221f93706907095680b1156ab8861640eba.zip
Kikubaaqdgha finetuning.
Kiku corpse invocation now costs less piety and hunger. Kiku accepts all forms of killing, now including demons. Kiku wrath buffed severely; player can expect miasma, titan zombies, and necromantic miscasts. Casting necromantic spells will also incur miscast effects (but not cause the spell to fail). Kiku '?/G' flavor text updated. Signed-off-by: David Ploog <dploog@users.sourceforge.net>
Diffstat (limited to 'crawl-ref/source/religion.cc')
-rw-r--r--crawl-ref/source/religion.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/crawl-ref/source/religion.cc b/crawl-ref/source/religion.cc
index 8ff2dbcc04..7d74b1ac43 100644
--- a/crawl-ref/source/religion.cc
+++ b/crawl-ref/source/religion.cc
@@ -680,6 +680,11 @@ std::string get_god_likes(god_type which_god, bool verbose)
likes.push_back("you or your god-given allies kill demons");
break;
+ case GOD_KIKUBAAQUDGHA:
+ likes.push_back("you kill demons");
+ likes.push_back("your undead slaves kill demons");
+ break;
+
case GOD_BEOGH:
likes.push_back("you or your allied orcs kill demons");
break;
@@ -2963,6 +2968,7 @@ bool did_god_conduct(conduct_type thing_done, int level, bool known,
case GOD_OKAWARU:
case GOD_MAKHLEB:
case GOD_TROG:
+ case GOD_KIKUBAAQUDGHA:
case GOD_BEOGH:
if (god_hates_attacking_friend(you.religion, victim))
break;