summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/decks.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-09 14:50:32 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-07-09 14:50:32 +0000
commiteb847d5f2f0331435f6bc081d1009bdf3982fd31 (patch)
tree9556614ea500aa7883214e54d0d745edaa623746 /crawl-ref/source/decks.cc
parent85b02c94b3646a5201a7c45b742a4164821bfa87 (diff)
downloadcrawl-ref-eb847d5f2f0331435f6bc081d1009bdf3982fd31.tar.gz
crawl-ref-eb847d5f2f0331435f6bc081d1009bdf3982fd31.zip
Nemelex now uses Evocations instead of Invocations.
Nemelex abilities now have failure rates, are godly abilities (oops), and train Evocations. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1820 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/decks.cc')
-rw-r--r--crawl-ref/source/decks.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/decks.cc b/crawl-ref/source/decks.cc
index e69681a6b6..8f56dfdee8 100644
--- a/crawl-ref/source/decks.cc
+++ b/crawl-ref/source/decks.cc
@@ -1108,7 +1108,7 @@ static int card_power(deck_rarity_type rarity)
else if ( you.religion == GOD_NEMELEX_XOBEH && you.duration[DUR_PRAYER] )
{
result = you.piety;
- result *= (you.skills[SK_INVOCATIONS] + 25);
+ result *= (you.skills[SK_EVOCATIONS] + 25);
result /= 27;
}