mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-26 13:37:58 +01:00
Proto adrenalin price changes and one use adrenalin (#25475)
* Adrenal changes * Update code/datums/uplink_items/uplink_general.dm Co-authored-by: 1080pCat <96908085+1080pCat@users.noreply.github.com> Signed-off-by: Rayforx <154929127+Rayforx@users.noreply.github.com> --------- Signed-off-by: Rayforx <154929127+Rayforx@users.noreply.github.com> Co-authored-by: 1080pCat <96908085+1080pCat@users.noreply.github.com>
This commit is contained in:
@@ -33,6 +33,41 @@
|
||||
desc = "A glass case containing an adrenaline bio-chip."
|
||||
implant_type = /obj/item/bio_chip/adrenalin
|
||||
|
||||
/obj/item/bio_chip/basic_adrenalin
|
||||
name = "basic adrenal bio-chip"
|
||||
desc = "Removes all stuns and knockdowns."
|
||||
icon_state = "adrenal"
|
||||
origin_tech = "materials=2;biotech=4;combat=3;syndicate=3"
|
||||
uses = 1
|
||||
implant_data = /datum/implant_fluff/basic_adrenalin
|
||||
implant_state = "implant-syndicate"
|
||||
|
||||
/obj/item/bio_chip/basic_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.adjustStaminaLoss(-75)
|
||||
imp_in.stand_up(TRUE)
|
||||
SEND_SIGNAL(imp_in, COMSIG_LIVING_CLEAR_STUNS)
|
||||
|
||||
imp_in.reagents.add_reagent("synaptizine", 7.5)
|
||||
imp_in.reagents.add_reagent("weak_omnizine", 7.5)
|
||||
imp_in.reagents.add_reagent("stimulative_agent", 7.5)
|
||||
if(!uses)
|
||||
qdel(src)
|
||||
|
||||
/obj/item/bio_chip_implanter/basic_adrenalin
|
||||
name = "bio-chip implanter (basic adrenalin)"
|
||||
implant_type = /obj/item/bio_chip/basic_adrenalin
|
||||
|
||||
/obj/item/bio_chip_case/basic_adrenalin
|
||||
name = "bio-chip case - 'Basic Adrenaline'"
|
||||
desc = "A glass case containing an smaller than normal adrenaline bio-chip."
|
||||
implant_type = /obj/item/bio_chip/basic_adrenalin
|
||||
|
||||
/obj/item/bio_chip/proto_adrenalin
|
||||
name = "proto-adrenal bio-chip"
|
||||
desc = "Removes all stuns and knockdowns."
|
||||
|
||||
@@ -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/basic_adrenalin
|
||||
name = "Cybersun Industries RX-1 Adrenaline Bio-chip"
|
||||
life = "Five days or after 1 use."
|
||||
notes = "One of Cybersun Industries oldest implants, made smaller because of popular demand, because of the manufacturing cost and the smaller size. Then, more inferior products were used in the implant to decrease the price."
|
||||
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."
|
||||
|
||||
Reference in New Issue
Block a user