This commit is contained in:
Fox-McCloud
2015-12-12 18:03:37 -05:00
parent b84f31ac5c
commit 5d1e24bc53
4 changed files with 6 additions and 1 deletions
+1
View File
@@ -199,6 +199,7 @@ datum/reagent/fungus/reaction_mob(var/mob/M, var/method=TOUCH, var/volume)
description = "An old household remedy for mild illnesses."
reagent_state = LIQUID
color = "#B4B400"
metabolization_rate = 0.2
/datum/reagent/chicken_soup/on_mob_life(var/mob/living/M as mob)
M.nutrition += 2
@@ -278,6 +278,7 @@ datum/reagent/sal_acid
description = "This is a is a standard salicylate pain reliever and fever reducer."
reagent_state = LIQUID
color = "#B3B3B3"
metabolization_rate = 0.1
shock_reduction = 25
overdose_threshold = 25
+3 -1
View File
@@ -454,6 +454,7 @@ datum/reagent/lipolicide
description = "A compound found in many seedy dollar stores in the form of a weight-loss tonic."
reagent_state = SOLID
color = "#D1DED1"
metabolization_rate = 0.2
/datum/chemical_reaction/lipolicide
name = "lipolicide"
@@ -465,7 +466,8 @@ datum/reagent/lipolicide
datum/reagent/lipolicide/on_mob_life(var/mob/living/M as mob)
if(!M) M = holder.my_atom
if(!holder.has_reagent("nutriment"))
M.adjustToxLoss(1)
if(prob(30))
M.adjustToxLoss(1)
M.nutrition -= 10 * REAGENTS_METABOLISM
M.overeatduration = 0
if(M.nutrition < 0)//Prevent from going into negatives.
@@ -131,6 +131,7 @@
description = "An all-purpose antibiotic agent extracted from space fungus."
reagent_state = LIQUID
color = "#0AB478"
metabolization_rate = 0.2
/datum/reagent/spaceacillin/on_mob_life(var/mob/living/M as mob)
..()