From e17f2a0899b66a88c86961b5365942b3a1fad9aa Mon Sep 17 00:00:00 2001 From: Necaladun Date: Sun, 22 Jun 2014 08:12:20 +0930 Subject: [PATCH] citalopram fix Citalopram now functions as an antipsychotic, reducing hallucinations. 1 unit will counter 1u of mindbreaker, but not remove it - synaptazine for that. --- code/modules/reagents/Chemistry-Reagents-Antidepressants.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/reagents/Chemistry-Reagents-Antidepressants.dm b/code/modules/reagents/Chemistry-Reagents-Antidepressants.dm index 0a722a436ac..d4d26349a82 100644 --- a/code/modules/reagents/Chemistry-Reagents-Antidepressants.dm +++ b/code/modules/reagents/Chemistry-Reagents-Antidepressants.dm @@ -31,7 +31,7 @@ /datum/reagent/antidepressant/citalopram name = "Citalopram" id = "citalopram" - description = "Stabilizes the mind a little." + description = "Stabilizes the mind a little, reducing hallucinations." reagent_state = LIQUID color = "#C8A5DC" custom_metabolism = 0.01 @@ -39,6 +39,7 @@ on_mob_life(var/mob/living/M as mob) if(!M) M = holder.my_atom + M.hallucination -= 10 if(src.volume <= 0.1) if(data != -1) data = -1 M << "\red Your mind feels a little less stable.."