From b15120916061bb2ab882f22793973cc02c69b0dd Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 26 Aug 2017 11:07:33 -0500 Subject: [PATCH] Gives plasmamen hallucinations when taking blackpowder --- .../reagents/chemistry/reagents/pyrotechnic_reagents.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/modules/reagents/chemistry/reagents/pyrotechnic_reagents.dm b/code/modules/reagents/chemistry/reagents/pyrotechnic_reagents.dm index 5eb034d604..36320459e8 100644 --- a/code/modules/reagents/chemistry/reagents/pyrotechnic_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/pyrotechnic_reagents.dm @@ -106,6 +106,11 @@ metabolization_rate = 0.05 taste_description = "salt" +/datum/reagent/blackpowder/on_mob_life(mob/living/M) + ..() + if(isplasmaman(M)) + M.hallucination += 10 + /datum/reagent/blackpowder/on_ex_act() var/location = get_turf(holder.my_atom) var/datum/effect_system/reagents_explosion/e = new()