From cf8c6778939942ba5fefecdda993478cf5f58b35 Mon Sep 17 00:00:00 2001 From: KabKebab Date: Sun, 1 May 2022 19:19:32 +0200 Subject: [PATCH] fat chem no longer does liver damage --- .../chemistry/reagents/consumable_reagents.dm | 14 ++++++++++++++ .../reagents/chemistry/reagents/toxin_reagents.dm | 15 --------------- .../chemistry/recipes/{toxins.dm => fatchem.dm} | 4 ++-- tgstation.dme | 4 ++-- 4 files changed, 18 insertions(+), 19 deletions(-) create mode 100644 GainStation13/code/modules/reagents/chemistry/reagents/consumable_reagents.dm delete mode 100644 GainStation13/code/modules/reagents/chemistry/reagents/toxin_reagents.dm rename GainStation13/code/modules/reagents/chemistry/recipes/{toxins.dm => fatchem.dm} (66%) diff --git a/GainStation13/code/modules/reagents/chemistry/reagents/consumable_reagents.dm b/GainStation13/code/modules/reagents/chemistry/reagents/consumable_reagents.dm new file mode 100644 index 00000000..c81f4b68 --- /dev/null +++ b/GainStation13/code/modules/reagents/chemistry/reagents/consumable_reagents.dm @@ -0,0 +1,14 @@ +//we'll put funky non-toxic chems here + +//fattening chem +/datum/reagent/consumable/lipoifier + name = "Lipoifier" + description = "A very potent chemical that causes those that ingest it to build up fat cells quickly." + taste_description = "lard" + reagent_state = LIQUID + color = "#e2e1b1" + metabolization_rate = 0.5 * REAGENTS_METABOLISM + +/datum/reagent/consumable/lipoifier/on_mob_life(mob/living/carbon/M) + M.fatness = M.fatness + 3 + return ..() diff --git a/GainStation13/code/modules/reagents/chemistry/reagents/toxin_reagents.dm b/GainStation13/code/modules/reagents/chemistry/reagents/toxin_reagents.dm deleted file mode 100644 index cc497d68..00000000 --- a/GainStation13/code/modules/reagents/chemistry/reagents/toxin_reagents.dm +++ /dev/null @@ -1,15 +0,0 @@ -//we'll put funky toxins here - -//fattening toxin -/datum/reagent/toxin/lipoifier - name = "Lipoifier" - description = "A very potent toxin that causes those that ingest it to build up fat cells quickly." - taste_description = "lard" - reagent_state = LIQUID - color = "#e2e1b1" - metabolization_rate = 0.5 * REAGENTS_METABOLISM - toxpwr = 0 - -/datum/reagent/toxin/lipoifier/on_mob_life(mob/living/carbon/M) - M.fatness = M.fatness + 3 - return ..() diff --git a/GainStation13/code/modules/reagents/chemistry/recipes/toxins.dm b/GainStation13/code/modules/reagents/chemistry/recipes/fatchem.dm similarity index 66% rename from GainStation13/code/modules/reagents/chemistry/recipes/toxins.dm rename to GainStation13/code/modules/reagents/chemistry/recipes/fatchem.dm index e559e5fd..af04badf 100644 --- a/GainStation13/code/modules/reagents/chemistry/recipes/toxins.dm +++ b/GainStation13/code/modules/reagents/chemistry/recipes/fatchem.dm @@ -1,5 +1,5 @@ /datum/chemical_reaction/lipoifier name = "lipoifier" - id = /datum/reagent/toxin/lipoifier - results = list(/datum/reagent/toxin/lipoifier = 3) + id = /datum/reagent/consumable/lipoifier + results = list(/datum/reagent/consumable/lipoifier = 3) required_reagents = list(/datum/reagent/consumable/sugar = 1, /datum/reagent/consumable/cornoil = 1, /datum/reagent/medicine/synthflesh = 1) diff --git a/tgstation.dme b/tgstation.dme index c34de957..1d06e1ab 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -3065,8 +3065,8 @@ #include "code\modules\zombie\items.dm" #include "code\modules\zombie\organs.dm" #include "GainStation13\code\modules\mob\living\emote.dm" -#include "GainStation13\code\modules\reagents\chemistry\reagents\toxin_reagents.dm" -#include "GainStation13\code\modules\reagents\chemistry\recipes\toxins.dm" +#include "GainStation13\code\modules\reagents\chemistry\reagents\consumable_reagents.dm" +#include "GainStation13\code\modules\reagents\chemistry\recipes\fatchem.dm" #include "GainStation13\code\modules\vending\mealdor.dm" #include "GainStation13\code\obj\fatray.dm" #include "hyperstation\code\__DEFINES\economy.dm"