summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fight.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-08-22 11:33:09 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-08-22 11:33:09 +0000
commitc7cb588c7d65ade40727ab81e561cb10a409bb16 (patch)
treec3dbc8a322aaca2f25ba5467ce33793246757d2e /crawl-ref/source/fight.cc
parentfae46d1b17d9d6a32afeb1b779e6d46d164fae05 (diff)
downloadcrawl-ref-c7cb588c7d65ade40727ab81e561cb10a409bb16.tar.gz
crawl-ref-c7cb588c7d65ade40727ab81e561cb10a409bb16.zip
Make ice and magma beams more resistible (25%, 35%).
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6847 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/fight.cc')
-rw-r--r--crawl-ref/source/fight.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/fight.cc b/crawl-ref/source/fight.cc
index 14ff401e29..ba2d50f12b 100644
--- a/crawl-ref/source/fight.cc
+++ b/crawl-ref/source/fight.cc
@@ -1899,10 +1899,10 @@ static inline int get_resistible_fraction(beam_type flavour)
{
// Assume ice storm and ice bolt are mostly solid.
case BEAM_ICE:
- return (15);
+ return (25);
case BEAM_LAVA:
- return (30);
+ return (35);
case BEAM_POISON_ARROW:
return (40);