summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fight.cc
diff options
context:
space:
mode:
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);