summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/makeitem.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/makeitem.cc')
-rw-r--r--crawl-ref/source/makeitem.cc12
1 files changed, 12 insertions, 0 deletions
diff --git a/crawl-ref/source/makeitem.cc b/crawl-ref/source/makeitem.cc
index af5ec9787a..49b98b8f7e 100644
--- a/crawl-ref/source/makeitem.cc
+++ b/crawl-ref/source/makeitem.cc
@@ -3729,6 +3729,18 @@ static void give_ammo(monsters *mon, int level,
item_race = MAKE_ITEM_ORCISH;
qty = random_range(4, 7);
break;
+
+ case MONS_DRACONIAN_KNIGHT:
+ case MONS_GNOLL:
+ case MONS_HILL_GIANT:
+ if (one_chance_in(20))
+ {
+ weap_class = OBJ_MISSILES;
+ weap_type = MI_THROWING_NET;
+ qty = 1;
+ }
+ break;
+
}
if (weap_type == -1)