summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-ench.cc
diff options
context:
space:
mode:
authorDracoOmega <draco_omega@live.com>2014-03-15 15:13:39 -0230
committerDracoOmega <draco_omega@live.com>2014-03-15 15:13:39 -0230
commit66d9578d9604425dc09ee5409bb9adc27a0be235 (patch)
treea45d02c5674e6b45925069a73054a8878e9e2e0a /crawl-ref/source/mon-ench.cc
parent1b9ad3724cf3593832284276b81b4af6af2f3335 (diff)
downloadcrawl-ref-66d9578d9604425dc09ee5409bb9adc27a0be235.tar.gz
crawl-ref-66d9578d9604425dc09ee5409bb9adc27a0be235.zip
Conjure Ball Lightning adjustments
The reduced CBL duration was so low that the ball lightning would frequently explode before even being able to reach targets in your LoS (or before you could step away, even if you did so immediately on open ground). This commit restores the old duration and makes a few other changes to reduce power level instead: Ball lightning conjured with less spellpower explode for less damage (and their explosion is less likely to be radius 3), the number of ball lightning conjured per cast has been reduced (and the variance decreased somewhat), and ball lightning which leave the player's line of sight immediately dissipate without exploding (so that it is no longer possible to aim them at things you cannot see and cannot harm you). The aim is that this will make it impractical against monsters out of sight, while being less awkward against those IN sight (and less likely to immediately engulf the caster before being able to reach anything else).
Diffstat (limited to 'crawl-ref/source/mon-ench.cc')
-rw-r--r--crawl-ref/source/mon-ench.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/mon-ench.cc b/crawl-ref/source/mon-ench.cc
index d7feefbac0..99bb6ba002 100644
--- a/crawl-ref/source/mon-ench.cc
+++ b/crawl-ref/source/mon-ench.cc
@@ -2376,7 +2376,7 @@ int mon_enchant::calc_duration(const monster* mons,
cturn += 1000 / _mod_speed(100, mons->speed);
break;
case ENCH_SHORT_LIVED:
- cturn = 400 / _mod_speed(200, mons->speed);
+ cturn = 1200 / _mod_speed(200, mons->speed);
break;
case ENCH_SLOWLY_DYING:
// This may be a little too direct but the randomization at the end