mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-24 12:37:26 +01:00
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:
@@ -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)
|
||||
|
||||
@@ -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()
|
||||
. = ..()
|
||||
|
||||
Reference in New Issue
Block a user