mirror of
https://github.com/CHOMPstation/CHOMPstation.git
synced 2026-08-24 12:36:22 +01:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user