From e0607d8f73747ddacb9fc384a1da41a1e0498850 Mon Sep 17 00:00:00 2001 From: evilew Date: Sun, 15 Oct 2023 11:52:30 +0200 Subject: [PATCH] slimes are monchable (by christiancabbalahexpert) nuff said --- GainStation13/code/mobs/chocoslime.dm | 5 ++++- code/modules/mob/living/simple_animal/slime/slime.dm | 5 +++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/GainStation13/code/mobs/chocoslime.dm b/GainStation13/code/mobs/chocoslime.dm index 6663167b..8c83c1a8 100644 --- a/GainStation13/code/mobs/chocoslime.dm +++ b/GainStation13/code/mobs/chocoslime.dm @@ -43,7 +43,10 @@ blood_volume = 0 lighting_alpha = LIGHTING_PLANE_ALPHA_MOSTLY_VISIBLE initial_language_holder = /datum/language_holder/slime - + // You are not immune to vore. + devourable = 1 + digestable = 1 + feeding = 1 //Creambeast - basically a bit tougher mob that has feeding ranged attacks /mob/living/simple_animal/hostile/feed/chocolate_slime/creambeast diff --git a/code/modules/mob/living/simple_animal/slime/slime.dm b/code/modules/mob/living/simple_animal/slime/slime.dm index 23797cea..f7e5105a 100644 --- a/code/modules/mob/living/simple_animal/slime/slime.dm +++ b/code/modules/mob/living/simple_animal/slime/slime.dm @@ -35,6 +35,11 @@ verb_exclaim = "loudly blorbles" verb_yell = "loudly blorbles" + // GS13 modification to make the funy jelly edible + devourable = 1 + digestable = 1 + feeding = 1 + // canstun and canknockdown don't affect slimes because they ignore stun and knockdown variables // for the sake of cleanliness, though, here they are. status_flags = CANUNCONSCIOUS|CANPUSH