mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-22 08:01:06 +00:00
Roboticist Medical Records (#10819)
This commit is contained in:
@@ -116,6 +116,9 @@
|
||||
. = ..()
|
||||
card_slot.stored_item = new /obj/item/pen/white
|
||||
|
||||
/obj/item/modular_computer/handheld/preset/research/robotics
|
||||
_app_preset_type = /datum/modular_computer_app_presets/research/robotics
|
||||
|
||||
/obj/item/modular_computer/handheld/preset/research/rd
|
||||
_app_preset_type = /datum/modular_computer_app_presets/research/rd
|
||||
|
||||
|
||||
@@ -120,6 +120,9 @@
|
||||
. = ..()
|
||||
card_slot.stored_item = new /obj/item/pen/white
|
||||
|
||||
/obj/item/modular_computer/handheld/pda/research/robotics
|
||||
_app_preset_type = /datum/modular_computer_app_presets/research/robotics
|
||||
|
||||
/obj/item/modular_computer/handheld/pda/research/rd
|
||||
_app_preset_type = /datum/modular_computer_app_presets/research/rd
|
||||
icon_add = "rd"
|
||||
|
||||
@@ -46,6 +46,9 @@
|
||||
icon_state = "wristbound_science"
|
||||
_app_preset_type = /datum/modular_computer_app_presets/research
|
||||
|
||||
/obj/item/modular_computer/handheld/wristbound/preset/advanced/research/robotics
|
||||
_app_preset_type = /datum/modular_computer_app_presets/research/robotics
|
||||
|
||||
/obj/item/modular_computer/handheld/wristbound/preset/advanced/command
|
||||
icon_state = "wristbound_command"
|
||||
_app_preset_type = /datum/modular_computer_app_presets/command
|
||||
|
||||
@@ -166,6 +166,29 @@
|
||||
)
|
||||
return _prg_list
|
||||
|
||||
/datum/modular_computer_app_presets/research/robotics
|
||||
name = "research_robotics"
|
||||
display_name = "Research - Robotics"
|
||||
description = "Contains the most common research programs and medical record software."
|
||||
available = TRUE
|
||||
|
||||
/datum/modular_computer_app_presets/research/robotics/return_install_programs(obj/item/modular_computer/comp)
|
||||
var/list/_prg_list = list(
|
||||
new /datum/computer_file/program/ntnetdownload(comp),
|
||||
new /datum/computer_file/program/newsbrowser(comp),
|
||||
new /datum/computer_file/program/manifest(comp),
|
||||
new /datum/computer_file/program/filemanager(comp),
|
||||
new /datum/computer_file/program/chatclient(comp),
|
||||
new /datum/computer_file/program/civilian/cargoorder(comp),
|
||||
new /datum/computer_file/program/ntnetmonitor(comp),
|
||||
new /datum/computer_file/program/aidiag(comp),
|
||||
new /datum/computer_file/program/ntsl2_interpreter(comp),
|
||||
new /datum/computer_file/program/records/medical(comp),
|
||||
new /datum/computer_file/program/scanner/science(comp),
|
||||
new /datum/computer_file/program/scanner/gas(comp)
|
||||
)
|
||||
return _prg_list
|
||||
|
||||
/datum/modular_computer_app_presets/research/rd
|
||||
name = "research_head"
|
||||
display_name = "Research - RD"
|
||||
@@ -182,7 +205,6 @@
|
||||
new /datum/computer_file/program/civilian/cargoorder(comp),
|
||||
new /datum/computer_file/program/comm(comp, FALSE),
|
||||
new /datum/computer_file/program/ntnetmonitor(comp),
|
||||
new /datum/computer_file/program/aidiag(comp),
|
||||
new /datum/computer_file/program/records/employment(comp),
|
||||
new /datum/computer_file/program/ntsl2_interpreter(comp),
|
||||
new /datum/computer_file/program/chemistry_codex(comp),
|
||||
|
||||
@@ -37,7 +37,7 @@
|
||||
extended_desc = "Used to view, edit and maintain medical records."
|
||||
record_prefix = "Medical "
|
||||
|
||||
required_access_run = list(access_medical_equip, access_forensics_lockers, access_detective, access_hop)
|
||||
required_access_run = list(access_medical_equip, access_forensics_lockers, access_detective, access_robotics, access_hop)
|
||||
required_access_download = access_heads
|
||||
available_on_ntnet = TRUE
|
||||
|
||||
|
||||
Reference in New Issue
Block a user