From a4027527050f133c1e3dcfeec0e1c749986e191d Mon Sep 17 00:00:00 2001 From: Sharkmare <34294231+Sharkmare@users.noreply.github.com> Date: Mon, 11 Feb 2019 08:24:14 +0100 Subject: [PATCH] Giving space bats random loot drops Space bats now may carry silver, because SHINY! Also they want me to tell you theat they are TOTALLY SCARY and not at all cute lil fuzzballs. --- code/modules/mob/living/simple_animal/animals/bat.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/simple_animal/animals/bat.dm b/code/modules/mob/living/simple_animal/animals/bat.dm index 680091010e..8127d5076d 100644 --- a/code/modules/mob/living/simple_animal/animals/bat.dm +++ b/code/modules/mob/living/simple_animal/animals/bat.dm @@ -49,6 +49,8 @@ /mob/living/simple_animal/hostile/scarybat/New(loc, mob/living/L as mob) ..() + if(prob(30))//30% should be nice for a tiny bonus of silver, at least gives fighting mobs more purpose + contents += "/obj/item/weapon/ore/silver" //CHOMP EDIT: Random chance for bats to carry silver if(istype(L)) owner = L