added fat toxin : the toxin that makes you fat

This commit is contained in:
KabKebab
2022-02-12 18:48:01 +01:00
parent 1c3e885cb7
commit 0fbb5b0fbc
3 changed files with 22 additions and 0 deletions
@@ -0,0 +1,15 @@
//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 = fatness + 3
return ..()
@@ -0,0 +1,5 @@
/datum/chemical_reaction/lipoifier
name = "lipoifier"
id = /datum/reagent/toxin/lipoifier
results = list(/datum/reagent/toxin/lipoifier = 3)
required_reagents = list(/datum/reagent/sugar = 1, /datum/reagent/consumable/cornoil = 1, /datum/reagent/medicine/synthflesh = 1)