From fce6b46d96b8e1e48d74418ba225984ff02d848c Mon Sep 17 00:00:00 2001 From: Casey Date: Sun, 13 Mar 2022 03:13:46 -0400 Subject: [PATCH] Merge pull request #12428 from VOREStation/upstream-merge-8416 [MIRROR] Improves RD access on Cynosure --- maps/cynosure/cynosure_jobs.dm | 55 ++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 maps/cynosure/cynosure_jobs.dm diff --git a/maps/cynosure/cynosure_jobs.dm b/maps/cynosure/cynosure_jobs.dm new file mode 100644 index 0000000000..d874f1f6cd --- /dev/null +++ b/maps/cynosure/cynosure_jobs.dm @@ -0,0 +1,55 @@ +// Pilots + +var/const/EXPLORER =(1<<14) + +var/const/access_explorer = 43 + +/datum/access/explorer + id = access_explorer + desc = "Explorer" + region = ACCESS_REGION_GENERAL + +//Cynosure Jobs + +/datum/department/planetside + name = DEPARTMENT_PLANET + color = "#555555" + sorting_order = 2 // Same as cargo in importance. + +/datum/job/explorer + title = "Explorer" + flag = EXPLORER + departments = list(DEPARTMENT_RESEARCH, DEPARTMENT_PLANET) + department_flag = MEDSCI + faction = "Station" + total_positions = 4 + spawn_positions = 4 + supervisors = "the Research Director" + selection_color = "#633D63" + economic_modifier = 4 + access = list(access_explorer, access_research) + minimal_access = list(access_explorer, access_research) + + outfit_type = /decl/hierarchy/outfit/job/explorer2 + job_description = "An Explorer searches for interesting things on the surface of Sif, and returns them to the station." + + alt_titles = list( + "Pilot" = /decl/hierarchy/outfit/job/pilot) + +/datum/job/rd + access = list(access_rd, access_heads, access_tox, access_genetics, access_morgue, + access_tox_storage, access_teleporter, access_sec_doors, + access_research, access_robotics, access_xenobiology, access_ai_upload, access_tech_storage, + access_RC_announce, access_keycard_auth, access_tcomsat, access_gateway, access_xenoarch, + access_network, access_maint_tunnels, access_explorer, access_eva, access_external_airlocks) + minimal_access = list(access_rd, access_heads, access_tox, access_genetics, access_morgue, + access_tox_storage, access_teleporter, access_sec_doors, + access_research, access_robotics, access_xenobiology, access_ai_upload, access_tech_storage, + access_RC_announce, access_keycard_auth, access_tcomsat, access_gateway, access_xenoarch, + access_network, access_maint_tunnels, access_explorer, access_eva, access_external_airlocks) + +/* + alt_titles = list( + "Explorer Technician" = /decl/hierarchy/outfit/job/explorer2/technician, + "Explorer Medic" = /decl/hierarchy/outfit/job/explorer2/medic) +*/