summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/ouch.cc
diff options
context:
space:
mode:
authorDracoOmega <draco_omega@live.com>2014-03-05 15:06:53 -0330
committerSteve Melenchuk <smelenchuk@gmail.com>2014-03-06 09:58:17 -0700
commit3eae12d311d4293cbc8390bc12f57c3336591f55 (patch)
tree5df21c42aa213056786c2271d9ca13d3e898f549 /crawl-ref/source/ouch.cc
parentd5b2a9e8335341d5345aed761de5e0e93e5d5341 (diff)
downloadcrawl-ref-3eae12d311d4293cbc8390bc12f57c3336591f55.tar.gz
crawl-ref-3eae12d311d4293cbc8390bc12f57c3336591f55.zip
Increase poison damage inflicted by most sources, reduce rate of damage
After several games' playtesting, I feel I was much too conservative with numbers in several places, given that only a small percentage of poisonous melee attacks will inflict poison at all. Also, the swift rate of action combined with small quantities meant that poison damage was often practically indistinguishable from the melee that applied it. A larger amount of moderately slower-acting poison (still quicker than old poison) should make the poison effect more visible where it does occur, as well as making preemptive !curing a more appealing tactical choice. I feel it may still be too mild on high HD creatures compared to other attack flavours, but that this is closer to the mark than before.
Diffstat (limited to 'crawl-ref/source/ouch.cc')
-rw-r--r--crawl-ref/source/ouch.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/ouch.cc b/crawl-ref/source/ouch.cc
index 042fb3d102..59402fe3c8 100644
--- a/crawl-ref/source/ouch.cc
+++ b/crawl-ref/source/ouch.cc
@@ -200,7 +200,7 @@ int check_your_resists(int hurted, beam_type flavour, string source,
case BEAM_POISON:
if (doEffects)
{
- int pois = div_rand_round(beam->damage.num * beam->damage.size, 4);
+ int pois = div_rand_round(beam->damage.num * beam->damage.size, 3);
pois = 3 + random_range(pois * 2 / 3, pois * 4 / 3);
resist = poison_player(pois, source, kaux) ? 0 : 1;