mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-28 11:11:52 +00:00
This would've been multiple commits, but I kept forgetting to ACTUALLY commit things. Changes logged in the PR.
28 lines
876 B
Plaintext
28 lines
876 B
Plaintext
/obj/effect/proc_holder/changeling/epinephrine
|
|
name = "Epinephrine Overdose"
|
|
desc = "We evolve additional sacs of adrenaline throughout our body."
|
|
helptext = "Removes all stuns instantly and adds a short-term reduction in further stuns. Can be used while unconscious. Continued use poisons the body."
|
|
chemical_cost = 30
|
|
dna_cost = 2
|
|
req_human = 1
|
|
req_stat = UNCONSCIOUS
|
|
|
|
//Recover from stuns.
|
|
/obj/effect/proc_holder/changeling/epinephrine/sting_action(var/mob/living/user)
|
|
|
|
if(user.lying)
|
|
user << "<span class='notice'>We arise.</span>"
|
|
else
|
|
user << "<span class='notice'>Adrenaline rushes through us.</span>"
|
|
user.stat = 0
|
|
user.SetParalysis(0)
|
|
user.SetStunned(0)
|
|
user.SetWeakened(0)
|
|
user.lying = 0
|
|
user.update_canmove()
|
|
user.reagents.add_reagent("synaptizine", 20)
|
|
user.adjustStaminaLoss(-75)
|
|
|
|
feedback_add_details("changeling_powers","UNS")
|
|
return 1
|