summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/cloud.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2014-05-28 03:46:31 +0100
committerChris Campbell <chriscampbell89@gmail.com>2014-05-28 04:43:17 +0100
commitcd548fe2d1827730c6ba5b5d28242e1d7aca1591 (patch)
treed047d1952a2a58d17509a5c38932f5b4c5e93540 /crawl-ref/source/cloud.cc
parenta5e4a985aef88b7de2b6e483643db4e78c2168f2 (diff)
downloadcrawl-ref-cd548fe2d1827730c6ba5b5d28242e1d7aca1591.tar.gz
crawl-ref-cd548fe2d1827730c6ba5b5d28242e1d7aca1591.zip
Reduce the base chance of applying corrosion, ignore item enchantment for resistance
With temporary corrosion being more abstracted than permanent corrosion, having items resist individually was a little strange since an artefact or +9 weapon could still be "corroded" by swapping from something else to it, or by having your armour be the target of the acid. Corrosion now just looks at equipped/empty slots to determine the chance of applying the debuff and how much damage to do with the acid splash, and is less likely to apply the debuff (compared to low-enchantment items). Item enchantment (or artefact status, or crystal plate armour-ness) no longer has an effect. The debuff also now can't be applied multiple times from one acid splash.
Diffstat (limited to 'crawl-ref/source/cloud.cc')
-rw-r--r--crawl-ref/source/cloud.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/cloud.cc b/crawl-ref/source/cloud.cc
index d9810c2e8c..43990c5148 100644
--- a/crawl-ref/source/cloud.cc
+++ b/crawl-ref/source/cloud.cc
@@ -1057,7 +1057,7 @@ static bool _actor_apply_cloud_side_effects(actor *act,
if (player)
splash_with_acid(5, agent ? agent->mindex() : NON_MONSTER, true);
else
- corrode_monster(mons, agent);
+ splash_monster_with_acid(mons, agent);
return true;
}