summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/exercise.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2013-11-21 06:07:25 +0000
committerChris Campbell <chriscampbell89@gmail.com>2013-11-21 06:07:25 +0000
commite43bbd017f1d416ca9f92dc6be0e09c2050ca04a (patch)
treef13c8538191186a74e08ef2e84a0ca761f3552d3 /crawl-ref/source/exercise.cc
parentc8002fabcd635b9e1424859d167d513f45066f3b (diff)
downloadcrawl-ref-e43bbd017f1d416ca9f92dc6be0e09c2050ca04a.tar.gz
crawl-ref-e43bbd017f1d416ca9f92dc6be0e09c2050ca04a.zip
Don't use invocations skill for Jiyva abilities
Slimify was the only ability that used it for anything other than success rate, and even then power was only of very marginal use and more than a few points of invocation was never necessary. Base success rate and slimify power on piety instead.
Diffstat (limited to 'crawl-ref/source/exercise.cc')
-rw-r--r--crawl-ref/source/exercise.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/crawl-ref/source/exercise.cc b/crawl-ref/source/exercise.cc
index 629d7f2d7c..a51f4536d8 100644
--- a/crawl-ref/source/exercise.cc
+++ b/crawl-ref/source/exercise.cc
@@ -45,7 +45,6 @@ skill_type abil_skill(ability_type abil)
case ABIL_ZIN_RECITE:
case ABIL_SIF_MUNA_CHANNEL_ENERGY:
case ABIL_OKAWARU_HEROISM:
- case ABIL_JIYVA_CALL_JELLY:
case ABIL_ZIN_VITALISATION:
case ABIL_TSO_DIVINE_SHIELD:
case ABIL_BEOGH_SMITING:
@@ -67,12 +66,10 @@ skill_type abil_skill(ability_type abil)
case ABIL_ELYVILON_GREATER_HEALING_SELF:
case ABIL_ELYVILON_GREATER_HEALING_OTHERS:
case ABIL_LUGONU_BANISH:
- case ABIL_JIYVA_SLIMIFY:
case ABIL_TSO_CLEANSING_FLAME:
case ABIL_OKAWARU_FINESSE:
case ABIL_CHEIBRIADOS_SLOUCH:
case ABIL_LUGONU_CORRUPT:
- case ABIL_JIYVA_CURE_BAD_MUTATION:
case ABIL_CHEIBRIADOS_TIME_STEP:
case ABIL_ZIN_SANCTUARY:
case ABIL_MAKHLEB_GREATER_SERVANT_OF_MAKHLEB:
@@ -125,7 +122,6 @@ static int _abil_degree(ability_type abil)
return 1;
case ABIL_SIF_MUNA_CHANNEL_ENERGY:
case ABIL_OKAWARU_HEROISM:
- case ABIL_JIYVA_CALL_JELLY:
return 1 + random2(3);
case ABIL_ZIN_RECITE:
@@ -154,7 +150,6 @@ static int _abil_degree(ability_type abil)
case ABIL_ELYVILON_GREATER_HEALING_SELF:
case ABIL_ELYVILON_GREATER_HEALING_OTHERS:
case ABIL_LUGONU_BANISH:
- case ABIL_JIYVA_SLIMIFY:
case ABIL_CHEIBRIADOS_DISTORTION:
return 3 + random2(5);
case ABIL_TSO_CLEANSING_FLAME:
@@ -168,7 +163,6 @@ static int _abil_degree(ability_type abil)
return 4 + random2(6);
case ABIL_LUGONU_CORRUPT:
- case ABIL_JIYVA_CURE_BAD_MUTATION:
case ABIL_CHEIBRIADOS_TIME_STEP:
case ABIL_KIKU_TORMENT:
return 5 + random2(5);