summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/beam.cc4
-rw-r--r--crawl-ref/source/itemprop.cc2
-rw-r--r--crawl-ref/source/newgame.cc2
3 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/beam.cc b/crawl-ref/source/beam.cc
index be1542defe..137bd161e9 100644
--- a/crawl-ref/source/beam.cc
+++ b/crawl-ref/source/beam.cc
@@ -2450,11 +2450,11 @@ void beam_drop_object( bolt &beam, item_def *item, int x, int y )
case MI_DART: chance = 3; break;
case MI_ARROW: chance = 4; break;
case MI_BOLT: chance = 4; break;
- case MI_JAVELIN: chance = 8; break;
+ case MI_JAVELIN: chance = 10; break;
case MI_LARGE_ROCK:
default:
- chance = 20;
+ chance = 25;
break;
}
diff --git a/crawl-ref/source/itemprop.cc b/crawl-ref/source/itemprop.cc
index d139c1d9f1..f9f4857332 100644
--- a/crawl-ref/source/itemprop.cc
+++ b/crawl-ref/source/itemprop.cc
@@ -351,7 +351,7 @@ static missile_def Missile_prop[NUM_MISSILES] =
{ MI_DART, "dart", 5, 3, true },
{ MI_ARROW, "arrow", 7, 5, false },
{ MI_BOLT, "bolt", 9, 5, false },
- { MI_LARGE_ROCK, "large rock", 20, 800, true },
+ { MI_LARGE_ROCK, "large rock", 20, 600, true },
{ MI_SLING_BULLET, "sling bullet", 6, 4, false },
{ MI_JAVELIN, "javelin", 10, 80, true },
{ MI_THROWING_NET, "throwing net", 0, 30, true },
diff --git a/crawl-ref/source/newgame.cc b/crawl-ref/source/newgame.cc
index 0a78efbf2a..505de3fb02 100644
--- a/crawl-ref/source/newgame.cc
+++ b/crawl-ref/source/newgame.cc
@@ -3912,7 +3912,7 @@ bool give_items_skills()
// And they get to throw rocks.
you.inv[3].sub_type = MI_LARGE_ROCK;
- you.inv[3].quantity = 3;
+ you.inv[3].quantity = 4;
break;
case SP_HALFLING: