summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/throw.cc
diff options
context:
space:
mode:
authorgammafunk <gammafunk@gmail.com>2014-05-23 01:14:17 -0500
committergammafunk <gammafunk@gmail.com>2014-05-26 22:45:16 -0500
commit113be5ec1658845d372a7702d3ccbbfa890dc012 (patch)
tree5bad51e97873882fbc4fc58dbe10a69b5c16251f /crawl-ref/source/throw.cc
parent55d1b512e3395f07e9341ce9eae5079b581b6894 (diff)
downloadcrawl-ref-113be5ec1658845d372a7702d3ccbbfa890dc012.tar.gz
crawl-ref-113be5ec1658845d372a7702d3ccbbfa890dc012.zip
Adjust mulch rates for large rocks and tomahawks
Large rocks now have a higher mulch rate (from 1/50 to 1/30) as modest balance tweak to account for being able to carry an unlimited number. Tomahawks are common items that don't need to have such a low mulch rate (increased to 1/20, same as javelins).
Diffstat (limited to 'crawl-ref/source/throw.cc')
-rw-r--r--crawl-ref/source/throw.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/throw.cc b/crawl-ref/source/throw.cc
index 1941348d10..b8e01cae20 100644
--- a/crawl-ref/source/throw.cc
+++ b/crawl-ref/source/throw.cc
@@ -1205,7 +1205,7 @@ bool thrown_object_destroyed(item_def *item, const coord_def& where)
break;
case MI_TOMAHAWK:
- chance = 30;
+ chance = 20;
break;
case MI_JAVELIN:
@@ -1213,7 +1213,7 @@ bool thrown_object_destroyed(item_def *item, const coord_def& where)
break;
case MI_LARGE_ROCK:
- chance = 50;
+ chance = 30;
break;
default: