Skip to content

Commit

Permalink
Imrpoved Paashe effects, as well as more difficult recepie
Browse files Browse the repository at this point in the history
  • Loading branch information
UEDCommander committed Apr 12, 2024
1 parent 2c65c55 commit 037cf5b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mods/unathi/code/chemical_reactions.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
10 changes: 10 additions & 0 deletions mods/unathi/code/reagents.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down

0 comments on commit 037cf5b

Please sign in to comment.