diff --git a/code/datums/uplink_items/uplink_general.dm b/code/datums/uplink_items/uplink_general.dm index 9a9425ee96b..4ef15dbfb3a 100644 --- a/code/datums/uplink_items/uplink_general.dm +++ b/code/datums/uplink_items/uplink_general.dm @@ -811,13 +811,6 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item)) item = /obj/item/bio_chip_implanter/traitor cost = 50 -/datum/uplink_item/bio_chips/proto_adrenal - name = "Proto-Adrenal Bio-chip" - desc = "A old prototype of the Adrenalin implant, that grants the user 4 seconds of antistun, getting them back on their feet instantly once, but nothing more. Speed and healing sold seperately." - reference = "PAI" - item = /obj/item/bio_chip_implanter/proto_adrenalin - cost = 18 - /datum/uplink_item/bio_chips/adrenal name = "Adrenal Bio-chip" desc = "A bio-chip injected into the body, and later activated manually to inject a chemical cocktail, which has a mild healing effect along with removing and reducing the time of all stuns and increasing movement speed. Can be activated up to 3 times." @@ -825,6 +818,21 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item)) item = /obj/item/bio_chip_implanter/adrenalin cost = 40 +/datum/uplink_item/bio_chips/basic_adrenal + name = "Basic-Adrenal Bio-chip" + desc = "A single-use bio-chip injected into the body and later activated manually to inject a chemical cocktail. This one has a worse healing effect than regular adrenaline. It can be activated once for 3/4 of the effect of the original." + reference = "BAI" + item = /obj/item/bio_chip_implanter/basic_adrenalin + cost = 20 + can_discount = FALSE + +/datum/uplink_item/bio_chips/proto_adrenal + name = "Proto-Adrenal Bio-chip" + desc = "A old prototype of the Adrenalin implant, that grants the user 4 seconds of antistun, getting them back on their feet instantly once, but nothing more. Speed and healing sold seperately." + reference = "PAI" + item = /obj/item/bio_chip_implanter/proto_adrenalin + cost = 10 + /datum/uplink_item/bio_chips/stealthimplant name = "Stealth Bio-chip" desc = "This one-of-a-kind implant will make you almost invisible if you play your cards right. \ diff --git a/code/game/objects/items/weapons/bio_chips/bio_chip_adrenalin.dm b/code/game/objects/items/weapons/bio_chips/bio_chip_adrenalin.dm index b4a3fa9bb00..264212986d1 100644 --- a/code/game/objects/items/weapons/bio_chips/bio_chip_adrenalin.dm +++ b/code/game/objects/items/weapons/bio_chips/bio_chip_adrenalin.dm @@ -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, "You feel a sudden surge of energy!") + 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." diff --git a/code/game/objects/items/weapons/bio_chips/bio_chip_fluff.dm b/code/game/objects/items/weapons/bio_chips/bio_chip_fluff.dm index 96f4de6aa72..7ec6ade5970 100644 --- a/code/game/objects/items/weapons/bio_chips/bio_chip_fluff.dm +++ b/code/game/objects/items/weapons/bio_chips/bio_chip_fluff.dm @@ -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."