From 9dac83c9f3abe9f10b3923fe8ee91554ee258f91 Mon Sep 17 00:00:00 2001 From: dshaligram Date: Sun, 24 Sep 2006 14:44:33 +0000 Subject: 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 --- crawl-ref/source/item_use.cc | 7 +++++-- 1 file 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. -- cgit v1.2.3-54-g00ecf