mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
Gives mining medic a laptop to keep track of bodycams (#17854)
* Gives mining medic a laptop * upgraded network card
This commit is contained in:
@@ -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
|
||||
)
|
||||
. = ..()
|
||||
|
||||
Reference in New Issue
Block a user