NEW LOOTDROPS HYPE

Drop Table:
99% Bowl of gelatin
80% a can of soda
20% Uranium ore

**Drops are not mutually exclusive.**
This commit is contained in:
Sharkmare
2019-02-28 10:10:06 +01:00
committed by GitHub
parent 19f75ac308
commit fc00bd6a62
@@ -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("<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