Merge pull request #448 from Sharkmare/patch-43

NEW LOOTDROPS HYPE
This commit is contained in:
Vollybally
2019-02-28 10:02:57 -05:00
committed by GitHub
@@ -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/jelly/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("<span class='notice'>\The [src] dropped some gel!</span>")
new /obj/item/weapon/reagent_containers/food/snacks/gelbowl(location) //gelatinous blobs, hoe bland.
if(prob(80))
visible_message("<span class='notice'>\The [src] dropped some can!</span>")
new /obj/item/weapon/reagent_containers/food/drinks/cans/lemon_lime(location) //blobs have bad taste
if(prob(20))
visible_message("<span class='notice'>\The [src] dropped some ore!</span>")
new /obj/item/weapon/ore/uranium(location)
// Activate Noms!
/mob/living/simple_animal/hostile/jelly
vore_active = 1