summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-09-24 14:44:33 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-09-24 14:44:33 +0000
commit9dac83c9f3abe9f10b3923fe8ee91554ee258f91 (patch)
treefaf8c1951b1aa8230df8f4364573ab27f504e8a7
parentc1503a028697f7795e6514fd63dcfb2fd0555e4c (diff)
downloadcrawl-ref-9dac83c9f3abe9f10b3923fe8ee91554ee258f91.tar.gz
crawl-ref-9dac83c9f3abe9f10b3923fe8ee91554ee258f91.zip
Marginally bumped damage of vorpal launchers - from 125% to 130%.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup@105 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/item_use.cc7
1 files changed, 5 insertions, 2 deletions
diff --git a/crawl-ref/source/item_use.cc b/crawl-ref/source/item_use.cc
index 27031419f0..a55bff6810 100644
--- a/crawl-ref/source/item_use.cc
+++ b/crawl-ref/source/item_use.cc
@@ -1533,8 +1533,11 @@ bool throw_it(struct bolt &pbolt, int throw_2, monsters *dummy_target)
if (bow_brand == SPWPN_VORPAL)
{
- // Vorpal brand adds 25% damage bonus.
- dice_mult = dice_mult * 125 / 100;
+ // Vorpal brand adds 30% damage bonus. Increased from 25%
+ // because at 25%, vorpal brand is completely inferior to
+ // speed. At 30% it's marginally better than speed when
+ // fighting monsters with very heavy armour.
+ dice_mult = dice_mult * 130 / 100;
}
// special cases for flame, frost, poison, etc.