mirror of
https://github.com/KabKebab/GS13.git
synced 2026-07-12 00:20:55 +01:00
fat chem no longer does liver damage
This commit is contained in:
@@ -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 ..()
|
||||
+2
-2
@@ -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)
|
||||
+2
-2
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user