summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/decks.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-11 00:31:31 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-11 00:31:31 +0000
commita416267af39133d1afa01bd1a565f596cc8aa66d (patch)
treedb62f0a11c0d6a65403ac801e24ad99c4fafaa74 /crawl-ref/source/decks.cc
parent90edb37d54da099139384320581467dae48e3ae6 (diff)
downloadcrawl-ref-a416267af39133d1afa01bd1a565f596cc8aa66d.tar.gz
crawl-ref-a416267af39133d1afa01bd1a565f596cc8aa66d.zip
Nemelex penance goes down to 1 (sorear.)
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4185 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/decks.cc')
-rw-r--r--crawl-ref/source/decks.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/decks.cc b/crawl-ref/source/decks.cc
index 92471419fc..7741a091db 100644
--- a/crawl-ref/source/decks.cc
+++ b/crawl-ref/source/decks.cc
@@ -1204,8 +1204,10 @@ void evoke_deck( item_def& deck )
simple_god_message(" seems to have exchanged this card "
"behind your back!", GOD_NEMELEX_XOBEH);
mprf("It's actually %s.", card_name(card));
+ // You never completely appease Nemelex, but the effects
+ // get less frequent.
you.penance[GOD_NEMELEX_XOBEH] -=
- random2(you.penance[GOD_NEMELEX_XOBEH] / 10);
+ random2( (you.penance[GOD_NEMELEX_XOBEH]+18) / 10);
}
}
}