summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/godconduct.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2014-03-25 22:58:18 +0000
committerChris Campbell <chriscampbell89@gmail.com>2014-03-26 01:11:31 +0000
commit88ed826b6362605e38f3b36ca487fcbd313f2959 (patch)
treeb8bb35ae69c471add62e6c72f9ed8fa0a1cdfdc6 /crawl-ref/source/godconduct.cc
parent488b3d401eecf54104a1566fa96ec216b5e7c59a (diff)
downloadcrawl-ref-88ed826b6362605e38f3b36ca487fcbd313f2959.tar.gz
crawl-ref-88ed826b6362605e38f3b36ca487fcbd313f2959.zip
Rescale Ashenzari piety gain (elliptic)
In particular, slightly increase piety gain at low levels of boundedness, since it's now harder to reliably get bound early.
Diffstat (limited to 'crawl-ref/source/godconduct.cc')
-rw-r--r--crawl-ref/source/godconduct.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/godconduct.cc b/crawl-ref/source/godconduct.cc
index f5dc0b1630..591d74dea2 100644
--- a/crawl-ref/source/godconduct.cc
+++ b/crawl-ref/source/godconduct.cc
@@ -983,9 +983,9 @@ bool did_god_conduct(conduct_type thing_done, int level, bool known,
case DID_EXPLORATION:
if (you_worship(GOD_ASHENZARI))
{
- const int base_gain = 6; // base gain per dungeon level
- // levels: x1, x1.5, x2, x2.5, x3
- piety_change = base_gain + base_gain * you.bondage_level / 2;
+ const int base_gain = 8; // base gain per dungeon level
+ // levels: x1, x1.25, x1.5, x1.75, x2
+ piety_change = base_gain + base_gain * you.bondage_level / 4;
piety_denom = level;
retval = true;
}