diff --git a/code/modules/reagents/chemistry/reagents/food_reagents.dm b/code/modules/reagents/chemistry/reagents/food_reagents.dm index 47bbc899a9..45838de5e7 100644 --- a/code/modules/reagents/chemistry/reagents/food_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/food_reagents.dm @@ -615,7 +615,19 @@ to_chat(M, "Your eyes sting!") M.blind_eyes(2) +/datum/reagent/consumable/nutriment/stabilized + name = "Stabilized Nutriment" + id = "stabilizednutriment" + description = "A bioengineered protien-nutrient structure designed to decompose in high saturation. In layman's terms, it won't get you fat." + reagent_state = SOLID + nutriment_factor = 15 * REAGENTS_METABOLISM + color = "#664330" // rgb: 102, 67, 48 +/datum/reagent/consumable/nutriment/stabilized/on_mob_life(mob/living/M) + if(M.nutrition > NUTRITION_LEVEL_FULL - 25) + M.nutrition -= 3*nutriment_factor + ..() + ////Lavaland Flora Reagents//// @@ -673,4 +685,4 @@ description = "The sorrow and melancholy of a thousand bereaved clowns, forever denied their Honkmechs." nutriment_factor = 5 * REAGENTS_METABOLISM color = "#eef442" // rgb: 238, 244, 66 - taste_description = "mournful honking" \ No newline at end of file + taste_description = "mournful honking"