From fc00bd6a629c5112228eb89dc518a044e0d4790f Mon Sep 17 00:00:00 2001
From: Sharkmare <34294231+Sharkmare@users.noreply.github.com>
Date: Thu, 28 Feb 2019 10:10:06 +0100
Subject: [PATCH] NEW LOOTDROPS HYPE
Drop Table:
99% Bowl of gelatin
80% a can of soda
20% Uranium ore
**Drops are not mutually exclusive.**
---
.../modules/mob/living/simple_animal/vore/jelly.dm | 14 ++++++++++++++
1 file changed, 14 insertions(+)
diff --git a/code/modules/mob/living/simple_animal/vore/jelly.dm b/code/modules/mob/living/simple_animal/vore/jelly.dm
index 9d12c207cf..73d4f362bf 100644
--- a/code/modules/mob/living/simple_animal/vore/jelly.dm
+++ b/code/modules/mob/living/simple_animal/vore/jelly.dm
@@ -30,6 +30,20 @@
emote_hear = list("squishes","spluts","splorts","sqrshes","makes slime noises")
emote_see = list("undulates quietly")
+//CHOMPEDIT ACTIVATING LOOT DROPS FOR JELLO NERDS
+/mob/living/simple_animal/hostile/scarybat/death()
+ ..()
+ var/location = get_turf(src) //lets just define this here once instead of ewverytime an if is true, less work.
+ if(prob(99))
+ visible_message("\The [src] dropped some gel!")
+ new /obj/item/weapon/reagent_containers/food/snacks/gelbowl(location) //gelatinous blobs, hoe bland.
+ if(prob(80))
+ visible_message("\The [src] dropped some can!")
+ new /obj/item/weapon/reagent_containers/food/drinks/cans/lemon_lime(location) //blobs have bad taste
+ if(prob(20))
+ visible_message("\The [src] dropped some ore!")
+ new /obj/item/weapon/ore/uranium(location)
+
// Activate Noms!
/mob/living/simple_animal/hostile/jelly
vore_active = 1