diff --git a/code/game/machinery/requests_console_vr.dm b/code/game/machinery/requests_console_vr.dm new file mode 100644 index 0000000000..9e93691c2e --- /dev/null +++ b/code/game/machinery/requests_console_vr.dm @@ -0,0 +1,92 @@ +// 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 = 0 + +// 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 = "Janitor RC" + department = "Janitorial" + 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 = "Chief Engineer RC" + department = "Chief Engineer's Desk" + departmentType = RC_ASSIST|RC_INFO + announcementConsole = 1 + +/obj/machinery/requests_console/preset/cmo + name = "Chief Medical Officer RC" + department = "Chief Medical Officer's Desk" + departmentType = RC_ASSIST|RC_INFO + announcementConsole = 1 + +/obj/machinery/requests_console/preset/hos + name = "Head of Security RC" + department = "Head of Security's Desk" + departmentType = RC_ASSIST|RC_INFO + announcementConsole = 1 + +/obj/machinery/requests_console/preset/rd + name = "Research Director RC" + department = "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 = "AI RC" + department = "AI" + departmentType = RC_ASSIST|RC_INFO diff --git a/vorestation.dme b/vorestation.dme index 8f57a16178..0322bcfa78 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -586,6 +586,7 @@ #include "code\game\machinery\recharger.dm" #include "code\game\machinery\rechargestation.dm" #include "code\game\machinery\requests_console.dm" +#include "code\game\machinery\requests_console_vr.dm" #include "code\game\machinery\robot_fabricator.dm" #include "code\game\machinery\seed_extractor.dm" #include "code\game\machinery\Sleeper.dm"