diff --git a/code/datums/uplink_items/uplink_traitor.dm b/code/datums/uplink_items/uplink_traitor.dm index a6e17d7a689..e949266ce2e 100644 --- a/code/datums/uplink_items/uplink_traitor.dm +++ b/code/datums/uplink_items/uplink_traitor.dm @@ -531,6 +531,14 @@ cost = 50 excludefrom = list(UPLINK_TYPE_NUCLEAR, UPLINK_TYPE_SST) +/datum/uplink_item/device_tools/hyper_medipen + name = "Hyper-regenerative Medipen" + desc = "An autoinjector filled with a variety of medical chemicals. It rapidly heals conventional injuries and genetic damage, but loses potency just as quickly. May have side effects if multiple are used in quick succession." + reference = "HMP" + item = /obj/item/reagent_containers/hypospray/autoinjector/hyper_medipen + cost = 10 + excludefrom = list(UPLINK_TYPE_NUCLEAR, UPLINK_TYPE_SST) + /// Nukies get Diamond Tipped Thermal Safe Drill instead /datum/uplink_item/device_tools/thermal_drill name = "Amplifying Thermal Safe Drill" diff --git a/code/modules/reagents/reagent_containers/hypospray.dm b/code/modules/reagents/reagent_containers/hypospray.dm index 34e4f42eddd..1dddde46584 100644 --- a/code/modules/reagents/reagent_containers/hypospray.dm +++ b/code/modules/reagents/reagent_containers/hypospray.dm @@ -281,3 +281,11 @@ name = "\improper Anti-Plague Sequence Omega autoinjector" desc = "A small autoinjector containing 15 units of Anti-Plague Sequence Omega. Cures all cases of the Necrotizing Plague. Also heals dead limbs." list_reagents = list("zombiecure4" = 15) + +/obj/item/reagent_containers/hypospray/autoinjector/hyper_medipen + name = "suspicious medipen" + desc = "A cheap-looking medipen containing what seems to be a mix of nearly every medicine stored in the recently raided Nanotrasen warehouse." + icon_state = "hyperpen" + amount_per_transfer_from_this = 37 + volume = 37 + list_reagents = list("salglu_solution" = 3, "synthflesh" = 4, "omnizine" = 3, "weak_omnizine" = 3, "perfluorodecalin" = 2, "sal_acid" = 1, "bicaridine" = 4, "kelotane" = 4, "epinephrine" = 5, "lavaland_extract" = 2, "rezadone" = 1, "teporone" = 2, "menthol" = 1, "vitamin" = 2) diff --git a/icons/obj/hypo.dmi b/icons/obj/hypo.dmi index 3c940b69060..6b55daafa22 100644 Binary files a/icons/obj/hypo.dmi and b/icons/obj/hypo.dmi differ