summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2007-08-16 19:20:45 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2007-08-16 19:20:45 +0000
commitcb1a4eab762f953396c49c15fb178e2f47d56105 (patch)
tree0baa86d5474f887f880a2cb447936cbb1668bd11 /crawl-ref/source/describe.cc
parent5fc6dd64feee1a620b1b5141ca3efa4ef51766f2 (diff)
downloadcrawl-ref-cb1a4eab762f953396c49c15fb178e2f47d56105.tar.gz
crawl-ref-cb1a4eab762f953396c49c15fb178e2f47d56105.zip
Yet another tutorial update
... and Sif Muna finally gets those other titles. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2007 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc14
1 files changed, 10 insertions, 4 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 61d04151fc..4c905f2ec1 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -3999,7 +3999,7 @@ void describe_god( god_type which_god, bool give_title )
"Elyvilon the Healer is worshipped by the healers (among others), who "
"gain their healing powers by long worship and devotion. Although "
"Elyvilon prefers a creed of pacifism, those who crusade against evil "
- "are not excluded. Elyvilon appreciates the offering of weapons.",
+ "are not excluded. Elyvilon appreciates the destruction of weapons.",
// Lugonu
"Lugonu the Unformed revels in the chaos of the Abyss. Followers are "
@@ -4063,9 +4063,6 @@ void describe_god( god_type which_god, bool give_title )
case GOD_VEHUMET:
case GOD_OKAWARU:
case GOD_MAKHLEB:
- case GOD_SIF_MUNA:
- //mv: what about
- //sinner, believer, apprentice, disciple, adept, scholar, oracle
case GOD_TROG:
case GOD_NEMELEX_XOBEH:
case GOD_ELYVILON:
@@ -4078,6 +4075,15 @@ void describe_god( god_type which_god, bool give_title )
(you.piety > 5) ? "Believer"
: "Sinner" );
break;
+ case GOD_SIF_MUNA:
+ cprintf ( (you.piety >= 120) ? "Oracle" :
+ (you.piety >= 100) ? "Scholar" :
+ (you.piety >= 75) ? "Adept" :
+ (you.piety >= 50) ? "Disciple" :
+ (you.piety >= 30) ? "Apprentice" :
+ (you.piety > 5) ? "Believer"
+ : "Sinner" );
+ break;
case GOD_BEOGH:
cprintf ( (you.piety >= 120) ? "Saint" :
(you.piety >= 100) ? "High Priest" :