Sterilizine reduces germ_level on contact

Conflicts:
	code/modules/reagents/Chemistry-Reagents.dm
This commit is contained in:
mwerezak
2014-07-08 18:57:07 -04:00
committed by ZomgPonies
parent 87e7c32959
commit 2ff4a975f0
+13 -1
View File
@@ -1236,7 +1236,19 @@ datum
id = "sterilizine"
description = "Sterilizes wounds in preparation for surgery."
reagent_state = LIQUID
color = "#F0FFF0" // rgb: 240, 255, 240
color = "#C8A5DC" // rgb: 200, 165, 220
//makes you squeaky clean
reaction_mob(var/mob/living/M, var/method=TOUCH, var/volume)
if (method == TOUCH)
M.germ_level -= min(volume*20, M.germ_level)
reaction_obj(var/obj/O, var/volume)
O.germ_level -= min(volume*20, O.germ_level)
reaction_turf(var/turf/T, var/volume)
T.germ_level -= min(volume*20, T.germ_level)
/* reaction_mob(var/mob/living/M, var/method=TOUCH, var/volume)
src = null
if (method==TOUCH)