summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-17 04:11:44 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-17 04:11:44 +0000
commit4598d26f5507b9578fd030a20b60a49c4818e621 (patch)
tree9790b1971b09ccd41a18ed12ba6c91c3bf7fe62b
parent5adcae973fed29cfcfd98c10971981f603fd540e (diff)
downloadcrawl-ref-4598d26f5507b9578fd030a20b60a49c4818e621.tar.gz
crawl-ref-4598d26f5507b9578fd030a20b60a49c4818e621.zip
Increase durations of Zin's Divine Stamina and Elyvilon's Divine Vigour
a bit. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8487 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/spells1.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/spells1.cc b/crawl-ref/source/spells1.cc
index 1eef770b03..7a0b6edd53 100644
--- a/crawl-ref/source/spells1.cc
+++ b/crawl-ref/source/spells1.cc
@@ -838,7 +838,7 @@ bool cast_divine_vigour()
const int old_hp_max = you.hp_max;
you.attribute[ATTR_DIVINE_VIGOUR] = vigour_amt;
you.duration[DUR_DIVINE_VIGOUR]
- = 35 + (you.skills[SK_INVOCATIONS]*5)/3;
+ = 40 + (you.skills[SK_INVOCATIONS]*5)/2;
calc_hp();
inc_hp(you.hp_max - old_hp_max, false);
@@ -937,7 +937,7 @@ bool cast_vitalisation()
const int stamina_amt = 3;
you.attribute[ATTR_DIVINE_STAMINA] = stamina_amt;
you.duration[DUR_DIVINE_STAMINA]
- = 35 + (you.skills[SK_INVOCATIONS]*5)/3;
+ = 40 + (you.skills[SK_INVOCATIONS]*5)/2;
modify_stat(STAT_STRENGTH, stamina_amt, true, "");
modify_stat(STAT_INTELLIGENCE, stamina_amt, true, "");