Gives mining medic a laptop to keep track of bodycams (#17854)

* Gives mining medic a laptop

* upgraded network card
This commit is contained in:
Molti
2023-02-10 17:01:20 -06:00
committed by GitHub
parent 9a3512a44b
commit 0c13569569
3 changed files with 31 additions and 4 deletions

View File

@@ -8,6 +8,32 @@
/obj/item/modular_computer/laptop/preset/civillian
desc = "A low-end laptop often used for personal recreation."
/obj/item/modular_computer/laptop/preset/brig_physician
/obj/item/modular_computer/laptop/preset/paramedic//not actually given to a paramedic, just a base-line for the brig phys and mining medic laptops
/obj/item/modular_computer/laptop/preset/paramedic/Initialize()
starting_files |= list(
new /datum/computer_file/program/crew_monitor,
new /datum/computer_file/program/radar/lifeline
)
. = ..()
/obj/item/modular_computer/laptop/preset/paramedic/brig_physician
desc = "A low-end laptop often used by brig physicians."
starting_files = list(new /datum/computer_file/program/secureye)
/obj/item/modular_computer/laptop/preset/paramedic/brig_physician/Initialize()
starting_files |= list(
new /datum/computer_file/program/secureye
)
. = ..()
/obj/item/modular_computer/laptop/preset/paramedic/mining_medic
desc = "A low-end laptop often used by mining medics. Comes with an upgraded network card to allow for use while off Station."
starting_components = list( /obj/item/computer_hardware/processor_unit/small,
/obj/item/stock_parts/cell/computer,
/obj/item/computer_hardware/hard_drive,
/obj/item/computer_hardware/network_card/advanced,
/obj/item/computer_hardware/card_slot)
/obj/item/modular_computer/laptop/preset/paramedic/mining_medic/Initialize()
starting_files |= list(
new /datum/computer_file/program/secureye/mining
)
. = ..()