From 037cf5b4af8af78d1496027dcd08257e506a81fc Mon Sep 17 00:00:00 2001 From: UEDCommander Date: Fri, 12 Apr 2024 20:46:57 +0300 Subject: [PATCH] Imrpoved Paashe effects, as well as more difficult recepie --- mods/unathi/code/chemical_reactions.dm | 4 ++-- mods/unathi/code/reagents.dm | 10 ++++++++++ 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/mods/unathi/code/chemical_reactions.dm b/mods/unathi/code/chemical_reactions.dm index 8f4a53d8bb53c..5c206c1098644 100644 --- a/mods/unathi/code/chemical_reactions.dm +++ b/mods/unathi/code/chemical_reactions.dm @@ -2,8 +2,8 @@ /datum/chemical_reaction/paashe name = "Paashe Meish Sunn" result = /datum/reagent/paashe - required_reagents = list(/datum/reagent/toxin/yeosvenom = 1, /datum/reagent/ethanol = 1, /datum/reagent/acetone = 1) - result_amount = 3 + required_reagents = list(/datum/reagent/toxin/yeosvenom = 1, /datum/reagent/ethanol = 1, /datum/reagent/lithium = 1, /datum/reagent/space_cleaner = 2) + result_amount = 5 /datum/chemical_reaction/arhishaap name = "Arhishaap" diff --git a/mods/unathi/code/reagents.dm b/mods/unathi/code/reagents.dm index fbea3fe079fb7..2de3ab91fe89c 100644 --- a/mods/unathi/code/reagents.dm +++ b/mods/unathi/code/reagents.dm @@ -52,6 +52,16 @@ M.Weaken(2) M.drowsyness = max(M.drowsyness, 5) + if (IS_METABOLICALLY_INERT(M)) + return + M.drowsyness = max(M.drowsyness - 2, 0) + M.AdjustParalysis(-1) + M.AdjustStunned(-1) + holder.remove_reagent(/datum/reagent/drugs/mindbreaker, 2) + M.adjust_hallucination(-5) + M.add_chemical_effect(CE_MIND, 1) + M.add_chemical_effect(CE_STIMULANT, 5) + /datum/reagent/arhishaap name = "Arhishaap" description = "An advanced Yeosa'Unathi anti-toxin, significantly more effective than synthetic alternatives."