summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells1.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-08-22 11:07:48 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-08-22 11:07:48 +0000
commit2e6d4070c0713ebb84526f2d1f05d0b11d62faca (patch)
treeb9c003783181c64d8870f777c080fdffb7762be8 /crawl-ref/source/spells1.cc
parent8d09beacc34ee4639c32adeb9eb3c0848aa70fd1 (diff)
downloadcrawl-ref-2e6d4070c0713ebb84526f2d1f05d0b11d62faca.tar.gz
crawl-ref-2e6d4070c0713ebb84526f2d1f05d0b11d62faca.zip
[2058822] Fix ice storm damage, make both storms and bolts of ice and magma less resistible (ice being less resistible than magma), give ice storm more damage than fire storm, make fire storm vortices aligned with the caster, but temporary.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6845 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spells1.cc')
-rw-r--r--crawl-ref/source/spells1.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/spells1.cc b/crawl-ref/source/spells1.cc
index f045fd14ee..003b25fa9a 100644
--- a/crawl-ref/source/spells1.cc
+++ b/crawl-ref/source/spells1.cc
@@ -260,7 +260,7 @@ void setup_fire_storm(const actor *source, int pow, bolt &beam)
beam.is_explosion = true;
beam.ench_power = pow; // used for radius
beam.hit = 20 + pow / 10;
- beam.damage = calc_dice(9, 20 + pow);
+ beam.damage = calc_dice(8, 5 + pow);
}
void cast_fire_storm(int pow, bolt &beam)