Rebalances antistun chems (#18084)

* rebalances antistun chems

* missed some

* oops

* tweaks

* makes adrenals heal shock and heart failure

* typo

* moxian review

* aaaaaa

* I FORGOR

* steel review
This commit is contained in:
Charlie
2022-07-15 11:09:40 -05:00
committed by GitHub
parent acc48358b4
commit 707a92c46d
9 changed files with 229 additions and 137 deletions
+2 -2
View File
@@ -25,7 +25,7 @@
max_stages = 3
spread_flags = SPECIAL
cure_text = "Saline-Glucose Solution"
cures = list("salglu_solution", "syndicate_nanites")
cures = list("salglu_solution", "syndicate_nanites", "stimulative_agent")
cure_chance = 10
viable_mobtypes = list(/mob/living/carbon/human)
stage_prob = 6
@@ -86,7 +86,7 @@
max_stages = 3
spread_flags = SPECIAL
cure_text = "Atropine, Epinephrine, or Heparin"
cures = list("atropine", "epinephrine", "heparin", "syndicate_nanites")
cures = list("atropine", "epinephrine", "heparin", "syndicate_nanites", "stimulative_agent")
cure_chance = 10
needs_all_cures = FALSE
viable_mobtypes = list(/mob/living/carbon/human)
+6
View File
@@ -227,6 +227,12 @@
. = ..()
STOP_PROCESSING(SSfastprocess, src)
START_PROCESSING(SSprocessing, src) //this lasts 20 minutes, so SSfastprocess isn't needed.
if(!ishuman(new_owner))
return .
var/mob/living/carbon/human/H = new_owner
if(H.physiology.melee_bonus < 0)
H.physiology.melee_bonus = min(H.physiology.melee_bonus + 1, 0)
to_chat(H, "<span class='notice'>You feel stronger!</span>")
/datum/status_effect/exercised/Destroy()
. = ..()