From 251ed2952bff39dea8252def6c037bdeefc65b5e Mon Sep 17 00:00:00 2001 From: MLGTASTICa <61350382+MLGTASTICa@users.noreply.github.com> Date: Mon, 5 Aug 2024 19:12:00 +0300 Subject: [PATCH] [MIRROR] Sugar now causes brain damage in extremely high doses for unathi --- code/datums/traits/trait_helpers.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/datums/traits/trait_helpers.dm b/code/datums/traits/trait_helpers.dm index 0695c48e422d4..d02e7aa600219 100644 --- a/code/datums/traits/trait_helpers.dm +++ b/code/datums/traits/trait_helpers.dm @@ -31,3 +31,6 @@ C.emote(pick("twitch", "drool")) if(effective_dose > 20 && prob(10)) C.SelfMove(pick(GLOB.cardinal)) + if(effective_dose > 50 && prob(60)) + var/obj/item/organ/internal/brain/O = C.internal_organs_by_name[BP_BRAIN] + O?.take_internal_damage(10, FALSE)