Merge pull request #7984 from Citadel-Station-13/kevinz000-patch-19

Monkey cubes are now baymed tiers of lethal if you eat them raw as a carbon based lifeform.
This commit is contained in:
deathride58
2019-03-21 15:23:28 -04:00
committed by GitHub
@@ -184,6 +184,15 @@
tastes = list("the jungle" = 1, "bananas" = 1)
foodtype = MEAT | SUGAR
/obj/item/reagent_containers/food/snacks/monkeycube/On_Consume(mob/living/carbon/M)
if(iscarbon(M))
M.visible_message("[src] bursts out of [M]!</span>")
M.emote("scream")
M.Knockdown(40)
M.adjustBruteLoss(60)
Expand()
return ..()
/obj/item/reagent_containers/food/snacks/monkeycube/proc/Expand()
var/mob/spammer = get_mob_by_key(fingerprintslast)
var/mob/living/carbon/monkey/bananas = new(drop_location(), TRUE, spammer)