Files
CHOMPStation2/code/game/machinery/requests_console_vr.dm
CHOMPStation2StaffMirrorBot 3cfc33bfde [MIRROR] ports a bunch of grep checks from TG (#10361)
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
Co-authored-by: Cameron Lennox <killer65311@gmail.com>
2025-03-12 11:09:38 +01:00

99 lines
2.7 KiB
Plaintext

// Request Console Presets! Make mapping 400% easier!
// By using these presets we can rename the departments easily.
//Request Console Department Types
// # define RC_ASSIST 1 //Request Assistance
// # define RC_SUPPLY 2 //Request Supplies
// # define RC_INFO 4 //Relay Info
/obj/machinery/requests_console/preset
name = ""
department = ""
departmentType = ""
announcementConsole = TRUE
// Departments
/obj/machinery/requests_console/preset/cargo
name = "Cargo RC"
department = "Cargo Bay"
departmentType = RC_SUPPLY
/obj/machinery/requests_console/preset/security
name = "Security RC"
department = "Security"
departmentType = RC_ASSIST
/obj/machinery/requests_console/preset/engineering
name = "Engineering RC"
department = "Engineering"
departmentType = RC_ASSIST|RC_SUPPLY
/obj/machinery/requests_console/preset/atmos
name = "Atmospherics RC"
department = "Atmospherics"
departmentType = RC_ASSIST|RC_SUPPLY
/obj/machinery/requests_console/preset/medical
name = "Medical RC"
department = "Medical Department"
departmentType = RC_ASSIST|RC_SUPPLY
/obj/machinery/requests_console/preset/research
name = "Research RC"
department = "Research Department"
departmentType = RC_ASSIST|RC_SUPPLY
/obj/machinery/requests_console/preset/janitor
name = JOB_JANITOR + " RC"
department = JOB_JANITOR + "ial"
departmentType = RC_ASSIST
/obj/machinery/requests_console/preset/bridge
name = "Bridge RC"
department = "Bridge"
departmentType = RC_ASSIST|RC_INFO
announcementConsole = 1
// Heads
/obj/machinery/requests_console/preset/ce
name = JOB_CHIEF_ENGINEER + " RC"
department = JOB_CHIEF_ENGINEER + "'s Desk"
departmentType = RC_ASSIST|RC_INFO
announcementConsole = 1
/obj/machinery/requests_console/preset/cmo
name = JOB_CHIEF_MEDICAL_OFFICER + " RC"
department = JOB_CHIEF_MEDICAL_OFFICER + "'s Desk"
departmentType = RC_ASSIST|RC_INFO
announcementConsole = 1
/obj/machinery/requests_console/preset/hos
name = JOB_HEAD_OF_SECURITY + " RC"
department = JOB_HEAD_OF_SECURITY + "'s Desk"
departmentType = RC_ASSIST|RC_INFO
announcementConsole = 1
/obj/machinery/requests_console/preset/rd
name = JOB_RESEARCH_DIRECTOR + " RC"
department = JOB_RESEARCH_DIRECTOR +"'s Desk"
departmentType = RC_ASSIST|RC_INFO
announcementConsole = 1
/obj/machinery/requests_console/preset/captain
name = "Captain RC"
department = "Captain's Desk"
departmentType = RC_ASSIST|RC_INFO
announcementConsole = 1
/obj/machinery/requests_console/preset/ai
name = JOB_AI + " RC"
department = JOB_AI
departmentType = RC_ASSIST|RC_INFO
/obj/machinery/requests_console/preset/hop //yw edit
name = "Head of personnel RC"
department = "Head of Personnel's Desk"
departmentType = RC_ASSIST|RC_INFO
announcementConsole = 1