summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/player-stats.cc
diff options
context:
space:
mode:
authorShayne Halvorson <N78291@gmail.com>2014-05-10 13:16:05 -0500
committerreaverb <reaverb.Crawl@gmail.com>2014-05-28 01:14:20 -0400
commit2adf8a44e96d103f4d8971d1fdb1203c2a633945 (patch)
tree18cdfb197c2d97242c78652ce84d5b44be5b8c80 /crawl-ref/source/player-stats.cc
parent5d578cf1fbba9286d1b334168093ea050fe201b9 (diff)
downloadcrawl-ref-2adf8a44e96d103f4d8971d1fdb1203c2a633945.tar.gz
crawl-ref-2adf8a44e96d103f4d8971d1fdb1203c2a633945.zip
Replace Hammer card with Fortitude.
It grants damage shaving along with a strength boost, as Battlelust is likely not to make it into Nemelex's decks.
Diffstat (limited to 'crawl-ref/source/player-stats.cc')
-rw-r--r--crawl-ref/source/player-stats.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/player-stats.cc b/crawl-ref/source/player-stats.cc
index 036a06aa4c..ce4e6e0914 100644
--- a/crawl-ref/source/player-stats.cc
+++ b/crawl-ref/source/player-stats.cc
@@ -388,6 +388,9 @@ static int _strength_modifier()
if (you.duration[DUR_MIGHT] || you.duration[DUR_BERSERK])
result += 5;
+ if (you.duration[DUR_FORTITUDE])
+ result += 10;
+
if (you.duration[DUR_DIVINE_STAMINA])
result += you.attribute[ATTR_DIVINE_STAMINA];