diff --git a/code/datums/uplink_item.dm b/code/datums/uplink_item.dm index c4a20fbd29b..bcbfaa37a3d 100644 --- a/code/datums/uplink_item.dm +++ b/code/datums/uplink_item.dm @@ -857,13 +857,6 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item)) item = /obj/item/toy/carpplushie/dehy_carp cost = 3 -/datum/uplink_item/stealthy_weapons/chamsechud - name = "Chameleon Security HUD" - desc = "A stolen Nanotrasen Security HUD with Syndicate chameleon technology implemented into it. Similarly to a chameleon jumpsuit, the HUD can be morphed into various other eyewear, while retaining the HUD qualities when worn." - reference = "CHHUD" - item = /obj/item/clothing/glasses/hud/security/chameleon - cost = 2 - // GRENADES AND EXPLOSIVES /datum/uplink_item/explosives @@ -957,7 +950,7 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item)) /datum/uplink_item/explosives/emp name = "EMP Grenades and Implanter Kit" - desc = "A box that contains two EMP grenades and an EMP implant. Useful to disrupt communication, \ + desc = "A box that contains two EMP grenades and an EMP implant with 2 uses. Useful to disrupt communication, \ security's energy weapons, and silicon lifeforms when you're in a tight spot." reference = "EMPK" item = /obj/item/storage/box/syndie_kit/emp @@ -1000,6 +993,28 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item)) gamemodes = list(/datum/game_mode/nuclear) excludefrom = list() +/datum/uplink_item/stealthy_tools/chamsechud + name = "Chameleon Security HUD" + desc = "A stolen Nanotrasen Security HUD with Syndicate chameleon technology implemented into it. Similarly to a chameleon jumpsuit, the HUD can be morphed into various other eyewear, while retaining the HUD qualities when worn." + reference = "CHHUD" + item = /obj/item/clothing/glasses/hud/security/chameleon + cost = 2 + +/datum/uplink_item/stealthy_tools/thermal + name = "Thermal Imaging Glasses" + desc = "These glasses are thermals disguised as engineers' optical meson scanners. They allow you to see organisms through walls by capturing the upper portion of the infra-red light spectrum, emitted as heat and light by objects. Hotter objects, such as warm bodies, cybernetic organisms and artificial intelligence cores emit more of this light than cooler objects like walls and airlocks." + reference = "THIG" + item = /obj/item/clothing/glasses/thermal/syndi + cost = 6 + +/datum/uplink_item/stealthy_tools/traitor_belt + name = "Traitor's Toolbelt" + desc = "A robust seven-slot belt made for carrying a broad variety of weapons, ammunition and explosives. It's modelled after the standard NT toolbelt so as to avoid suspicion while wearing it." + reference = "SBM" + item = /obj/item/storage/belt/military/traitor + cost = 2 + excludefrom = list(/datum/game_mode/nuclear) + /datum/uplink_item/stealthy_tools/frame name = "F.R.A.M.E. PDA Cartridge" desc = "When inserted into a personal digital assistant, this cartridge gives you five PDA viruses which \ @@ -1129,14 +1144,6 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item)) item = /obj/item/storage/box/syndie_kit/bonerepair cost = 4 -/datum/uplink_item/device_tools/traitor_belt - name = "Traitor's Toolbelt" - desc = "A robust seven-slot belt made for carrying a broad variety of weapons, ammunition and explosives. It's modelled after the standard NT toolbelt so as to avoid suspicion while wearing it." - reference = "SBM" - item = /obj/item/storage/belt/military/traitor - cost = 2 - excludefrom = list(/datum/game_mode/nuclear) - /datum/uplink_item/device_tools/thermal_drill name = "Thermal Safe Drill" desc = "A tungsten carbide thermal drill with magnetic clamps for the purpose of drilling hardened objects. Guaranteed 100% jam proof." @@ -1206,14 +1213,6 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item)) excludefrom = list() gamemodes = list(/datum/game_mode/nuclear) - -/datum/uplink_item/device_tools/thermal - name = "Thermal Imaging Glasses" - desc = "These glasses are thermals disguised as engineers' optical meson scanners. They allow you to see organisms through walls by capturing the upper portion of the infra-red light spectrum, emitted as heat and light by objects. Hotter objects, such as warm bodies, cybernetic organisms and artificial intelligence cores emit more of this light than cooler objects like walls and airlocks." - reference = "THIG" - item = /obj/item/clothing/glasses/thermal/syndi - cost = 6 - /datum/uplink_item/device_tools/binary name = "Binary Translator Key" desc = "A key, that when inserted into a radio headset, allows you to listen to and talk with artificial intelligences and cybernetic organisms in binary." @@ -1386,14 +1385,14 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item)) /datum/uplink_item/implants/freedom name = "Freedom Implant" - desc = "An implant injected into the body and later activated using a bodily gesture to attempt to slip restraints." + desc = "An implant injected into the body and later activated manually to break out of any restraints. Can be activated up to 4 times." reference = "FI" item = /obj/item/implanter/freedom cost = 5 /datum/uplink_item/implants/uplink name = "Uplink Implant" - desc = "An implant injected into the body, and later activated using a bodily gesture to open an uplink with 10 telecrystals. The ability for an agent to open an uplink after their possessions have been stripped from them makes this implant excellent for escaping confinement." + desc = "An implant injected into the body, and later activated manually to open an uplink with 10 telecrystals. The ability for an agent to open an uplink after their possessions have been stripped from them makes this implant excellent for escaping confinement." reference = "UI" item = /obj/item/implanter/uplink cost = 14 @@ -1416,7 +1415,7 @@ GLOBAL_LIST_INIT(uplink_items, subtypesof(/datum/uplink_item)) /datum/uplink_item/implants/adrenal name = "Adrenal Implant" - desc = "An implant injected into the body, and later activated using a bodily gesture to inject a chemical cocktail, which has a mild healing effect along with removing all stuns and increasing his speed." + desc = "An implant 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." reference = "AI" item = /obj/item/implanter/adrenalin cost = 8 diff --git a/code/modules/reagents/reagent_containers/hypospray.dm b/code/modules/reagents/reagent_containers/hypospray.dm index e0e7001f29d..7647df47661 100644 --- a/code/modules/reagents/reagent_containers/hypospray.dm +++ b/code/modules/reagents/reagent_containers/hypospray.dm @@ -144,7 +144,7 @@ /obj/item/reagent_containers/hypospray/autoinjector/stimulants name = "Stimulants autoinjector" - desc = "Rapidly stimulates and regernates the body's organ system." + desc = "Rapidly stimulates and regenerates the body's organ system." icon_state = "stimpen" amount_per_transfer_from_this = 50 possible_transfer_amounts = list(50)