diff --git a/code/datums/uplink_items/uplink_general.dm b/code/datums/uplink_items/uplink_general.dm index 44bbb9206af..8e9697dd763 100644 --- a/code/datums/uplink_items/uplink_general.dm +++ b/code/datums/uplink_items/uplink_general.dm @@ -670,6 +670,13 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item)) item = /obj/item/implanter/freedom cost = 5 +/datum/uplink_item/implants/protofreedom + name = "Prototype Freedom Bio-chip" + desc = "A prototype bio-chip injected into the body and later activated manually to break out of any restraints or grabs. Can only be activated a singular time." + reference = "PFI" + item = /obj/item/implanter/freedom/prototype + cost = 2 + /datum/uplink_item/implants/storage name = "Storage Bio-chip" desc = "A bio-chip injected into the body, and later activated at the user's will. It will open a small subspace pocket capable of storing two items." diff --git a/code/game/objects/items/weapons/implants/implant_freedom.dm b/code/game/objects/items/weapons/implants/implant_freedom.dm index 7470bd86e4c..d98ff98790a 100644 --- a/code/game/objects/items/weapons/implants/implant_freedom.dm +++ b/code/game/objects/items/weapons/implants/implant_freedom.dm @@ -35,3 +35,22 @@ name = "bio-chip case - 'Freedom'" desc = "A glass case containing a freedom bio-chip." implant_type = /obj/item/implant/freedom + +/obj/item/implant/freedom/prototype + name = "prototype freedom bio-chip" + desc = "Use this to escape from those evil Red Shirts. Works only once!" + icon_state = "freedom" + item_color = "r" + origin_tech = "combat=5;magnets=3;biotech=3;syndicate=1" + uses = 1 + implant_data = /datum/implant_fluff/protofreedom + implant_state = "implant-syndicate" + +/obj/item/implanter/freedom/prototype + name = "bio-chip implanter (proto-freedom)" + implant_type = /obj/item/implant/freedom/prototype + +/obj/item/implantcase/freedom/prototype + name = "bio-chip case - 'Proto-Freedom'" + desc = "A glass case containing a prototype freedom bio-chip." + implant_type = /obj/item/implant/freedom/prototype diff --git a/code/game/objects/items/weapons/implants/implantfluff.dm b/code/game/objects/items/weapons/implants/implantfluff.dm index 10123a1070a..8cda71a7455 100644 --- a/code/game/objects/items/weapons/implants/implantfluff.dm +++ b/code/game/objects/items/weapons/implants/implantfluff.dm @@ -69,6 +69,12 @@ notes = "A bio-chip that is illegal in many systems. It is notoriously known for allowing users to grotesquely fracture bones and over-exert joints in order to slip out of the tightest of restraints." function = "Uses a mixture of cybernetic nanobots, bone regrowth chemicals, and radio signals to quickly break the user out of restraints." +/datum/implant_fluff/protofreedom + name = "Cybersun Industries X-92 Quick Escape Bio-chip" + life = "Destroyed after 1 use." + notes = "A bio-chip that is illegal in many systems. This is the early prototype version of the RX-92. It's significantly cheaper than it's newer version." + function = "Uses a mixture of cheap cybernetic nanobots, bone regrowth chemicals, and radio signals to quickly break the user out of restraints." + /datum/implant_fluff/health name = "Nanotrasen Health Bio-chip"