From d8deea248cfdf76f334501c628348e37be00fd2c Mon Sep 17 00:00:00 2001 From: Darius <5933805+LeDrascol@users.noreply.github.com> Date: Thu, 16 Feb 2023 22:35:16 -0500 Subject: [PATCH] Buff blood to notriment ratio Increases the conversion rate from Blood into Strange Nutriment from 10% to 50% to prevent cases of too little nutrition being added. Increases the nutriment factor from 4 (10 * REAGENTS_METABOLISM) to 5, and the metabolization rate from 0.4 to 1. Maximum nutrition level possible from Strange Nutriment is now NUTRITION_LEVEL_FAT, after which no further nutrition can be added. --- .../modules/reagents/chemistry/reagents/other_reagents.dm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/modular_splurt/code/modules/reagents/chemistry/reagents/other_reagents.dm b/modular_splurt/code/modules/reagents/chemistry/reagents/other_reagents.dm index d7b796834b..1132a111d1 100644 --- a/modular_splurt/code/modules/reagents/chemistry/reagents/other_reagents.dm +++ b/modular_splurt/code/modules/reagents/chemistry/reagents/other_reagents.dm @@ -47,8 +47,8 @@ return // Add nutrition reagent - // Reduced to 10% - M.reagents.add_reagent(/datum/reagent/consumable/notriment, reac_volume*0.1) + // Reduced to 50% + M.reagents.add_reagent(/datum/reagent/consumable/notriment, reac_volume*0.5) /datum/reagent/water/holywater/on_mob_life(mob/living/carbon/M) . = ..() @@ -98,7 +98,9 @@ name = "Strange Nutriment" description = "An exotic form of nutriment produced by unusual digestive systems." reagent_state = SOLID - nutriment_factor = 10 * REAGENTS_METABOLISM + nutriment_factor = 5 // From 4 + metabolization_rate = 1 // From 0.4 + max_nutrition = NUTRITION_LEVEL_FAT // From INFINITY color = "#66552f" // rgb: 102, 85, 47 /datum/reagent/consumable/notriment/reaction_mob(mob/living/carbon/M, method=TOUCH, reac_volume)