summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fight.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-03-30 21:18:20 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-03-30 21:18:20 +0000
commitb0cc7c135b8bf508038e983770cb3cc515c18e29 (patch)
tree5a2650266174b827e02a82bdf5343a6461fb2be1 /crawl-ref/source/fight.cc
parentdf5bb9a76b2c11725c8833706ca738aa201d1202 (diff)
downloadcrawl-ref-b0cc7c135b8bf508038e983770cb3cc515c18e29.tar.gz
crawl-ref-b0cc7c135b8bf508038e983770cb3cc515c18e29.zip
Readjusted yellow wasp paralysis prob.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1135 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/fight.cc')
-rw-r--r--crawl-ref/source/fight.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/fight.cc b/crawl-ref/source/fight.cc
index 1411c52c2e..a756d29d6a 100644
--- a/crawl-ref/source/fight.cc
+++ b/crawl-ref/source/fight.cc
@@ -2668,7 +2668,7 @@ void melee_attack::wasp_paralyse_defender()
int paralyse_roll = (damage_done > 4? 3 : 20);
if (attacker->id() == MONS_YELLOW_WASP)
- paralyse_roll += 7;
+ paralyse_roll += 3;
if (!defender->res_poison() && one_chance_in(paralyse_roll))
defender->paralyse( roll_dice(1, 3) );