summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fight.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/fight.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/fight.cc')
-rw-r--r--crawl-ref/source/fight.cc7
1 files changed, 5 insertions, 2 deletions
diff --git a/crawl-ref/source/fight.cc b/crawl-ref/source/fight.cc
index 1b1017f371..14ff401e29 100644
--- a/crawl-ref/source/fight.cc
+++ b/crawl-ref/source/fight.cc
@@ -1897,9 +1897,12 @@ static inline int get_resistible_fraction(beam_type flavour)
{
switch (flavour)
{
- case BEAM_LAVA:
+ // Assume ice storm and ice bolt are mostly solid.
case BEAM_ICE:
- return (50);
+ return (15);
+
+ case BEAM_LAVA:
+ return (30);
case BEAM_POISON_ARROW:
return (40);