fat chem no longer does liver damage

This commit is contained in:
KabKebab
2022-05-01 19:19:32 +02:00
parent 081d4c1c89
commit cf8c677893
4 changed files with 18 additions and 19 deletions
@@ -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 ..()
@@ -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 ..()
@@ -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)