mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-22 08:01:06 +00:00
- rscadd: "Incompatible applications are no longer downloaded via the presets." - tweak: "Reduced/Adapted the size of various applications." - tweak: "The investigations / generic wristbounds are now enrolled aswell." - tweak: "Selecting a unenrolled device in the loadout no longer gives you the advanced version of it." - tweak: "Adapts the modular computer news browser to work with our news system"
75 lines
3.1 KiB
Plaintext
75 lines
3.1 KiB
Plaintext
/datum/gear/computer
|
|
display_name = "tablet"
|
|
path = /obj/item/modular_computer/tablet/preset/custom_loadout/cheap
|
|
sort_category = "Modular Computers"
|
|
cost = 2
|
|
|
|
/datum/gear/computer/laptop
|
|
display_name = "laptop computer"
|
|
path = /obj/item/modular_computer/laptop/preset
|
|
cost = 3
|
|
|
|
/datum/gear/computer/wristbound
|
|
display_name = "wristbound computer"
|
|
path = /obj/item/modular_computer/wristbound/preset/cheap/generic
|
|
|
|
/datum/gear/computer/wristbound/cargo
|
|
display_name = "wristbound computer (Cargo)"
|
|
path = /obj/item/modular_computer/wristbound/preset/advanced/cargo
|
|
allowed_roles = list("Cargo Technician", "Shaft Miner", "Quartermaster")
|
|
|
|
/datum/gear/computer/wristbound/engineering
|
|
display_name = "wristbound computer (Engineering)"
|
|
path = /obj/item/modular_computer/wristbound/preset/advanced/engineering
|
|
allowed_roles = list("Station Engineer", "Engineering Apprentince", "Atmospheric Technician", "Engineering Apprentice")
|
|
|
|
/datum/gear/computer/wristbound/medical
|
|
display_name = "wristbound computer (Medical)"
|
|
path = /obj/item/modular_computer/wristbound/preset/advanced/medical
|
|
allowed_roles = list("Physician", "Surgeon", "Medical Resident", "Pharmacist", "Psychiatrist", "Paramedic")
|
|
|
|
/datum/gear/computer/wristbound/security
|
|
display_name = "wristbound computer (Security)"
|
|
path = /obj/item/modular_computer/wristbound/preset/advanced/security
|
|
allowed_roles = list("Security Officer", "Warden", "Security Cadet")
|
|
|
|
/datum/gear/computer/wristbound/security/investigations
|
|
display_name = "wristbound computer (Security Investigations)"
|
|
path = /obj/item/modular_computer/wristbound/preset/advanced/security/investigations
|
|
allowed_roles = list("Detective", "Forensic Technician")
|
|
|
|
/datum/gear/computer/wristbound/security/research
|
|
display_name = "wristbound computer (Research)"
|
|
path = /obj/item/modular_computer/wristbound/preset/advanced/research
|
|
allowed_roles = list("Scientist", "Lab Assistant", "Roboticist", "Xenobiologist")
|
|
|
|
/datum/gear/computer/wristbound/ce
|
|
display_name = "wristbound computer (Chief Engineer)"
|
|
path = /obj/item/modular_computer/wristbound/preset/advanced/command/ce
|
|
allowed_roles = list("Chief Engineer")
|
|
|
|
/datum/gear/computer/wristbound/rd
|
|
display_name = "wristbound computer (Research Director)"
|
|
path = /obj/item/modular_computer/wristbound/preset/advanced/command/rd
|
|
allowed_roles = list("Research Director")
|
|
|
|
/datum/gear/computer/wristbound/cmo
|
|
display_name = "wristbound computer (Chief Medical Officer)"
|
|
path = /obj/item/modular_computer/wristbound/preset/advanced/command/cmo
|
|
allowed_roles = list("Chief Medical Officer")
|
|
|
|
/datum/gear/computer/wristbound/hop
|
|
display_name = "wristbound computer (Head of Personnel)"
|
|
path = /obj/item/modular_computer/wristbound/preset/advanced/command/hop
|
|
allowed_roles = list("Head of Personnel")
|
|
|
|
/datum/gear/computer/wristbound/hos
|
|
display_name = "wristbound computer (Head of Security)"
|
|
path = /obj/item/modular_computer/wristbound/preset/advanced/command/hos
|
|
allowed_roles = list("Head of Security")
|
|
|
|
/datum/gear/computer/wristbound/captain
|
|
display_name = "wristbound computer (Captain)"
|
|
path = /obj/item/modular_computer/wristbound/preset/advanced/command/captain
|
|
allowed_roles = list("Captain")
|