mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-21 11:07:12 +01:00
Adds the Proto-Adrenaline Bio-chip (#24716)
* Adds the Proto-Adrenaline Bio-chip * Apply suggestions from code review Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com> --------- Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com>
This commit is contained in:
co-authored by
Contrabang
parent
c7887bffde
commit
0a16d6e9ec
@@ -32,3 +32,35 @@
|
||||
name = "bio-chip case - 'Adrenaline'"
|
||||
desc = "A glass case containing an adrenaline bio-chip."
|
||||
implant_type = /obj/item/bio_chip/adrenalin
|
||||
|
||||
/obj/item/bio_chip/proto_adrenalin
|
||||
name = "proto-adrenal bio-chip"
|
||||
desc = "Removes all stuns and knockdowns."
|
||||
icon_state = "adrenal"
|
||||
origin_tech = "materials=2;biotech=4;combat=3;syndicate=2"
|
||||
uses = 1
|
||||
implant_data = /datum/implant_fluff/proto_adrenaline
|
||||
implant_state = "implant-syndicate"
|
||||
|
||||
/obj/item/bio_chip/proto_adrenalin/activate()
|
||||
uses--
|
||||
to_chat(imp_in, "<span class='notice'>You feel a sudden surge of energy!</span>")
|
||||
imp_in.SetStunned(0)
|
||||
imp_in.SetWeakened(0)
|
||||
imp_in.SetKnockDown(0)
|
||||
imp_in.SetParalysis(0)
|
||||
imp_in.setStaminaLoss(0) //Since it doesn't have a good followup like adrenals, and getting batoned the moment after triggering it will stamina crit you, will set to zero over - 75
|
||||
imp_in.stand_up(TRUE)
|
||||
SEND_SIGNAL(imp_in, COMSIG_LIVING_CLEAR_STUNS)
|
||||
imp_in.reagents.add_reagent("stimulative_cling", 1)
|
||||
if(!uses)
|
||||
qdel(src)
|
||||
|
||||
/obj/item/bio_chip_implanter/proto_adrenalin
|
||||
name = "bio-chip implanter (proto-adrenalin)"
|
||||
implant_type = /obj/item/bio_chip/proto_adrenalin
|
||||
|
||||
/obj/item/bio_chip_case/proto_adrenalin
|
||||
name = "bio-chip case - 'proto-adrenalin'"
|
||||
desc = "A glass case containing an proto-adrenalin bio-chip."
|
||||
implant_type = /obj/item/bio_chip/proto_adrenalin
|
||||
|
||||
@@ -22,6 +22,12 @@
|
||||
notes = "One of Cybersun Industries oldest and simplest implants, even in its simplicity it is rumoured to be one of Cybersun Industries best-selling products."
|
||||
function = "Subjects injected with this bio-chip can activate an injection of medical cocktails that removes stuns, increases speed, and has mild healing effects."
|
||||
|
||||
/datum/implant_fluff/proto_adrenaline
|
||||
name = "Cybersun Industries FX-1 Proto-Adrenaline Bio-chip"
|
||||
life = "Destroyed after 1 use."
|
||||
notes = "Originally developed as part of Cybersun's medical line for preventing high-G sickness during space travel, but today it is sold for less legal uses."
|
||||
function = "Subjects injected with this bio-chip can activate an injection of medical cocktails that gets them back up on their feet."
|
||||
|
||||
/datum/implant_fluff/supercharge
|
||||
name = "Cybersun Industries RX-4 Synthetic Supercharge Bio-chip"
|
||||
life = "Known to last for up to a year."
|
||||
|
||||
Reference in New Issue
Block a user