From c2f83391353c07b152615b9b0f336bfed063919d Mon Sep 17 00:00:00 2001 From: Ordonis Date: Thu, 18 Jan 2018 15:06:27 -0600 Subject: [PATCH 1/2] Adds a Recipe for morphine to medicine (#34541) * Adds a Recipe for morphine to medicine Exactly what it says on the tin. * Ketrazine Adds ketrazine, a combat stimulant with severe consequences for use. * Revert "Ketrazine" This reverts commit d618fe337cc28f5513c59ff3399894c10dde4a7d. --- code/modules/reagents/chemistry/recipes/medicine.dm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/code/modules/reagents/chemistry/recipes/medicine.dm b/code/modules/reagents/chemistry/recipes/medicine.dm index 3280ae2a11..7123267eb3 100644 --- a/code/modules/reagents/chemistry/recipes/medicine.dm +++ b/code/modules/reagents/chemistry/recipes/medicine.dm @@ -226,3 +226,10 @@ id = "corazone" results = list("corazone" = 3) required_reagents = list("phenol" = 2, "lithium" = 1) + +/datum/chemical_reaction/morphine + name = "Morphine" + id = "morphine" + results = list("morphine" = 3) + required_reagents = list("carbon" = 2, "hydrogen" = 2, "nitrogen" = 1, "oxygen" = 1) + required_temp = 480 \ No newline at end of file