summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-10-28 08:07:38 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-10-28 08:07:38 +0000
commit4d952b9a87334950a15b5060ec8272bdb70f59c6 (patch)
tree61c2f6568327f8c74747061b6d3895d8b48a80b4
parent7542a3de8b4cdd6801b43b942ff84d5f4092b900 (diff)
downloadcrawl-ref-4d952b9a87334950a15b5060ec8272bdb70f59c6.tar.gz
crawl-ref-4d952b9a87334950a15b5060ec8272bdb70f59c6.zip
Further chain lightning balancing: restored old power attenuation, slightly dropped base damage.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup@301 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 1d6cce874d..bd891065e0 100644
--- a/crawl-ref/source/spells1.cc
+++ b/crawl-ref/source/spells1.cc
@@ -258,7 +258,7 @@ void cast_chain_lightning( int powc )
for (sx = you.x_pos, sy = you.y_pos;
powc > 0;
- powc -= 7 + random2(8), sx = tx, sy = ty)
+ powc -= 8 + random2(13), sx = tx, sy = ty)
{
// infinity as far as this spell is concerned
// (Range - 1) is used because the distance is randomized and
@@ -370,7 +370,7 @@ void cast_chain_lightning( int powc )
beam.target_x = tx;
beam.target_y = ty;
beam.colour = LIGHTBLUE;
- beam.damage = calc_dice( 5, 15 + powc * 2 / 3 );
+ beam.damage = calc_dice( 5, 12 + powc * 2 / 3 );
// Be kinder to the player
if (tx == you.x_pos && ty == you.y_pos)