mirror of
https://github.com/KabKebab/GS13.git
synced 2026-08-22 12:36:16 +01:00
added fat toxin : the toxin that makes you fat
This commit is contained in:
@@ -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)
|
||||
Reference in New Issue
Block a user