From 8b9f5e949a117761c01b2ae9a61bfc2af74a70fa Mon Sep 17 00:00:00 2001 From: Killian <49700375+KillianKirilenko@users.noreply.github.com> Date: Tue, 17 Mar 2020 15:11:28 +0000 Subject: [PATCH 01/23] security pilot basics --- code/datums/outfits/jobs/security_yw.dm | 5 ++++ code/game/jobs/access_datum_yw.dm | 6 +++++ code/game/jobs/job/security_yw.dm | 16 +++++++++++++ code/game/jobs/jobs.dm | 1 + .../loadout/loadout_accessories.dm | 14 +++++------ .../loadout/loadout_accessories_vr.dm | 14 +++++------ .../loadout/loadout_accessories_yw.dm | 9 ++++++++ .../preference_setup/loadout/loadout_eyes.dm | 4 ++-- .../loadout/loadout_eyes_yw.dm | 2 +- .../preference_setup/loadout/loadout_head.dm | 10 ++++---- .../preference_setup/loadout/loadout_shoes.dm | 2 +- .../preference_setup/loadout/loadout_suit.dm | 6 ++--- .../loadout/loadout_uniform.dm | 10 ++++---- .../loadout/loadout_uniform_vr.dm | 16 ++++++------- .../loadout/loadout_uniform_yw.dm | 23 ++++++++++++++++++- .../loadout/loadout_utility_vr.dm | 2 +- .../preference_setup/loadout/loadout_xeno.dm | 4 ++-- .../clothing/under/extrauniforms_yw.dm | 16 +++++++++++++ vorestation.dme | 3 +++ 19 files changed, 120 insertions(+), 43 deletions(-) create mode 100644 code/datums/outfits/jobs/security_yw.dm create mode 100644 code/game/jobs/job/security_yw.dm create mode 100644 code/modules/client/preference_setup/loadout/loadout_accessories_yw.dm diff --git a/code/datums/outfits/jobs/security_yw.dm b/code/datums/outfits/jobs/security_yw.dm new file mode 100644 index 0000000000..c5a878f26e --- /dev/null +++ b/code/datums/outfits/jobs/security_yw.dm @@ -0,0 +1,5 @@ +/decl/hierarchy/outfit/job/security/pilot + name = OUTFIT_JOB_NAME("Security Pilot") + uniform = /obj/item/clothing/under/rank/khi/sec/pilot + id_type = /obj/item/weapon/card/id/security + pda_type = /obj/item/device/pda/security \ No newline at end of file diff --git a/code/game/jobs/access_datum_yw.dm b/code/game/jobs/access_datum_yw.dm index 717a90635d..a2e3ad286c 100644 --- a/code/game/jobs/access_datum_yw.dm +++ b/code/game/jobs/access_datum_yw.dm @@ -1,3 +1,9 @@ +/var/const/access_secpilot = 51 +/datum/access/secpilot + id = access_secpilot + desc = "Security Flight Control" + region = ACCESS_REGION_SECURITY + /var/const/access_blueshield = 52 /datum/access/blueshield id = access_blueshield diff --git a/code/game/jobs/job/security_yw.dm b/code/game/jobs/job/security_yw.dm new file mode 100644 index 0000000000..0a24cab824 --- /dev/null +++ b/code/game/jobs/job/security_yw.dm @@ -0,0 +1,16 @@ +/datum/job/security/pilot + title = "Security Pilot" + flag = SECPILOT + department = "Security" + department_flag = ENGSEC + faction = "Station" + total_positions = 2 + spawn_positions = 2 + supervisors = "the head of security" + selection_color = "#601C1C" + economic_modifier = 5 + access = list(access_security, access_eva, access_sec_doors, access_brig, access_maint_tunnels, access_morgue, access_external_airlocks, access_secpilot) + minimal_access = list(access_security, access_eva, access_sec_doors, access_brig, access_maint_tunnels, access_external_airlocks, access_secpilot) + minimal_player_age = 7 + outfit_type = /decl/hierarchy/outfit/job/security/pilot +// alt_titles = list("Mech Operator","Rover Pilot") \ No newline at end of file diff --git a/code/game/jobs/jobs.dm b/code/game/jobs/jobs.dm index 21e6593fb5..ac2f22a217 100644 --- a/code/game/jobs/jobs.dm +++ b/code/game/jobs/jobs.dm @@ -12,6 +12,7 @@ var/const/ATMOSTECH =(1<<7) var/const/AI =(1<<8) var/const/CYBORG =(1<<9) var/const/BLUESHIELD =(1<<13) //YW addition +var/const/SECPILOT =(1<<14) //YW addition var/const/INTERN =(1<<15) //VOREStation Add var/const/MEDSCI =(1<<1) diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories.dm b/code/modules/client/preference_setup/loadout/loadout_accessories.dm index 05442e5208..2ef7687150 100644 --- a/code/modules/client/preference_setup/loadout/loadout_accessories.dm +++ b/code/modules/client/preference_setup/loadout/loadout_accessories.dm @@ -79,7 +79,7 @@ /datum/gear/accessory/holster display_name = "holster selection (Security, CD, HoP)" path = /obj/item/clothing/accessory/holster - allowed_roles = list("Colony Director", "Head of Personnel", "Security Officer", "Warden", "Head of Security","Detective","Blueshield Guard") + allowed_roles = list("Colony Director", "Head of Personnel", "Security Officer", "Warden", "Head of Security","Detective","Blueshield Guard","Security Pilot") /datum/gear/accessory/holster/New() ..() @@ -135,32 +135,32 @@ /datum/gear/accessory/brown_vest display_name = "webbing, brown" path = /obj/item/clothing/accessory/storage/brown_vest - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") /datum/gear/accessory/black_vest display_name = "webbing, black" path = /obj/item/clothing/accessory/storage/black_vest - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") /datum/gear/accessory/white_vest display_name = "webbing, white" path = /obj/item/clothing/accessory/storage/white_vest - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") /datum/gear/accessory/brown_drop_pouches display_name = "drop pouches, brown" path = /obj/item/clothing/accessory/storage/brown_drop_pouches - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") /datum/gear/accessory/black_drop_pouches display_name = "drop pouches, black" path = /obj/item/clothing/accessory/storage/black_drop_pouches - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") /datum/gear/accessory/white_drop_pouches display_name = "drop pouches, white" path = /obj/item/clothing/accessory/storage/white_drop_pouches - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") /datum/gear/accessory/fannypack display_name = "fannypack selection" diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm b/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm index 8ae13a2930..ea652686d4 100644 --- a/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm @@ -41,15 +41,15 @@ /datum/gear/accessory/holster display_name = "holster selection (Security, CD, HoP, Exploration)" - allowed_roles = list("Colony Director", "Head of Personnel", "Security Officer", "Warden", "Head of Security","Detective","Explorer","Pathfinder", "Blueshield Guard") + allowed_roles = list("Colony Director", "Head of Personnel", "Security Officer", "Warden", "Head of Security","Detective","Explorer","Pathfinder", "Blueshield Guard","Security Pilot") /datum/gear/accessory/brown_vest display_name = "webbing, brown (Eng, Sec, Med, Exploration, Miner)" - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard","Security Pilot") /datum/gear/accessory/black_vest display_name = "webbing, black (Eng, Sec, Med, Exploration, Miner)" - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard","Security Pilot") /datum/gear/accessory/white_vest display_name = "webbing, white (Medical)" @@ -57,11 +57,11 @@ /datum/gear/accessory/brown_drop_pouches display_name = "drop pouches, brown (Eng, Sec, Med, Exploration, Miner)" - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard","Security Pilot") /datum/gear/accessory/black_drop_pouches display_name = "drop pouches, black (Eng, Sec, Med, Exploration, Miner)" - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard","Security Pilot") /datum/gear/accessory/white_drop_pouches display_name = "drop pouches, white (Medical)" @@ -85,9 +85,9 @@ /datum/gear/accessory/pilotpin display_name = "pilot qualification pin" - description = "An iron pin denoting the qualification to fly SCG spacecraft." + description = "An iron pin denoting the qualification to fly USG spacecraft." path = /obj/item/clothing/accessory/solgov/specialty/pilot - allowed_roles = list("Pathfinder", "Pilot", "Field Medic") + allowed_roles = list("Pathfinder", "Pilot", "Field Medic","Security Pilot") /datum/gear/accessory/flops display_name = "drop straps" diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories_yw.dm b/code/modules/client/preference_setup/loadout/loadout_accessories_yw.dm new file mode 100644 index 0000000000..3784ccd445 --- /dev/null +++ b/code/modules/client/preference_setup/loadout/loadout_accessories_yw.dm @@ -0,0 +1,9 @@ +/datum/gear/accessory/pilot_webbing1 + path = /obj/item/clothing/accessory/storage/webbing/pilot1 + display_name = "harness and webbing (Sec, Exploration)" + allowed_roles = list("Security Officer","Detective","Head of Security","Warden","Explorer","Pathfinder","Blueshield Guard","Pilot","Security Pilot") + +/datum/gear/accessory/pilot_webbing2 + path = /obj/item/clothing/accessory/storage/webbing/pilot2 + display_name = "harness and webbing, alt. (Sec, Exploration)" + allowed_roles = list("Security Officer","Detective","Head of Security","Warden","Explorer","Pathfinder","Blueshield Guard","Pilot","Security Pilot") \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_eyes.dm b/code/modules/client/preference_setup/loadout/loadout_eyes.dm index 4c3b1378d2..79875aa291 100644 --- a/code/modules/client/preference_setup/loadout/loadout_eyes.dm +++ b/code/modules/client/preference_setup/loadout/loadout_eyes.dm @@ -36,7 +36,7 @@ /datum/gear/eyes/security display_name = "Security HUD (Security)" path = /obj/item/clothing/glasses/hud/security - allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard") + allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard","Security Pilot") /datum/gear/eyes/security/prescriptionsec display_name = "Security HUD, prescription (Security)" @@ -108,7 +108,7 @@ /datum/gear/eyes/sun display_name = "Sunglasses (Security/Command)" path = /obj/item/clothing/glasses/sunglasses - allowed_roles = list("Security Officer","Head of Security","Warden","Colony Director","Head of Personnel","Quartermaster","Internal Affairs Agent","Detective","Blueshield Guard") + allowed_roles = list("Security Officer","Head of Security","Warden","Colony Director","Head of Personnel","Quartermaster","Internal Affairs Agent","Detective","Blueshield Guard","Security Pilot") /datum/gear/eyes/sun/shades display_name = "Sunglasses, fat (Security/Command)" diff --git a/code/modules/client/preference_setup/loadout/loadout_eyes_yw.dm b/code/modules/client/preference_setup/loadout/loadout_eyes_yw.dm index 2b1ec0f025..0e2e714725 100644 --- a/code/modules/client/preference_setup/loadout/loadout_eyes_yw.dm +++ b/code/modules/client/preference_setup/loadout/loadout_eyes_yw.dm @@ -1,7 +1,7 @@ /datum/gear/eyes/arglasses/sec display_name = "AR-S glasses (Sec, BSG)" path = /obj/item/clothing/glasses/omnihud/sec - allowed_roles = list("Security Officer","Head of Security","Warden","Detective","Blueshield Guard") + allowed_roles = list("Security Officer","Head of Security","Warden","Detective","Blueshield Guard","Security Pilot") /datum/gear/eyes/arglasses/eng display_name = "AR-E glasses (Eng)" diff --git a/code/modules/client/preference_setup/loadout/loadout_head.dm b/code/modules/client/preference_setup/loadout/loadout_head.dm index 7c2a327b38..ec04a5e7fa 100644 --- a/code/modules/client/preference_setup/loadout/loadout_head.dm +++ b/code/modules/client/preference_setup/loadout/loadout_head.dm @@ -19,7 +19,7 @@ /datum/gear/head/beret/bsec display_name = "beret, navy (officer)" path = /obj/item/clothing/head/beret/sec/navy/officer - allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard") + allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard","Security Pilot") /datum/gear/head/beret/bsec_warden display_name = "beret, navy (warden)" @@ -34,7 +34,7 @@ /datum/gear/head/beret/csec display_name = "beret, corporate (officer)" path = /obj/item/clothing/head/beret/sec/corporate/officer - allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard") + allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard","Security Pilot") /datum/gear/head/beret/csec_warden display_name = "beret, corporate (warden)" @@ -57,7 +57,7 @@ /datum/gear/head/beret/sec display_name = "beret, red (security)" path = /obj/item/clothing/head/beret/sec - allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard") + allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard","Security Pilot") /datum/gear/head/cap display_name = "cap, black" @@ -78,7 +78,7 @@ /datum/gear/head/cap/corp display_name = "cap, corporate (Security)" path = /obj/item/clothing/head/soft/sec/corp - allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard") + allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard","Security Pilot") /datum/gear/head/cap/green display_name = "cap, green" @@ -107,7 +107,7 @@ /datum/gear/head/cap/sec display_name = "cap, security (Security)" path = /obj/item/clothing/head/soft/sec - allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard") + allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard","Security Pilot") /datum/gear/head/cap/yellow display_name = "cap, yellow" diff --git a/code/modules/client/preference_setup/loadout/loadout_shoes.dm b/code/modules/client/preference_setup/loadout/loadout_shoes.dm index bb6f50e9f5..c26f9da4bd 100644 --- a/code/modules/client/preference_setup/loadout/loadout_shoes.dm +++ b/code/modules/client/preference_setup/loadout/loadout_shoes.dm @@ -186,7 +186,7 @@ /datum/gear/shoes/boots/winter/security display_name = "security winter boots" path = /obj/item/clothing/shoes/boots/winter/security - allowed_roles = list("Security Officer", "Head of Security", "Warden", "Detective","Blueshield Guard") + allowed_roles = list("Security Officer", "Head of Security", "Warden", "Detective","Blueshield Guard","Security Pilot") /datum/gear/shoes/boots/winter/science display_name = "science winter boots" diff --git a/code/modules/client/preference_setup/loadout/loadout_suit.dm b/code/modules/client/preference_setup/loadout/loadout_suit.dm index c1c242e4f6..fff6406a1c 100644 --- a/code/modules/client/preference_setup/loadout/loadout_suit.dm +++ b/code/modules/client/preference_setup/loadout/loadout_suit.dm @@ -257,7 +257,7 @@ datum/gear/suit/duster /datum/gear/suit/roles/poncho/cloak/security display_name = "cloak, security" path = /obj/item/clothing/accessory/poncho/roles/cloak/security - allowed_roles = list("Head of Security","Detective","Warden","Security Officer","Blueshield Guard") + allowed_roles = list("Head of Security","Detective","Warden","Security Officer","Blueshield Guard","Security Pilot") /datum/gear/suit/roles/poncho/cloak/service display_name = "cloak, service" @@ -340,7 +340,7 @@ datum/gear/suit/duster /datum/gear/suit/wintercoat/security display_name = "winter coat, security" path = /obj/item/clothing/suit/storage/hooded/wintercoat/security - allowed_roles = list("Security Officer", "Head of Security", "Warden", "Detective","Blueshield Guard") + allowed_roles = list("Security Officer", "Head of Security", "Warden", "Detective","Blueshield Guard","Security Pilot") /datum/gear/suit/wintercoat/medical display_name = "winter coat, medical" @@ -478,7 +478,7 @@ datum/gear/suit/duster /datum/gear/suit/snowsuit/security display_name = "snowsuit, security" path = /obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/security - allowed_roles = list("Security Officer", "Head of Security", "Warden", "Detective","Blueshield Guard") + allowed_roles = list("Security Officer", "Head of Security", "Warden", "Detective","Blueshield Guard","Security Pilot") /datum/gear/suit/snowsuit/medical display_name = "snowsuit, medical" diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform.dm b/code/modules/client/preference_setup/loadout/loadout_uniform.dm index a4451e4392..480106effa 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform.dm @@ -158,7 +158,7 @@ /datum/gear/uniform/job_skirt/security display_name = "skirt, security" path = /obj/item/clothing/under/rank/security/skirt - allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer","Blueshield Guard") + allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer","Blueshield Guard","Security Pilot") /datum/gear/uniform/job_skirt/head_of_security display_name = "skirt, hos" @@ -173,7 +173,7 @@ /datum/gear/uniform/job_turtle/security display_name = "turtleneck, security" path = /obj/item/clothing/under/rank/security/turtleneck - allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer") + allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer","Security Pilot") /datum/gear/uniform/job_turtle/engineering display_name = "turtleneck, engineering" @@ -307,7 +307,7 @@ /datum/gear/uniform/corpsecsuit display_name = "uniform, corporate (Security)" path = /obj/item/clothing/under/rank/security/corp - allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard") + allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard","Security Pilot") /datum/gear/uniform/corpwarsuit display_name = "uniform, corporate (Warden)" @@ -333,7 +333,7 @@ /datum/gear/uniform/navysecsuit display_name = "uniform, navy blue (Security)" path = /obj/item/clothing/under/rank/security/navyblue - allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard") + allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard","Security Pilot") /datum/gear/uniform/navywarsuit display_name = "uniform, navy blue (Warden)" @@ -432,7 +432,7 @@ /datum/gear/uniform/pcrc display_name = "uniform, PCRC (Security)" path = /obj/item/clothing/under/pcrc - allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard") + allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard","Security Pilot") /datum/gear/uniform/brandsuit/grayson display_name = "outfit, grayson" diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm index 4768998c8d..23140edef0 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm @@ -16,7 +16,7 @@ /datum/gear/uniform/job_khi/sec display_name = "khi uniform, sec" path = /obj/item/clothing/under/rank/khi/sec - allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer","Blueshield Guard") + allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer","Blueshield Guard","Security Pilot") /datum/gear/uniform/job_khi/med display_name = "khi uniform, med" @@ -37,7 +37,7 @@ /datum/gear/suit/job_fed/sec display_name = "fed uniform, sec" path = /obj/item/clothing/suit/storage/fluff/fedcoat - allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer","Blueshield Guard") + allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer","Blueshield Guard","Security Pilot") /datum/gear/suit/job_fed/medsci display_name = "fed uniform, med/sci" @@ -64,7 +64,7 @@ /datum/gear/uniform/job_trek/eng/tos display_name = "TOS uniform, eng/sec" path = /obj/item/clothing/under/rank/trek/engsec - allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard") + allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard","Security Pilot") //TNG /datum/gear/uniform/job_trek/cmd/tng @@ -80,7 +80,7 @@ /datum/gear/uniform/job_trek/eng/tng display_name = "TNG uniform, eng/sec" path = /obj/item/clothing/under/rank/trek/engsec/next - allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard") + allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard","Security Pilot") //VOY /datum/gear/uniform/job_trek/cmd/voy @@ -96,7 +96,7 @@ /datum/gear/uniform/job_trek/eng/voy display_name = "VOY uniform, eng/sec" path = /obj/item/clothing/under/rank/trek/engsec/voy - allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard") + allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard","Security Pilot") //DS9 @@ -106,7 +106,7 @@ allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director", "Chief Medical Officer","Medical Doctor","Chemist","Paramedic","Geneticist", "Scientist","Roboticist","Xenobiologist","Atmospheric Technician", - "Station Engineer","Warden","Detective","Security Officer", "Pathfinder", "Explorer", "Field Medic", "Blueshield Guard") + "Station Engineer","Warden","Detective","Security Officer", "Pathfinder", "Explorer", "Field Medic", "Blueshield Guard","Security Pilot") /datum/gear/uniform/job_trek/cmd/ds9 @@ -122,7 +122,7 @@ /datum/gear/uniform/job_trek/eng/ds9 display_name = "DS9 uniform, eng/sec" path = /obj/item/clothing/under/rank/trek/engsec/ds9 - allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard") + allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard","Security Pilot") //ENT @@ -139,7 +139,7 @@ /datum/gear/uniform/job_trek/eng/ent display_name = "ENT uniform, eng/sec" path = /obj/item/clothing/under/rank/trek/engsec/ent - allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard") + allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard","Security Pilot") /* Swimsuits */ diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform_yw.dm b/code/modules/client/preference_setup/loadout/loadout_uniform_yw.dm index 0fef98d933..b635994995 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform_yw.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform_yw.dm @@ -18,4 +18,25 @@ /datum/gear/uniform/redvictdress description = "A victorian style dress, fancy!" display_name = "Victorian Dress, Red" - path = /obj/item/clothing/under/yw/victsuit/victdress/red \ No newline at end of file + path = /obj/item/clothing/under/yw/victsuit/victdress/red + +/datum/gear/uniform/pilot1 + display_name = "NT Pilot Uniform" + description = "A blue and grey NanoTrasen flight suit. Warm and practical, it feels cozy. Includes harness and webbing." + path = /obj/item/clothing/under/rank/pilot1 + cost = 2 //base cost 1 + accessory 1 + allowed_roles = list("Pilot","Security Pilot") + +/datum/gear/uniform/pilot2 + display_name = "NT Pilot Uniform, Alt." + description = "A dark blue NanoTrasen flight suit. Warm and practical, several patches are scattered across it. Includes harness and webbing." + path = /obj/item/clothing/under/rank/pilot2 + cost = 2 //base cost 1 + accessory 1 + allowed_roles = list("Pilot","Security Pilot") + +/datum/gear/uniform/combatpilot + display_name = "Security Pilot Uniform" + description = "A lightweight uniform intended for vehicle and powersuit operators, designed to allow free movement and maximum comfort in hot, cramped cockpits. Comes prefitted with a harness and webbing for gear." + path = /obj/item/clothing/under/rank/khi/sec/pilot + cost = 2 //base cost 1 + accessory 1 + allowed_roles = list("Security Pilot") \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_utility_vr.dm b/code/modules/client/preference_setup/loadout/loadout_utility_vr.dm index 0df769d847..02a7916164 100644 --- a/code/modules/client/preference_setup/loadout/loadout_utility_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_utility_vr.dm @@ -44,7 +44,7 @@ /datum/gear/utility/dufflebag/sec display_name = "security Dufflebag" path = /obj/item/weapon/storage/backpack/dufflebag/sec - allowed_roles = list("Head of Security","Warden","Detective","Security Officer","Blueshield Guard") + allowed_roles = list("Head of Security","Warden","Detective","Security Officer","Blueshield Guard","Security Pilot") /datum/gear/utility/dufflebag/eng display_name = "engineering dufflebag" diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno.dm b/code/modules/client/preference_setup/loadout/loadout_xeno.dm index 2a60cf94a9..da56920e51 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno.dm @@ -210,7 +210,7 @@ /datum/gear/uniform/dept/undercoat/security display_name = "security undercoat (Teshari)" path = /obj/item/clothing/under/seromi/undercoat/jobs/sec - allowed_roles = list("Head of Security","Detective","Warden","Security Officer",) + allowed_roles = list("Head of Security","Detective","Warden","Security Officer","Security Pilot") /datum/gear/uniform/dept/undercoat/service display_name = "service undercoat (Teshari)" @@ -299,7 +299,7 @@ /datum/gear/suit/dept/cloak/security display_name = "security cloak (Teshari)" path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/sec - allowed_roles = list("Head of Security","Detective","Warden","Security Officer",) + allowed_roles = list("Head of Security","Detective","Warden","Security Officer","Security Pilot") /datum/gear/suit/dept/cloak/service display_name = "service cloak (Teshari)" diff --git a/code/modules/clothing/under/extrauniforms_yw.dm b/code/modules/clothing/under/extrauniforms_yw.dm index 49c9968b8f..612bcede4e 100644 --- a/code/modules/clothing/under/extrauniforms_yw.dm +++ b/code/modules/clothing/under/extrauniforms_yw.dm @@ -19,6 +19,22 @@ item_state = "blueshield2" armor = list(melee = 15, bullet = 10, laser = 10,energy = 5, bomb = 15, bio = 0, rad = 0) +/obj/item/clothing/accessory/storage/webbing/combatpilot //redefined to change the name and keep it loaded in the event the sc files are disabled in future + name = "combat pilot harness" + desc = "Sturdy mess of black synthcotton belts and buckles." + icon_state = "pilot_webbing2" + sprite_sheets = list( + "Teshari" = 'icons/mob/species/seromi/ties.dmi' + ) + +/obj/item/clothing/under/rank/khi/sec/pilot //yes, we're inheriting from the khi version; that one has full rolldown sprites + name = "security pilot uniform" + desc = "A lightweight uniform intended for vehicle and powersuit operators, designed to allow free movement and maximum comfort in hot, cramped cockpits. Comes prefitted with a harness and webbing for gear." + armor = list(melee = 0, bullet = 10, laser = 10, energy = 0, bomb = 10, bio = 0, rad = 0) + //we probably won't get hit by melee attacks as a pilot, but logically you'd want protection against anything that might penetrate the armor + starting_accessories = list(/obj/item/clothing/accessory/storage/webbing/combatpilot) + //come prefitted with some snappy extra webbing + /obj/item/clothing/under/yw/rank/security/formal name = "security suit" desc = "A formal security suit for officers complete with nanotrasen belt buckle." diff --git a/vorestation.dme b/vorestation.dme index b5bc55dd25..d1c459aec6 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -373,6 +373,7 @@ #include "code\datums\outfits\jobs\misc.dm" #include "code\datums\outfits\jobs\science.dm" #include "code\datums\outfits\jobs\security.dm" +#include "code\datums\outfits\jobs\security_yw.dm" #include "code\datums\outfits\jobs\special_vr.dm" #include "code\datums\outfits\jobs\YW.dm" #include "code\datums\outfits\military\fleet.dm" @@ -736,6 +737,7 @@ #include "code\game\jobs\job\science_vr.dm" #include "code\game\jobs\job\security.dm" #include "code\game\jobs\job\security_vr.dm" +#include "code\game\jobs\job\security_yw.dm" #include "code\game\jobs\job\silicon.dm" #include "code\game\jobs\job\silicon_vr.dm" #include "code\game\jobs\job\special_vr.dm" @@ -1702,6 +1704,7 @@ #include "code\modules\client\preference_setup\loadout\loadout.dm" #include "code\modules\client\preference_setup\loadout\loadout_accessories.dm" #include "code\modules\client\preference_setup\loadout\loadout_accessories_vr.dm" +#include "code\modules\client\preference_setup\loadout\loadout_accessories_yw.dm" #include "code\modules\client\preference_setup\loadout\loadout_cosmetics.dm" #include "code\modules\client\preference_setup\loadout\loadout_ears.dm" #include "code\modules\client\preference_setup\loadout\loadout_eyes.dm" From 9780a7c6adb6d3f8b7e53395ff1bbe7234148487 Mon Sep 17 00:00:00 2001 From: Killian <49700375+KillianKirilenko@users.noreply.github.com> Date: Tue, 17 Mar 2020 15:15:00 +0000 Subject: [PATCH 02/23] secpilot access for hos+warden --- code/game/jobs/job/security.dm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/code/game/jobs/job/security.dm b/code/game/jobs/job/security.dm index a4546f066d..f6e1dd5462 100644 --- a/code/game/jobs/job/security.dm +++ b/code/game/jobs/job/security.dm @@ -14,11 +14,11 @@ access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, access_forensics_lockers, access_morgue, access_maint_tunnels, access_all_personal_lockers, access_research, access_engine, access_mining, access_medical, access_construction, access_mailsorting, - access_heads, access_hos, access_RC_announce, access_keycard_auth, access_gateway, access_external_airlocks) + access_heads, access_hos, access_RC_announce, access_keycard_auth, access_gateway, access_external_airlocks, access_secpilot) minimal_access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, access_forensics_lockers, access_morgue, access_maint_tunnels, access_all_personal_lockers, access_research, access_engine, access_mining, access_medical, access_construction, access_mailsorting, - access_heads, access_hos, access_RC_announce, access_keycard_auth, access_gateway, access_external_airlocks) + access_heads, access_hos, access_RC_announce, access_keycard_auth, access_gateway, access_external_airlocks, access_secpilot) minimum_character_age = 25 minimal_player_age = 14 @@ -43,8 +43,8 @@ supervisors = "the head of security" selection_color = "#601C1C" economic_modifier = 5 - access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, access_maint_tunnels, access_morgue, access_external_airlocks) - minimal_access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, access_maint_tunnels, access_external_airlocks) + access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, access_maint_tunnels, access_morgue, access_external_airlocks, access_secpilot) + minimal_access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, access_maint_tunnels, access_external_airlocks, access_secpilot) minimal_player_age = 5 outfit_type = /decl/hierarchy/outfit/job/security/warden From 8d2ec5f7fa62b83cb2eabf2283ffc3072e3efb21 Mon Sep 17 00:00:00 2001 From: Killian <49700375+KillianKirilenko@users.noreply.github.com> Date: Tue, 17 Mar 2020 15:44:23 +0000 Subject: [PATCH 03/23] loadout comments, improved warden/hos access modification --- code/game/jobs/job/security.dm | 8 +++--- code/game/jobs/job/security_yw.dm | 16 +++++++++++ .../loadout/loadout_accessories.dm | 14 +++++----- .../loadout/loadout_accessories_vr.dm | 12 ++++---- .../preference_setup/loadout/loadout_eyes.dm | 4 +-- .../preference_setup/loadout/loadout_head.dm | 10 +++---- .../preference_setup/loadout/loadout_shoes.dm | 2 +- .../preference_setup/loadout/loadout_suit.dm | 6 ++-- .../loadout/loadout_uniform.dm | 10 +++---- .../loadout/loadout_uniform_vr.dm | 28 +++++++++---------- .../loadout/loadout_utility_vr.dm | 2 +- .../preference_setup/loadout/loadout_xeno.dm | 4 +-- 12 files changed, 66 insertions(+), 50 deletions(-) diff --git a/code/game/jobs/job/security.dm b/code/game/jobs/job/security.dm index f6e1dd5462..a4546f066d 100644 --- a/code/game/jobs/job/security.dm +++ b/code/game/jobs/job/security.dm @@ -14,11 +14,11 @@ access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, access_forensics_lockers, access_morgue, access_maint_tunnels, access_all_personal_lockers, access_research, access_engine, access_mining, access_medical, access_construction, access_mailsorting, - access_heads, access_hos, access_RC_announce, access_keycard_auth, access_gateway, access_external_airlocks, access_secpilot) + access_heads, access_hos, access_RC_announce, access_keycard_auth, access_gateway, access_external_airlocks) minimal_access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, access_forensics_lockers, access_morgue, access_maint_tunnels, access_all_personal_lockers, access_research, access_engine, access_mining, access_medical, access_construction, access_mailsorting, - access_heads, access_hos, access_RC_announce, access_keycard_auth, access_gateway, access_external_airlocks, access_secpilot) + access_heads, access_hos, access_RC_announce, access_keycard_auth, access_gateway, access_external_airlocks) minimum_character_age = 25 minimal_player_age = 14 @@ -43,8 +43,8 @@ supervisors = "the head of security" selection_color = "#601C1C" economic_modifier = 5 - access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, access_maint_tunnels, access_morgue, access_external_airlocks, access_secpilot) - minimal_access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, access_maint_tunnels, access_external_airlocks, access_secpilot) + access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, access_maint_tunnels, access_morgue, access_external_airlocks) + minimal_access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, access_maint_tunnels, access_external_airlocks) minimal_player_age = 5 outfit_type = /decl/hierarchy/outfit/job/security/warden diff --git a/code/game/jobs/job/security_yw.dm b/code/game/jobs/job/security_yw.dm index 0a24cab824..ad5545361e 100644 --- a/code/game/jobs/job/security_yw.dm +++ b/code/game/jobs/job/security_yw.dm @@ -1,3 +1,19 @@ +/datum/job/hos + disallow_jobhop = TRUE + + access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, + access_forensics_lockers, access_morgue, access_maint_tunnels, access_all_personal_lockers, + access_research, access_engine, access_mining, access_construction, access_mailsorting, + access_heads, access_hos, access_RC_announce, access_keycard_auth, access_gateway, access_external_airlocks, access_secpilot) + minimal_access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, + access_forensics_lockers, access_morgue, access_maint_tunnels, access_all_personal_lockers, + access_research, access_engine, access_mining, access_construction, access_mailsorting, + access_heads, access_hos, access_RC_announce, access_keycard_auth, access_gateway, access_external_airlocks, access_secpilot) + +/datum/job/warden + access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, access_maint_tunnels, access_morgue, access_external_airlocks, access_secpilot) + minimal_access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, access_maint_tunnels, access_external_airlocks, access_secpilot) + /datum/job/security/pilot title = "Security Pilot" flag = SECPILOT diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories.dm b/code/modules/client/preference_setup/loadout/loadout_accessories.dm index 2ef7687150..242dc0b777 100644 --- a/code/modules/client/preference_setup/loadout/loadout_accessories.dm +++ b/code/modules/client/preference_setup/loadout/loadout_accessories.dm @@ -79,7 +79,7 @@ /datum/gear/accessory/holster display_name = "holster selection (Security, CD, HoP)" path = /obj/item/clothing/accessory/holster - allowed_roles = list("Colony Director", "Head of Personnel", "Security Officer", "Warden", "Head of Security","Detective","Blueshield Guard","Security Pilot") + allowed_roles = list("Colony Director", "Head of Personnel", "Security Officer", "Warden", "Head of Security","Detective","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/accessory/holster/New() ..() @@ -135,32 +135,32 @@ /datum/gear/accessory/brown_vest display_name = "webbing, brown" path = /obj/item/clothing/accessory/storage/brown_vest - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/accessory/black_vest display_name = "webbing, black" path = /obj/item/clothing/accessory/storage/black_vest - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/accessory/white_vest display_name = "webbing, white" path = /obj/item/clothing/accessory/storage/white_vest - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/accessory/brown_drop_pouches display_name = "drop pouches, brown" path = /obj/item/clothing/accessory/storage/brown_drop_pouches - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/accessory/black_drop_pouches display_name = "drop pouches, black" path = /obj/item/clothing/accessory/storage/black_drop_pouches - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/accessory/white_drop_pouches display_name = "drop pouches, white" path = /obj/item/clothing/accessory/storage/white_drop_pouches - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/accessory/fannypack display_name = "fannypack selection" diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm b/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm index ea652686d4..ca65595688 100644 --- a/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm @@ -41,15 +41,15 @@ /datum/gear/accessory/holster display_name = "holster selection (Security, CD, HoP, Exploration)" - allowed_roles = list("Colony Director", "Head of Personnel", "Security Officer", "Warden", "Head of Security","Detective","Explorer","Pathfinder", "Blueshield Guard","Security Pilot") + allowed_roles = list("Colony Director", "Head of Personnel", "Security Officer", "Warden", "Head of Security","Detective","Explorer","Pathfinder", "Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/accessory/brown_vest display_name = "webbing, brown (Eng, Sec, Med, Exploration, Miner)" - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard","Security Pilot") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/accessory/black_vest display_name = "webbing, black (Eng, Sec, Med, Exploration, Miner)" - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard","Security Pilot") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/accessory/white_vest display_name = "webbing, white (Medical)" @@ -57,11 +57,11 @@ /datum/gear/accessory/brown_drop_pouches display_name = "drop pouches, brown (Eng, Sec, Med, Exploration, Miner)" - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard","Security Pilot") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/accessory/black_drop_pouches display_name = "drop pouches, black (Eng, Sec, Med, Exploration, Miner)" - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard","Security Pilot") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/accessory/white_drop_pouches display_name = "drop pouches, white (Medical)" @@ -87,7 +87,7 @@ display_name = "pilot qualification pin" description = "An iron pin denoting the qualification to fly USG spacecraft." path = /obj/item/clothing/accessory/solgov/specialty/pilot - allowed_roles = list("Pathfinder", "Pilot", "Field Medic","Security Pilot") + allowed_roles = list("Pathfinder", "Pilot", "Field Medic","Security Pilot") //YW ADDITIONS /datum/gear/accessory/flops display_name = "drop straps" diff --git a/code/modules/client/preference_setup/loadout/loadout_eyes.dm b/code/modules/client/preference_setup/loadout/loadout_eyes.dm index 79875aa291..db4843c57f 100644 --- a/code/modules/client/preference_setup/loadout/loadout_eyes.dm +++ b/code/modules/client/preference_setup/loadout/loadout_eyes.dm @@ -36,7 +36,7 @@ /datum/gear/eyes/security display_name = "Security HUD (Security)" path = /obj/item/clothing/glasses/hud/security - allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard","Security Pilot") + allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/eyes/security/prescriptionsec display_name = "Security HUD, prescription (Security)" @@ -108,7 +108,7 @@ /datum/gear/eyes/sun display_name = "Sunglasses (Security/Command)" path = /obj/item/clothing/glasses/sunglasses - allowed_roles = list("Security Officer","Head of Security","Warden","Colony Director","Head of Personnel","Quartermaster","Internal Affairs Agent","Detective","Blueshield Guard","Security Pilot") + allowed_roles = list("Security Officer","Head of Security","Warden","Colony Director","Head of Personnel","Quartermaster","Internal Affairs Agent","Detective","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/eyes/sun/shades display_name = "Sunglasses, fat (Security/Command)" diff --git a/code/modules/client/preference_setup/loadout/loadout_head.dm b/code/modules/client/preference_setup/loadout/loadout_head.dm index ec04a5e7fa..ed110210b6 100644 --- a/code/modules/client/preference_setup/loadout/loadout_head.dm +++ b/code/modules/client/preference_setup/loadout/loadout_head.dm @@ -19,7 +19,7 @@ /datum/gear/head/beret/bsec display_name = "beret, navy (officer)" path = /obj/item/clothing/head/beret/sec/navy/officer - allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard","Security Pilot") + allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/head/beret/bsec_warden display_name = "beret, navy (warden)" @@ -34,7 +34,7 @@ /datum/gear/head/beret/csec display_name = "beret, corporate (officer)" path = /obj/item/clothing/head/beret/sec/corporate/officer - allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard","Security Pilot") + allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/head/beret/csec_warden display_name = "beret, corporate (warden)" @@ -57,7 +57,7 @@ /datum/gear/head/beret/sec display_name = "beret, red (security)" path = /obj/item/clothing/head/beret/sec - allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard","Security Pilot") + allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/head/cap display_name = "cap, black" @@ -78,7 +78,7 @@ /datum/gear/head/cap/corp display_name = "cap, corporate (Security)" path = /obj/item/clothing/head/soft/sec/corp - allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard","Security Pilot") + allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/head/cap/green display_name = "cap, green" @@ -107,7 +107,7 @@ /datum/gear/head/cap/sec display_name = "cap, security (Security)" path = /obj/item/clothing/head/soft/sec - allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard","Security Pilot") + allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/head/cap/yellow display_name = "cap, yellow" diff --git a/code/modules/client/preference_setup/loadout/loadout_shoes.dm b/code/modules/client/preference_setup/loadout/loadout_shoes.dm index c26f9da4bd..72c6cc7a97 100644 --- a/code/modules/client/preference_setup/loadout/loadout_shoes.dm +++ b/code/modules/client/preference_setup/loadout/loadout_shoes.dm @@ -186,7 +186,7 @@ /datum/gear/shoes/boots/winter/security display_name = "security winter boots" path = /obj/item/clothing/shoes/boots/winter/security - allowed_roles = list("Security Officer", "Head of Security", "Warden", "Detective","Blueshield Guard","Security Pilot") + allowed_roles = list("Security Officer", "Head of Security", "Warden", "Detective","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/shoes/boots/winter/science display_name = "science winter boots" diff --git a/code/modules/client/preference_setup/loadout/loadout_suit.dm b/code/modules/client/preference_setup/loadout/loadout_suit.dm index fff6406a1c..103e0c7cc3 100644 --- a/code/modules/client/preference_setup/loadout/loadout_suit.dm +++ b/code/modules/client/preference_setup/loadout/loadout_suit.dm @@ -257,7 +257,7 @@ datum/gear/suit/duster /datum/gear/suit/roles/poncho/cloak/security display_name = "cloak, security" path = /obj/item/clothing/accessory/poncho/roles/cloak/security - allowed_roles = list("Head of Security","Detective","Warden","Security Officer","Blueshield Guard","Security Pilot") + allowed_roles = list("Head of Security","Detective","Warden","Security Officer","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/suit/roles/poncho/cloak/service display_name = "cloak, service" @@ -340,7 +340,7 @@ datum/gear/suit/duster /datum/gear/suit/wintercoat/security display_name = "winter coat, security" path = /obj/item/clothing/suit/storage/hooded/wintercoat/security - allowed_roles = list("Security Officer", "Head of Security", "Warden", "Detective","Blueshield Guard","Security Pilot") + allowed_roles = list("Security Officer", "Head of Security", "Warden", "Detective","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/suit/wintercoat/medical display_name = "winter coat, medical" @@ -473,7 +473,7 @@ datum/gear/suit/duster /datum/gear/suit/snowsuit/command display_name = "snowsuit, command" path = /obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/command - allowed_roles = list("Colony Director","Research Director","Head of Personnel","Head of Security","Chief Engineer","Command Secretary","Blueshield Guard") + allowed_roles = list("Colony Director","Research Director","Head of Personnel","Head of Security","Chief Engineer","Command Secretary","Blueshield Guard") //YW ADDITIONS /datum/gear/suit/snowsuit/security display_name = "snowsuit, security" diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform.dm b/code/modules/client/preference_setup/loadout/loadout_uniform.dm index 480106effa..b5be918c11 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform.dm @@ -158,7 +158,7 @@ /datum/gear/uniform/job_skirt/security display_name = "skirt, security" path = /obj/item/clothing/under/rank/security/skirt - allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer","Blueshield Guard","Security Pilot") + allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/uniform/job_skirt/head_of_security display_name = "skirt, hos" @@ -173,7 +173,7 @@ /datum/gear/uniform/job_turtle/security display_name = "turtleneck, security" path = /obj/item/clothing/under/rank/security/turtleneck - allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer","Security Pilot") + allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer", "Security Pilot") //YW ADDITIONS /datum/gear/uniform/job_turtle/engineering display_name = "turtleneck, engineering" @@ -307,7 +307,7 @@ /datum/gear/uniform/corpsecsuit display_name = "uniform, corporate (Security)" path = /obj/item/clothing/under/rank/security/corp - allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard","Security Pilot") + allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/uniform/corpwarsuit display_name = "uniform, corporate (Warden)" @@ -333,7 +333,7 @@ /datum/gear/uniform/navysecsuit display_name = "uniform, navy blue (Security)" path = /obj/item/clothing/under/rank/security/navyblue - allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard","Security Pilot") + allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/uniform/navywarsuit display_name = "uniform, navy blue (Warden)" @@ -432,7 +432,7 @@ /datum/gear/uniform/pcrc display_name = "uniform, PCRC (Security)" path = /obj/item/clothing/under/pcrc - allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard","Security Pilot") + allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/uniform/brandsuit/grayson display_name = "outfit, grayson" diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm index 23140edef0..5869d2b468 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm @@ -11,12 +11,12 @@ /datum/gear/uniform/job_khi/cmd display_name = "khi uniform, cmd" path = /obj/item/clothing/under/rank/khi/cmd - allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") + allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") //YW ADDITIONS /datum/gear/uniform/job_khi/sec display_name = "khi uniform, sec" path = /obj/item/clothing/under/rank/khi/sec - allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer","Blueshield Guard","Security Pilot") + allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/uniform/job_khi/med display_name = "khi uniform, med" @@ -37,7 +37,7 @@ /datum/gear/suit/job_fed/sec display_name = "fed uniform, sec" path = /obj/item/clothing/suit/storage/fluff/fedcoat - allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer","Blueshield Guard","Security Pilot") + allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/suit/job_fed/medsci display_name = "fed uniform, med/sci" @@ -54,7 +54,7 @@ /datum/gear/uniform/job_trek/cmd/tos display_name = "TOS uniform, cmd" path = /obj/item/clothing/under/rank/trek/command - allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") + allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") //YW ADDITIONS /datum/gear/uniform/job_trek/medsci/tos display_name = "TOS uniform, med/sci" @@ -64,13 +64,13 @@ /datum/gear/uniform/job_trek/eng/tos display_name = "TOS uniform, eng/sec" path = /obj/item/clothing/under/rank/trek/engsec - allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard","Security Pilot") + allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard","Security Pilot") //YW ADDITIONS //TNG /datum/gear/uniform/job_trek/cmd/tng display_name = "TNG uniform, cmd" path = /obj/item/clothing/under/rank/trek/command/next - allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") + allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") //YW ADDITIONS /datum/gear/uniform/job_trek/medsci/tng display_name = "TNG uniform, med/sci" @@ -80,13 +80,13 @@ /datum/gear/uniform/job_trek/eng/tng display_name = "TNG uniform, eng/sec" path = /obj/item/clothing/under/rank/trek/engsec/next - allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard","Security Pilot") + allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard","Security Pilot") //YW ADDITIONS //VOY /datum/gear/uniform/job_trek/cmd/voy display_name = "VOY uniform, cmd" path = /obj/item/clothing/under/rank/trek/command/voy - allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") + allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") //YW ADDITIONS /datum/gear/uniform/job_trek/medsci/voy display_name = "VOY uniform, med/sci" @@ -96,7 +96,7 @@ /datum/gear/uniform/job_trek/eng/voy display_name = "VOY uniform, eng/sec" path = /obj/item/clothing/under/rank/trek/engsec/voy - allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard","Security Pilot") + allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard","Security Pilot") //YW ADDITIONS //DS9 @@ -106,13 +106,13 @@ allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director", "Chief Medical Officer","Medical Doctor","Chemist","Paramedic","Geneticist", "Scientist","Roboticist","Xenobiologist","Atmospheric Technician", - "Station Engineer","Warden","Detective","Security Officer", "Pathfinder", "Explorer", "Field Medic", "Blueshield Guard","Security Pilot") + "Station Engineer","Warden","Detective","Security Officer", "Pathfinder", "Explorer", "Field Medic", "Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/uniform/job_trek/cmd/ds9 display_name = "DS9 uniform, cmd" path = /obj/item/clothing/under/rank/trek/command/ds9 - allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") + allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") //YW ADDITIONS /datum/gear/uniform/job_trek/medsci/ds9 display_name = "DS9 uniform, med/sci" @@ -122,14 +122,14 @@ /datum/gear/uniform/job_trek/eng/ds9 display_name = "DS9 uniform, eng/sec" path = /obj/item/clothing/under/rank/trek/engsec/ds9 - allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard","Security Pilot") + allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard","Security Pilot") //YW ADDITIONS //ENT /datum/gear/uniform/job_trek/cmd/ent display_name = "ENT uniform, cmd" path = /obj/item/clothing/under/rank/trek/command/ent - allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") + allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") //YW ADDITIONS /datum/gear/uniform/job_trek/medsci/ent display_name = "ENT uniform, med/sci" @@ -139,7 +139,7 @@ /datum/gear/uniform/job_trek/eng/ent display_name = "ENT uniform, eng/sec" path = /obj/item/clothing/under/rank/trek/engsec/ent - allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard","Security Pilot") + allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard","Security Pilot") //YW ADDITIONS /* Swimsuits */ diff --git a/code/modules/client/preference_setup/loadout/loadout_utility_vr.dm b/code/modules/client/preference_setup/loadout/loadout_utility_vr.dm index 02a7916164..8f9e8589f8 100644 --- a/code/modules/client/preference_setup/loadout/loadout_utility_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_utility_vr.dm @@ -44,7 +44,7 @@ /datum/gear/utility/dufflebag/sec display_name = "security Dufflebag" path = /obj/item/weapon/storage/backpack/dufflebag/sec - allowed_roles = list("Head of Security","Warden","Detective","Security Officer","Blueshield Guard","Security Pilot") + allowed_roles = list("Head of Security","Warden","Detective","Security Officer","Blueshield Guard","Security Pilot")//YW ADDITIONS /datum/gear/utility/dufflebag/eng display_name = "engineering dufflebag" diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno.dm b/code/modules/client/preference_setup/loadout/loadout_xeno.dm index da56920e51..d411c5d56d 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno.dm @@ -210,7 +210,7 @@ /datum/gear/uniform/dept/undercoat/security display_name = "security undercoat (Teshari)" path = /obj/item/clothing/under/seromi/undercoat/jobs/sec - allowed_roles = list("Head of Security","Detective","Warden","Security Officer","Security Pilot") + allowed_roles = list("Head of Security","Detective","Warden","Security Officer","Security Pilot")//YW ADDITIONS /datum/gear/uniform/dept/undercoat/service display_name = "service undercoat (Teshari)" @@ -299,7 +299,7 @@ /datum/gear/suit/dept/cloak/security display_name = "security cloak (Teshari)" path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/sec - allowed_roles = list("Head of Security","Detective","Warden","Security Officer","Security Pilot") + allowed_roles = list("Head of Security","Detective","Warden","Security Officer","Security Pilot")//YW ADDITIONS /datum/gear/suit/dept/cloak/service display_name = "service cloak (Teshari)" From 06d1254168310b3ca15a0cb6bf84934bbb2f2204 Mon Sep 17 00:00:00 2001 From: Killian <49700375+KillianKirilenko@users.noreply.github.com> Date: Sat, 21 Mar 2020 17:02:59 +0000 Subject: [PATCH 04/23] change secpilot access desc --- code/game/jobs/access_datum_yw.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/jobs/access_datum_yw.dm b/code/game/jobs/access_datum_yw.dm index a2e3ad286c..1c1b205dc8 100644 --- a/code/game/jobs/access_datum_yw.dm +++ b/code/game/jobs/access_datum_yw.dm @@ -1,7 +1,7 @@ /var/const/access_secpilot = 51 /datum/access/secpilot id = access_secpilot - desc = "Security Flight Control" + desc = "Security Vehicle Bay" region = ACCESS_REGION_SECURITY /var/const/access_blueshield = 52 From 64ab647b6f973c669f0dad4d2c6501ba1ed8c315 Mon Sep 17 00:00:00 2001 From: Killian <49700375+KillianKirilenko@users.noreply.github.com> Date: Sat, 11 Apr 2020 22:42:59 +0100 Subject: [PATCH 05/23] fix compile error --- code/game/jobs/job/security_yw.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/jobs/job/security_yw.dm b/code/game/jobs/job/security_yw.dm index ad5545361e..c8519ef428 100644 --- a/code/game/jobs/job/security_yw.dm +++ b/code/game/jobs/job/security_yw.dm @@ -17,7 +17,7 @@ /datum/job/security/pilot title = "Security Pilot" flag = SECPILOT - department = "Security" + departments = list(DEPARTMENT_SECURITY) department_flag = ENGSEC faction = "Station" total_positions = 2 From c8a1736de0d5eec712c6be7dc600f1e598d90b44 Mon Sep 17 00:00:00 2001 From: Killian <49700375+KillianKirilenko@users.noreply.github.com> Date: Sat, 11 Apr 2020 23:10:22 +0100 Subject: [PATCH 06/23] adds job desc for secpilot --- code/game/jobs/job/security_yw.dm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/code/game/jobs/job/security_yw.dm b/code/game/jobs/job/security_yw.dm index c8519ef428..4723e68885 100644 --- a/code/game/jobs/job/security_yw.dm +++ b/code/game/jobs/job/security_yw.dm @@ -29,4 +29,10 @@ minimal_access = list(access_security, access_eva, access_sec_doors, access_brig, access_maint_tunnels, access_external_airlocks, access_secpilot) minimal_player_age = 7 outfit_type = /decl/hierarchy/outfit/job/security/pilot -// alt_titles = list("Mech Operator","Rover Pilot") \ No newline at end of file + + job_description = "Tasked with flying, operating, and sometimes even maintaining small spacecraft and personal exosuits such as the Durand or Gygax, \ + Security Pilots are responsible for transporting criminals to more permanent holding facilities, and patrolling \ + for potential threats to their workplace. They may also be expected to step in to standard Security duties if \ + there's a shortage of regular officers." + +// alt_titles = list("Mech Operator" = /datum/alt_title/sec_mech_operator) \ No newline at end of file From 009b315d337c2acab927bda6ed8918ff215e13d7 Mon Sep 17 00:00:00 2001 From: Killian <49700375+KillianKirilenko@users.noreply.github.com> Date: Sun, 12 Apr 2020 14:04:51 +0100 Subject: [PATCH 07/23] add locker w/ sprites --- .../closets/secure/closets_yw.dm | 34 ++++++++++++++++++ icons/obj/closet_yw.dmi | Bin 2159 -> 3383 bytes 2 files changed, 34 insertions(+) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/closets_yw.dm b/code/game/objects/structures/crates_lockers/closets/secure/closets_yw.dm index e1057a1f9c..7ea008cb6e 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/closets_yw.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/closets_yw.dm @@ -35,3 +35,37 @@ /obj/item/gunbox/blueshield, /obj/item/gunbox/blueshield/secondary ) + +/obj/structure/closet/secure_closet/security_pilot + name = "security pilot's locker" + req_access = list(access_secpilot) + icon = 'icons/obj/closet_yw.dmi' + icon_state = "secpilot1" + icon_closed = "secpilot" + icon_locked = "secpilot1" + icon_opened = "secpilotopen" + icon_broken = "secpilotbroken" + icon_off = "secpilotoff" + storage_capacity = 2.5 * MOB_MEDIUM + + starts_with = list( + /obj/item/weapon/storage/backpack/parachute, + /obj/item/weapon/material/knife/tacknife/survival, + /obj/item/clothing/head/pilot/alt, + /obj/item/clothing/mask/gas/half, + /obj/item/clothing/under/rank/khi/sec/pilot, + /obj/item/clothing/gloves/fingerless, + /obj/item/weapon/cartridge/security, + /obj/item/device/radio/headset/headset_sec/alt, + /obj/item/weapon/storage/belt/security, + /obj/item/clothing/glasses/sunglasses/sechud, + /obj/item/weapon/storage/box/flare, + /obj/item/clothing/accessory/storage/webbing/combatpilot, + /obj/item/weapon/reagent_containers/food/snacks/liquidfood, + /obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, + /obj/item/clothing/head/soft/sec/corp, + /obj/item/clothing/accessory/holster/armpit, + /obj/item/weapon/gun/energy/taser, + /obj/item/weapon/cell/device/weapon, + /obj/item/device/flashlight/maglight, + /obj/item/device/radio) \ No newline at end of file diff --git a/icons/obj/closet_yw.dmi b/icons/obj/closet_yw.dmi index 4b9b474cfe17600d0f6986a4430e9d2fc297cfe1..19145e49db07c744fc68e03252958b7b9bedeafa 100644 GIT binary patch delta 2824 zcmV+j3-|Qz5Vsm7iBL{Q4GJ0x0000DNk~Le0001>0001>2m=5B0K5^G9{>OX%8@0q z1NiuuvDXvyfsOA-?`4-b=L0KP#mq;CKq4-de=z&sHVODGCb z6&2QA99~=)7-=3JON&`k00001bW%=J06^y0W&i*Hx|3Q0k$*;%n}9AV$jr$vAzC5f z@Pnx&$$nx28>W{0@Iy5Lp97T@T>V_YDG~s5rNdIYO8gA~00~t|L_t(|ob8(Vn;b?7ZCH0Jvo^l}CS_)g_|VZp$xImaA(%)5>|{)BhK{_MFYzURdEzVD=y z5ucu6Oh#`J0zAc&@%|4W^+c-o7krRi!KtU6{-M*)`0$w@IScmBKIh!?&OQHv3qOkZ zo(%3e2myZV<6yn>3?pK_zhDO2VBRM#y7;0`et+tcOFs?!^Dn#nip#IO>gsDg1N+5d z|F!+s^&9;$fY-}_ZapC+R4*>L;l>4@UGTZje*pu$>5B_*UihV3z8nGg6}mw`Ji)Je zGQNfZ%Jt#`I>80b1aF0XI>Cj`1aAX<`Y-D5cP6kX1UMrEh}M&Ey}uyO7Myz8?RVUM z=YQAFyj4C19RKWd?)t`E-~85vw;_J9xQNME#2qtzKHy?chDNe0-7s&?-N)Y} zH*oyfbLZbQf9|~}V+$4o`c^x9B7aa&cW{~PJev}@IIcdwMH$g?82YhH*pE96aAHIU-1f_#AbcO0ZJVEXL z;VZxz===Tz4Nm&~!!L8AZN59fX_RU)cg$$_rwj7=hx1K6(xPt|yz$VoJe}a90e|0O zoqAu(moMLcc~gn~2VC*K(cJM7PCE6e%X#v3azkBpH(h(Bk?*DAKNjeRfUT78rRcBV zwGtrI%J)+6OPp4&cucO3$>-AcORG4QAi$V>E^WWGDi|OP7?aPX?K8mDj$#0@d@gOD z0shF51Nb-!h^0$u`=JTqfLK14wtxSonIM|arR|3%_~ST0DWB8vNrL*)s-O760VDD` z*C(WxK5)NC2wpz`=7#~`Pw9{I3kGcFb0nPai9R9ZXHh<_Cj{{a-24yjA54%P)exW; zeAezsm?T03a z0;2g`+P>}t+m{b2`nnTrUw=NR=&Mc;&F9kg#cy>WV01p0wl97!miglIxwL&gS%CQV zX>ZVQASj>9nWp)K>8hN8AD7RSsh%u1Wyu}V_H!egR<0P9eA~94vYWEXR)>8GwRUak zX;159z{>h+^~vfp&p!9;Gu8FByg{^Y+ZEHapZBC$Pw9q-V*#tCIe%)7jgF3vnN?^5 z+@~Wcmtz6ZdPX<=LOkGl*5Jj_mquSU;Rzx>qbr;7fPVd0s6XQ?l@tNpD_n0^ZDrps zJ18Bj?vw4K)}}ol>6&V zkX~ODAmD2OLjAQS=zoefs44p{U^N7&UavPn(;OckXAPv2-t#9WCPd$^LV!Py0p$8~ z6a0lI9B_Q&#*MF(=~NJZV$-HguL?d4SjPaJcRHazo1hAy$r_Ar-u&9;&EuvmpJR?c zv1Q9Iw``fMr26-+ylV-S2rH1jOo1)2dm2 zumqn2T;1z7R{|KSM({HMu&a6rhn-8~s# z-IGqe14ut`DFIq0`@sPrp8;BmfMEX-ibvl|7~sD=wRM8^=dD_66Qu9N!)kzuCRpED z+e;?Mg*T~8(B_n6f~DY%1b-*-j{*4uC+0g7tXma37=NHvy)!{}%>0|vI{ABhh4y{I z-$3e*`)q>rPZf?&tKK~aM@EEXLFS_!DwU@yP09Un-)`<$;iOYf0Vxqs&@Rz`7cejl zrAn7$U)q(4{?5`28k@)zHAb&nl=@0vQ`5y+LTAvs&N%jKy*aZaj z(*1>T{gY=e+J3}SB%;2(6HLMH-~^NTnNR3VGQr?wu94q$#!sIAb;wVi|8>gWr@cXD zOn#TKV)MDI)o3*S(`X9H=du-rs@EI;_0;GtKuWi3SN8%kx?N^B1MXrk+Ylg-&t)bM z5PwLQGSfc5R^v)!5TJB_Uv`24rThD`69fq5bD0SOgz~w}!~y=#6O_+o zCKu2Y0HJ&?Gc_szAdt^xrp8VgumOB=&P>n*y9?0$GS2{ad+ItstE&OsyVJTE(78LU zn*sNf2{t%&7oc;0AEnyOO|Y9ju)6p6H8Jen9AFpmQ9y>*$nke@b`xLDdGciq5vA^? a%l#jc!%2!XFfZEx0000?fB5*AVS}Q;z`&Vi0F#rGNHGApd;m@(BP|{PFBKI4004DQ08cdlH5V6NKLBDc zFCGmIc~Ss16cl$+05C8xU|?WkLI7k#0H13BQ6V9STL6<|0HkjKAP*0XN1cQK0004W zQchCV=-lNbYme}>OZ$_lQ2F5mzM0R10rGTDqg ziU0rwSV=@dRA_$Jq2OZ4rcC%`#RjNo8i;5N%4-ORtRMd)R#apo+SZ^pQ zYQbYwYN?1FAKW(E+N$-~di{gW28>2hpkyM_u9(q5MuqT_S;MzJL%~jU07#oR!S))S}N9OQlsMTSX)u5Y8`K z>P9>OS*mHM;z}}KKqXyo*KL(#3nKVsKLFWYDyadA)(P6_N#s`;-uERyx0kBn0qD0P zI{Ta?em6STV4|rKaRA~xcZEf8K^VUqbt?eGe|hc-;RRv*L;z$&E4=kYS zEe87(-~tYy$N>oR&IvAD(|1wdnv2&KOLG5`b^Vw2ue)qLZ@#<^je*fU6Yd2kY{pK40pF9JoP+6A&+~^A3bh8MsgAVUH0JOr@+g^?FWUV8Zz2;ji0qpyv={>GaD0B;chL!Q9fuFyLH35-|? z90U^>wGuca^~q055M>Rj)UTDX8AjJ9r@tMhac@Z z1o*l>MuoOP$pX!L4t%yA@?`+B1Ym$#?ekjCG06e8-}?nouLk-$^*I1*zeWMRe{>Z9 zaGXdFSa5t|Vj_(12dLNpU%3hZn5<3Kf)-2?h4C2x?L=kD2Kd?)44^9$2E|agIc?`_k{oZ;*gZ=%U^D*E5{XWL{JHizff3&CXWq#e0)K^H=-)C6OiW^kEQmX!LGMb$^E%*&avorPR z`xX7&oMUA20A%U>y!nHxg*X6;{%+2B0dN3hd%d0vMs-zmUP zmMnmuJpi)bG}BH%Y_D7bEP!b)Ev21+8~{jQY3aX|0NCHT1b$%ve^N~V?Dyu}uPt!^ zsU^@O{rkTM@EiGOeS;GC-Bm1rEjEA-^nWh_`Y7TONClv313>-VYCKLG*2Ob(#g0MPpZ|7U;&_@f2zr>mF=1lDK&U62KUqQCo} z1K9z9{ons6W&z9=f52a^5&(ex-v20GZu$Vo59G7}!2Zr9zyj3ivycM(?J7wEP=60d zfczw=rv?D__q-EO{6Zp2fcdpOh1*c*um0bPB?*|`gD~ckFu1?_dx5v#N`T&m|1esJ zzF*zn*=EG-x1R%zhOZgL*&kaCvb~Y#LIEJz_J0ATqpfxJ5Ag;s00000NkvXXu0mjf DRC)fE From bef7e7a8a311066890c45184ed9471f5aafdc702 Mon Sep 17 00:00:00 2001 From: Killian <49700375+KillianKirilenko@users.noreply.github.com> Date: Sun, 3 May 2020 22:04:25 +0100 Subject: [PATCH 08/23] security interceptor pt1 --- maps/yw/cryogaia-05-main.dmm | 1932 ++++++++++++++++++++++++---------- maps/yw/cryogaia_areas.dm | 14 + maps/yw/cryogaia_shuttles.dm | 25 + 3 files changed, 1403 insertions(+), 568 deletions(-) diff --git a/maps/yw/cryogaia-05-main.dmm b/maps/yw/cryogaia-05-main.dmm index c2283be0b6..0555ca25ca 100644 --- a/maps/yw/cryogaia-05-main.dmm +++ b/maps/yw/cryogaia-05-main.dmm @@ -13688,12 +13688,15 @@ /turf/simulated/floor/plating, /area/maintenance/substation/civilian) "azE" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass_external{ - locked = 1 +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "secshuttle_docker_pump_out_internal" }, -/turf/simulated/floor/plating/snow/plating, -/area/security/airlock) +/obj/effect/shuttle_landmark/premade/security/cryogaia, +/obj/effect/overmap/visitable/ship/landable/security, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) "azF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet/blue, @@ -16258,7 +16261,7 @@ /area/borealis2/outdoors/grounds/solars) "aEu" = ( /obj/structure/sign/securearea, -/turf/simulated/wall, +/turf/simulated/wall/r_wall, /area/maintenance/medbay) "aEv" = ( /obj/structure/closet/crate/medical, @@ -17205,18 +17208,13 @@ /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds/solars) "aGk" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 +/obj/machinery/door/window/brigdoor/westleft{ + name = "Security Checkpoint"; + req_access = list(1) }, /obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/structure/railing{ dir = 8 }, -/obj/structure/railing{ - dir = 1 - }, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds) "aGl" = ( @@ -17656,22 +17654,6 @@ }, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds/solars) -"aHd" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges3{ - dir = 8 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"aHe" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) "aHf" = ( /turf/simulated/wall/r_wall, /area/maintenance/medbay) @@ -17970,13 +17952,6 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"aHN" = ( -/obj/machinery/door/window/brigdoor/westleft{ - name = "Security Checkpoint"; - req_access = list(1) - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) "aHO" = ( /obj/machinery/power/tracker, /obj/structure/cable/yellow{ @@ -18020,18 +17995,15 @@ /turf/simulated/wall, /area/security/airlock) "aHU" = ( -/obj/machinery/light/small{ +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/obj/structure/handrail{ dir = 1 }, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/security/airlock) +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) "aHV" = ( /turf/simulated/wall/r_wall, /area/security/armoury) @@ -18423,6 +18395,13 @@ /obj/effect/floor_decal/corner/red{ dir = 5 }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/steel, /area/security/briefing_room) "aIN" = ( @@ -18864,8 +18843,8 @@ /turf/simulated/floor/tiled/steel, /area/security/briefing_room) "aJL" = ( -/turf/simulated/floor/plating, -/area/security/vacantoffice) +/turf/simulated/wall/r_wall, +/area/security/pilotroom) "aJM" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -18979,9 +18958,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/storage/emergency_storage/emergency) -"aJW" = ( -/turf/simulated/wall/r_wall, -/area/security/vacantoffice) "aJX" = ( /obj/machinery/door/airlock/maintenance{ req_access = list(12) @@ -19187,8 +19163,11 @@ /turf/simulated/wall, /area/borealis2/outdoors/grounds) "aKt" = ( -/turf/simulated/wall, -/area/security/vacantoffice) +/obj/machinery/door/airlock/glass_security{ + name = "Security Pilot Officer Office" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) "aKu" = ( /obj/structure/table/gamblingtable, /obj/item/weapon/deck/cah/black, @@ -19988,23 +19967,6 @@ /obj/structure/table/woodentable, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"aMa" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/security, -/obj/item/clothing/head/helmet/space/void/security, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/southleft{ - req_one_access = list(1) - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/airlock) "aMb" = ( /obj/structure/cable/green{ d1 = 1; @@ -20359,7 +20321,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/steel, +/turf/simulated/floor/tiled/dark, /area/security/airlock) "aMP" = ( /turf/simulated/wall/r_wall, @@ -20714,7 +20676,7 @@ }, /obj/machinery/door/airlock/maintenance/sec{ name = "Security Maintenance"; - req_access = list(1,12) + req_access = newlist() }, /obj/structure/cable/green{ d1 = 1; @@ -21026,35 +20988,6 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) -"aOh" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/security, -/obj/item/clothing/head/helmet/space/void/security, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/southleft{ - req_one_access = list(1) - }, -/turf/simulated/floor/tiled/dark, -/area/security/airlock) -"aOi" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/void/security, -/obj/item/clothing/head/helmet/space/void/security, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/machinery/door/window/brigdoor/southright{ - req_one_access = list(1) - }, -/turf/simulated/floor/tiled/dark, -/area/security/airlock) "aOj" = ( /obj/structure/grille, /obj/machinery/door/firedoor/border_only, @@ -22844,15 +22777,17 @@ /turf/simulated/floor/wood, /area/security/breakroom) "aRm" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/weapon/coin/iron, -/obj/machinery/firealarm{ +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/structure/window/reinforced{ dir = 4; - layer = 3.3; - pixel_x = 26 + health = 1e+006 }, +/obj/machinery/door/window/brigdoor/northright, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, /turf/simulated/floor/tiled/dark, /area/security/airlock) "aRn" = ( @@ -23346,7 +23281,14 @@ /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds) "aSn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, /turf/simulated/floor/tiled/dark, /area/security/airlock) "aSo" = ( @@ -23374,8 +23316,10 @@ /turf/simulated/floor/tiled/steel, /area/security/airlock) "aSq" = ( -/obj/structure/table/standard{ - name = "plastic table frame" +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 }, /turf/simulated/floor/tiled/dark, /area/security/airlock) @@ -23529,6 +23473,13 @@ d2 = 4; icon_state = "2-4" }, +/obj/machinery/door/airlock/glass_security{ + id_tag = "BrigFoyer"; + layer = 2.8; + name = "Security Shuttle interceptor"; + req_access = newlist(); + req_one_access = list(2,1,52) + }, /turf/simulated/floor/tiled/dark, /area/security/airlock) "aSH" = ( @@ -24509,13 +24460,6 @@ }, /turf/simulated/floor/tiled/red, /area/security/armoury) -"aUv" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/security/airlock) "aUw" = ( /obj/structure/bed/chair{ dir = 1 @@ -25061,19 +25005,6 @@ dir = 1 }, /area/quartermaster/disposals) -"aVy" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - icon_state = "warningcorner_dust"; - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) "aVz" = ( /obj/effect/floor_decal/snow/floor/edges{ dir = 8 @@ -25957,13 +25888,17 @@ /turf/simulated/floor/tiled/steel, /area/security/briefing_room) "aWV" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/structure/window/reinforced{ + dir = 8 }, +/obj/machinery/light, +/obj/machinery/door/window/brigdoor/northleft, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, /turf/simulated/floor/tiled/dark, /area/security/airlock) "aWW" = ( @@ -26466,14 +26401,13 @@ /turf/simulated/floor/tiled, /area/security/airlock) "aXN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/tiled/dark, /area/security/airlock) @@ -27635,30 +27569,16 @@ /obj/effect/overlay/snow/floor, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds/solars) -"aZP" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) "aZQ" = ( -/obj/structure/railing{ - dir = 1 +/obj/machinery/atmospherics/pipe/tank/air{ + start_pressure = 5000 }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) "aZR" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/dark, @@ -28410,21 +28330,6 @@ /obj/structure/closet/crate/medical, /turf/simulated/floor/tiled, /area/quartermaster/warehouse) -"bbc" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) "bbd" = ( /obj/machinery/power/solar{ id = "starboardsolar"; @@ -32090,14 +31995,12 @@ /turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, /area/borealis2/outdoors/grounds) "bhm" = ( -/obj/structure/railing{ - dir = 4 +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1380; + id_tag = "secshuttle_door_int" }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) "bhn" = ( /obj/machinery/alarm{ dir = 1; @@ -32964,13 +32867,6 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/steel, /area/security/security_equiptment_storage) -"biT" = ( -/obj/item/device/geiger/wall{ - dir = 4; - pixel_x = -30 - }, -/turf/simulated/floor/tiled/dark, -/area/security/airlock) "biU" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -34707,12 +34603,12 @@ /turf/simulated/floor/tiled/dark, /area/security/tactical) "blI" = ( -/obj/effect/wingrille_spawn/reinforced, -/obj/structure/cable/green{ - icon_state = "0-4" +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + icon_state = "map"; + dir = 4 }, -/turf/simulated/floor/tiled/steel, -/area/security/airlock) +/turf/simulated/wall/rshull, +/area/shuttle/security) "blJ" = ( /obj/machinery/light{ dir = 4; @@ -34736,13 +34632,6 @@ }, /turf/simulated/floor/tiled/dark, /area/security/tactical) -"blM" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass_external, -/turf/snow/drift{ - dir = 4 - }, -/area/security/airlock) "blN" = ( /turf/simulated/wall, /area/security/detectives_office) @@ -34756,15 +34645,15 @@ /turf/simulated/floor/tiled/steel, /area/security/hallway) "blP" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "secshuttle_door_ext"; + locked = 1 }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/security/airlock) +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) "blQ" = ( /obj/effect/floor_decal/corner/red{ dir = 4 @@ -34795,23 +34684,6 @@ }, /turf/simulated/floor/tiled, /area/security/hallway) -"blS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/security/airlock) -"blT" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/dark, -/area/security/airlock) "blU" = ( /obj/effect/floor_decal/corner_oldtile/purple, /obj/effect/floor_decal/corner_oldtile/purple{ @@ -35163,22 +35035,6 @@ }, /turf/simulated/floor/tiled/steel, /area/security/hallway) -"bmG" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"bmH" = ( -/obj/structure/railing, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) "bmI" = ( /obj/structure/table/steel, /obj/item/weapon/module/power_control, @@ -37185,17 +37041,6 @@ }, /turf/simulated/floor/plating, /area/quartermaster/storage) -"bqm" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/edges, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) "bqn" = ( /obj/effect/floor_decal/rust, /obj/effect/floor_decal/industrial/warning/dust, @@ -49915,8 +49760,14 @@ /obj/machinery/door/airlock/glass_security{ name = "Security Pilot Officer Office" }, -/obj/structure/barricade, -/turf/simulated/floor/plating, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel, /area/security/armoury) "bLS" = ( /obj/machinery/power/apc{ @@ -63061,6 +62912,34 @@ }, /turf/simulated/floor/tiled/red, /area/security/outpost) +"cwy" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "secshuttle_vent" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"czF" = ( +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/security/airlock) +"cIj" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4; + icon_state = "shuttle_chair" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) "cLv" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -63071,10 +62950,55 @@ /obj/machinery/suit_cycler/medical, /turf/simulated/floor/tiled, /area/cryogaia/station/explorer_prep) +"dsZ" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1380; + id_tag = "secsh_compartment"; + req_one_access = list(1) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"dun" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"dxL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"dAq" = ( +/obj/machinery/computer/ship/sensors{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) "dDd" = ( /obj/structure/sign/directions/science, /turf/simulated/wall/r_wall, /area/hallway/primary/central_one) +"ekM" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) "eti" = ( /obj/structure/sign/directions/bridge{ icon_state = "direction_bridge"; @@ -63090,16 +63014,88 @@ }, /turf/simulated/floor/tiled, /area/cryogaia/station/explorer_prep) +"exA" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) "eQA" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/sign/directions/science, /turf/simulated/floor/plating, /area/hallway/primary/central_one) +"flA" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"fre" = ( +/obj/item/device/geiger/wall{ + dir = 1; + pixel_y = -30 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"fsw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) "fIL" = ( /obj/structure/sign/directions/science, /turf/simulated/wall, /area/storage/primary) +"fTJ" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8; + icon_state = "shuttle_chair" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"gdb" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + icon_state = "borderfloorcorner_black"; + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + icon_state = "dangercorner"; + dir = 4 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"gzf" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel, +/area/security/briefing_room) "gOn" = ( /obj/structure/table/standard, /obj/fiftyspawner/steel, @@ -63110,18 +63106,51 @@ /obj/machinery/suit_cycler/captain, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"hRF" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "secpilotoffice"; - layer = 3.1; - name = "Office Shutters" +"hgQ" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "secshuttle_dock"; + pixel_x = -32; + req_one_access = list(67) }, -/turf/simulated/floor/plating, -/area/security/airlock) +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"hnU" = ( +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"huK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"hRF" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"hYc" = ( +/turf/simulated/floor/reinforced, +/area/security/hangar) +"ifk" = ( +/obj/machinery/computer/ship/helm, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) "iGb" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -63138,6 +63167,156 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/cryogaia/station/explorer_prep) +"iOy" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"iPx" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "secshuttle_docker_pump_out_external" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/handrail{ + dir = 4 + }, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 2; + frequency = 1380; + id_tag = "secshuttle_exterior_sensor"; + master_tag = "secshuttle_docker"; + pixel_x = 0; + pixel_y = 28 + }, +/turf/simulated/floor/plating, +/area/shuttle/security) +"iYW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 1; + id = "secshut_cabinshut"; + layer = 3.1; + name = "Cabin Shutters" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"jto" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor/southleft{ + req_one_access = list(1) + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/turf/simulated/floor/tiled/dark, +/area/security/airlock) +"jAh" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "secshuttle_door_ext"; + locked = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"jOh" = ( +/obj/structure/fuel_port{ + pixel_y = 32 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"kbh" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1; + icon_state = "map" + }, +/obj/structure/handrail, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"kfP" = ( +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"kgq" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8; + icon_state = "shuttle_chair" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"kuL" = ( +/obj/effect/landmark/start{ + name = "Security Pilot" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"kwa" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "secshuttle_vent" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + cycle_to_external_air = 1; + frequency = 1380; + id_tag = "secshuttle_docker"; + pixel_y = 26; + req_one_access = list(1); + tag_airpump = "secshuttle_vent"; + tag_chamber_sensor = "secshuttle_sensor"; + tag_exterior_door = "secshuttle_door_ext"; + tag_exterior_sensor = "secshuttle_exterior_sensor"; + tag_interior_door = "secshuttle_door_int" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"kDH" = ( +/obj/machinery/light, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"kNH" = ( +/obj/machinery/power/pointdefense{ + id_tag = "secshuttle_pd" + }, +/turf/simulated/floor/plating, +/area/shuttle/security) "kOa" = ( /obj/structure/table/rack/shelf, /obj/item/clothing/shoes/magboots, @@ -63147,6 +63326,37 @@ /obj/item/clothing/head/helmet/space/void/medical, /turf/simulated/floor/tiled, /area/cryogaia/station/explorer_prep) +"lfe" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + icon_state = "borderfloorcorner_black"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + icon_state = "dangercorner"; + dir = 8 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"lfo" = ( +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "secpilotoffice"; + name = "Office Shutters"; + pixel_x = -26; + pixel_y = 0; + req_access = list(51) + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"lph" = ( +/obj/machinery/suit_cycler/security, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) "lAq" = ( /obj/structure/cable{ d1 = 4; @@ -63159,6 +63369,41 @@ }, /turf/simulated/floor/plating, /area/maintenance/bridge) +"lRW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"lUT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"mcp" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/machinery/door/window/brigdoor/southright{ + req_one_access = list(1) + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/suit/space/void/security/alt, +/obj/item/clothing/head/helmet/space/void/security/alt, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"meG" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) "mjD" = ( /obj/machinery/photocopier, /turf/simulated/floor/tiled/dark, @@ -63170,6 +63415,55 @@ /obj/effect/floor_decal/snow/floor/edges, /turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, /area/borealis2/outdoors/grounds) +"mkc" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"mky" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"moE" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor/southleft{ + req_one_access = list(1) + }, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/suit/space/void/security/alt, +/obj/item/clothing/head/helmet/space/void/security/alt, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"mvo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) "mBp" = ( /obj/structure/table/marble, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -63188,6 +63482,65 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) +"mEp" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"nfn" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"nlr" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 4 + }, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"npe" = ( +/obj/machinery/sleep_console, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"nra" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "secpilotoffice"; + layer = 3.1; + name = "Office Shutters" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) "nKF" = ( /obj/structure/sign/directions/security{ icon_state = "direction_sec"; @@ -63195,12 +63548,58 @@ }, /turf/simulated/wall/r_wall, /area/hallway/primary/central_one) +"nLu" = ( +/obj/machinery/shipsensors{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/security) "ovS" = ( /obj/machinery/door/airlock/glass_external/freezable{ req_access = list(48) }, /turf/simulated/floor/plating, /area/borealis2/outdoors/grounds/traderpad) +"oAx" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"oDH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"oNw" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"oNI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) "oRX" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -63211,6 +63610,25 @@ /obj/structure/sign/directions/engineering, /turf/simulated/wall/r_wall, /area/hallway/primary/central_one) +"pgo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"phB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"psv" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) "pxX" = ( /obj/structure/cable/green{ d1 = 4; @@ -63237,10 +63655,152 @@ }, /turf/simulated/floor/tiled/steel, /area/security/hallway) +"pzP" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/machinery/button/remote/airlock{ + desiredstate = 1; + id = "secsh_compartment"; + name = "Compartment Access"; + pixel_x = 6; + pixel_y = -24; + specialfunctions = 4 + }, +/obj/machinery/button/remote/airlock{ + desiredstate = 1; + id = "secsh_cabin"; + name = "Cabin Lockdown"; + pixel_x = -6; + pixel_y = -24; + specialfunctions = 4 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "secshut_cabinshut"; + name = "Cabin Blast Shutters"; + pixel_x = -26; + pixel_y = 26; + req_access = list(51) + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"pCD" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"pFO" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8; + icon_state = "shuttle_chair" + }, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"pPi" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) "qfY" = ( /obj/structure/sign/directions/security, /turf/simulated/wall/r_wall, /area/hallway/primary/central_one) +"qnz" = ( +/obj/machinery/pointdefense_control{ + id_tag = "secshuttle_pd"; + name = "shuttle laser FCS" + }, +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"qtm" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"qYa" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/machinery/door/window/brigdoor/southright{ + req_one_access = list(1) + }, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/turf/simulated/floor/tiled/dark, +/area/security/airlock) +"rax" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "secshuttle_docker_pump_out_internal" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"rkQ" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"rMg" = ( +/obj/structure/table/woodentable, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"rME" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) "sdy" = ( /obj/structure/table/rack, /obj/machinery/door/window/brigdoor/northright{ @@ -63263,27 +63823,215 @@ /obj/item/clothing/head/helmet/space/void/captain, /turf/simulated/floor/wood, /area/crew_quarters/captain) +"sOL" = ( +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"sWL" = ( +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) "tbF" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/sign/directions/engineering, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"tdL" = ( -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "secpilotoffice"; - name = "Office Shutters"; - pixel_x = -26; - pixel_y = 0; - req_access = list(67) +"tgn" = ( +/obj/structure/catwalk, +/obj/structure/railing{ + dir = 2; + flags = null }, -/turf/simulated/floor/plating, -/area/security/vacantoffice) +/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, +/area/borealis2/outdoors/grounds) +"tjy" = ( +/obj/effect/floor_decal/borderfloorblack/corner, +/obj/effect/floor_decal/industrial/danger/corner, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"tnf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced, +/area/security/hangar) +"txE" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "secshut_cabinshut"; + layer = 3.1; + name = "Cabin Shutters" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"tUI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) "ugG" = ( /obj/effect/shuttle_landmark/automatic, /turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, /area/borealis2/outdoors/grounds) +"uvn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/device/geiger/wall{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/dark, +/area/security/airlock) +"uyh" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "secshuttle_door_ext"; + locked = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"uGo" = ( +/obj/machinery/power/smes/buildable/point_of_interest, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"uHW" = ( +/obj/machinery/atmospherics/pipe/tank/phoron, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"uIE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8; + icon_state = "map" + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "secshuttle_sensor"; + master_tag = "expshuttle_docker"; + pixel_y = 28 + }, +/obj/structure/handrail, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"uQG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "secshut_cabinshut"; + layer = 3.1; + name = "Cabin Shutters" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"uYC" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "secpilotoffice"; + layer = 3.1; + name = "Office Shutters" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"vkx" = ( +/obj/machinery/computer/shuttle_control/explore/security, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"vkM" = ( +/turf/simulated/wall/r_wall, +/area/security/hangar) +"vlj" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4; + icon_state = "shuttle_chair" + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"vDg" = ( +/turf/simulated/wall/rshull, +/area/shuttle/security) +"vXc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"wxA" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/steel, +/area/security/briefing_room) +"wIO" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) "wLk" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -63292,6 +64040,54 @@ /obj/structure/window/reinforced/full, /turf/simulated/floor/plating, /area/borealis2/outdoors/grounds/traderpad) +"xds" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 4 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/structure/railing{ + dir = 2; + flags = null + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"xwl" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1380; + id_tag = "secsh_cabin"; + req_one_access = list(67) + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"xIA" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"xKu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"ygj" = ( +/obj/machinery/atmospherics/unary/engine{ + icon_state = "nozzle"; + dir = 1 + }, +/turf/simulated/floor/reinforced, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/security) "ylY" = ( /obj/machinery/door/airlock/glass_engineering{ name = "Engine Gas Storage" @@ -83793,7 +84589,7 @@ aag aag aag aag -aHd +aag aag aag aag @@ -84045,7 +84841,7 @@ aag aag aag aag -aHe +aag aag aag aag @@ -84297,7 +85093,7 @@ aag aag aag aag -aHe +aag aag aag aag @@ -84549,7 +85345,7 @@ aag aag aag aag -aHe +aag aag aag aag @@ -84801,7 +85597,7 @@ aag aag aag aag -aHe +aag aag aag aag @@ -85053,7 +85849,7 @@ aag aag aag aag -aHe +aag aag aag aag @@ -85305,7 +86101,7 @@ aag abz aag aag -aHe +aag aag aag aag @@ -85557,7 +86353,7 @@ aag aag aag aag -aHe +aag aag aag aag @@ -85809,7 +86605,7 @@ aag aag aag aag -aHe +aag aag aag aag @@ -86061,7 +86857,7 @@ aag aag aag aag -aHe +aag aag aag aag @@ -86313,7 +87109,7 @@ aag aag aag aag -aHe +aag aag aag aag @@ -86565,7 +87361,7 @@ aKZ aag aag aag -aHe +aag aag aag aag @@ -87319,11 +88115,11 @@ aag aag aag aag -aag -aag bCF aVP -bDX +tgn +aag +aag aKZ aag aag @@ -87571,11 +88367,11 @@ aKr aKr aKr aKr -aKr -aKr -arw -asy -avi +nlr +pCD +xds +qtm +qtm aKr aKr aKr @@ -87812,22 +88608,22 @@ aag aag aag aag -aZP -bbg -bbg -bbg -bbg -bbg -bbg -bbg -bbg -bbg -bmG aag -aaN +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag bCF aVP -bDX +tgn +aag +aag aag aag aaN @@ -88055,30 +88851,30 @@ aag aag aag aag +vkM +vkM +vkM +vkM +vkM +vkM +vkM +vkM +vkM +vkM +vkM +vkM +vkM +vkM +vkM +vkM +vkM aag aag -aag -aag -aag -aag -aag -aag -aag -aZQ -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -bmH aaN +nfn aGk -aHS -aHN +bbg +bbg aHS aHS aHS @@ -88307,27 +89103,26 @@ aag aag aag aag +vkM +tjy +rME +rME +rME +rME +rME +rME +iOy +rME +rME +rME +rME +rME +rME +gdb +vkM aag aag aag -aag -aag -aag -aag -aag -aag -aZQ -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -bmH -aag aHa aaj aaj @@ -88343,6 +89138,7 @@ aaj aaj aaj aaj +aaj aSm aag btP @@ -88559,30 +89355,30 @@ aag aag aag aag +vkM +exA +hYc +hYc +hYc +hYc +hYc +kNH +vDg +vDg +vDg +hYc +hYc +hYc +hYc +psv +vkM aag aag aag -aag -aag -aag -aag -aag -aag -aZQ -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -bmH -aag aHa aaj aaj +aaj aHR aaj aaj @@ -88811,29 +89607,29 @@ aag aag aag aag -aag -aag -aag -aag -aag -aag -aag -aag -aag +vkM +exA +nLu +vDg +txE +vDg +vDg +vDg +vDg aZQ -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -bmH +huK +vDg +jAh +mvo +ygj +psv +vkM +aag +aag aag aHa aaj +aaj aKs aaj aaj @@ -89063,29 +89859,29 @@ aag aag aag aag +vkM +exA +vDg +vDg +dAq +vDg +uGo +cIj +vlj +xIA +oNI +uIE +fsw +tUI +ygj +psv +vkM aag aag -aag -aag -aag -aag -aag -aag -aag -aZQ -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -bmH aaN aHa aaj +aaj aab aaj aaj @@ -89315,29 +90111,29 @@ aag aag aag aag +vkM +exA +iYW +ifk +pzP +vDg +hnU +lRW +sWL +npe +vDg +kwa +cwy +uyh +hYc +psv +vkM aag aag aag -aag -aag -aag -aag -aag -aag -aZQ -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -bmH -aag aHa aaj +aaj aab aTO aTO @@ -89567,27 +90363,27 @@ aag aag aag aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bbc +vkM +exA +iYW +vkx +sWL +xwl +lRW +lRW +sWL +sWL bhm -aIK +rax azE -aOw -azE -aIK -bhm -bhm -bhm -bqm -aVy +sWL +hYc +psv +vkM +aag +aag +aag +aHa aaj aRg aab @@ -89819,23 +90615,23 @@ aag aag aag aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aIK +vkM +exA +vDg +vDg +qnz +vDg +jOh +fTJ +pFO +kgq +vDg +kbh aHU -blI -aHU -aIK -aIK +tUI +ygj +psv +vkM aIK aIK aIK @@ -90071,23 +90867,23 @@ aag aag aag aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aIK +vkM +exA +nLu +vDg +uQG +vDg +dsZ +vDg +vDg +uHW +lUT +lUT blP blI -blP -aIK -aIK +ygj +psv +vkM bhp aQh aNz @@ -90323,23 +91119,23 @@ aag aag aag aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aIK -aIK -aIK -blM -blI -blM -aIK -aIK +vkM +exA +hYc +hYc +hYc +hYc +tnf +kNH +vDg +vDg +vDg +iPx +hYc +hYc +hYc +psv +vkM aNA aRy aIK @@ -90575,23 +91371,23 @@ aag aag aag aEu -akb -akb -aHf -aIK +vkM +vkM +vkM +rkQ +hRF +hRF +oAx +hRF +hRF +hRF +rkQ hRF hRF hRF hRF -aIK -aIK -aOh -biT -aOw -aOw -aOw -aOw -aIK +lfe +vkM aNy aNy aHT @@ -90832,17 +91628,17 @@ aGl aHf aJL aJL +nra +uYC +nra aJL -aJL -aJL -tdL aKt -aOi -aOw -aOw +aHT +aIK +aIK aSG -blS -blT +aIK +aIK aIK aIK aIK @@ -91082,19 +91878,19 @@ akb aFs aGm aHf -aJL -aJL -aJL -aJL -aJL -aJL -aKt -aMa -aOw +pPi +hgQ +flA +rMg +flA +lfo +meG +aHT +auQ aSn aXN -aOw -aUv +uvn +auQ aHT aQi aQi @@ -91334,15 +92130,15 @@ akb akA aGn aHf -aJL -aJL -aJL -aJL -aJL -aJL -aKt -aOi -aOw +kfP +kfP +ekM +mEp +oNw +wIO +dun +aHT +jto aOw aXO aOk @@ -91586,16 +92382,16 @@ aDy aFt aGo aHf -aJL -aJL -aJL -aJL -aJL -aJL -aKt -auQ -aOw -aOw +lph +kfP +kuL +pgo +kfP +kfP +fre +aHT +qYa +czF aXT aSq aRm @@ -91838,18 +92634,18 @@ akb akb aGp aHf -aJL -aJL -aJL -aJL -aJL -aJL -aKt +moE +kfP +phB +vXc +kuL +kfP +oDH aKx aHT -blI +aIK aMO -blI +aIK aHT aHT aWX @@ -92090,13 +92886,13 @@ aCG asv azf aNF -aJL -aJL -aJL -aJL -aJL -aJL -aJL +mcp +kfP +kfP +mky +kfP +kfP +kDH aKx aEM aJJ @@ -92342,17 +93138,17 @@ aBI aBI aAb aNF -aJW -aJL -aJL -aJL -aJL -aJL aJL +sOL +kfP +xKu +dxL +dxL +mkc bLR aIM -aSs -aYR +gzf +wxA aTC aUI aSs diff --git a/maps/yw/cryogaia_areas.dm b/maps/yw/cryogaia_areas.dm index 9751ec0318..2a1854dfa4 100644 --- a/maps/yw/cryogaia_areas.dm +++ b/maps/yw/cryogaia_areas.dm @@ -215,6 +215,12 @@ requires_power = 1 base_turf = /turf/space +/area/shuttle/security + name = "\improper Security Interceptor" + icon_state = "shuttle2" + requires_power = 1 + base_turf = /turf/space + // Bad guys!! /area/shuttle/mercenary name = "\improper Mercenary Vessel" @@ -277,6 +283,14 @@ name = "\improper Security Auxiliary Station" icon_state = "security" +/area/security/pilotroom + name = "\improper Security Pilot Ready Room" + icon_state = "red2" + +/area/security/hangar + name = "\improper Security Interceptor Hangar" + icon_state = "security" + /area/security/sorting name = "\improper Security disposals processing" icon_state = "security" diff --git a/maps/yw/cryogaia_shuttles.dm b/maps/yw/cryogaia_shuttles.dm index c72ad8516e..e095ba3ca4 100644 --- a/maps/yw/cryogaia_shuttles.dm +++ b/maps/yw/cryogaia_shuttles.dm @@ -10,6 +10,14 @@ shuttle_area = list(/area/shuttle/excursion) fuel_consumption = 3 +/datum/shuttle/autodock/overmap/security + name = "Security Interceptor" + warmup_time = 0 + current_location = "cryogaia_security_hangar" + docking_controller_tag = "secshuttle_docker" + shuttle_area = list(/area/shuttle/security) + fuel_consumption = 1 //much less, due to being teeny + // The 'ship' of the excursion shuttle /obj/effect/overmap/visitable/ship/landable/excursion name = "Excursion Shuttle" @@ -18,14 +26,31 @@ vessel_size = SHIP_SIZE_SMALL shuttle = "Excursion Shuttle" +/obj/effect/overmap/visitable/ship/landable/security + name = "Security Interceptor" + desc = "An NT-owned high-speed interceptor. Lightly armed." + vessel_mass = 2500 + vessel_size = SHIP_SIZE_SMALL + shuttle = "Security Interceptor" + /obj/machinery/computer/shuttle_control/explore/excursion name = "short jump console" shuttle_tag = "Excursion Shuttle" req_one_access = list(access_pilot) +/obj/machinery/computer/shuttle_control/explore/security + name = "short jump console" + shuttle_tag = "Security Interceptor" + req_one_access = list(access_security) //pilot) + /obj/effect/shuttle_landmark/premade/excursion/cryogaia name = "NSB Cryogaia (Excursion Dock)" landmark_tag = "cryogaia_excursion_hangar" base_turf = /turf/simulated/floor/reinforced base_area = /area/cryogaia/station/excursion_dock +/obj/effect/shuttle_landmark/premade/security/cryogaia + name = "NSB Cryogaia (Security Dock)" + landmark_tag = "cryogaia_security_hangar" + base_turf = /turf/simulated/floor/reinforced + base_area = /area/security/hangar \ No newline at end of file From 53d3df5ccc9b9ba21eff0a2551dec23da416c345 Mon Sep 17 00:00:00 2001 From: Killian <49700375+KillianKirilenko@users.noreply.github.com> Date: Sun, 3 May 2020 23:57:12 +0100 Subject: [PATCH 09/23] sec interceptor pt2 --- maps/yw/cryogaia-05-main.dmm | 2024 +++++++++++++++++----------------- 1 file changed, 1011 insertions(+), 1013 deletions(-) diff --git a/maps/yw/cryogaia-05-main.dmm b/maps/yw/cryogaia-05-main.dmm index 0555ca25ca..90612daac4 100644 --- a/maps/yw/cryogaia-05-main.dmm +++ b/maps/yw/cryogaia-05-main.dmm @@ -13687,16 +13687,6 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/civilian) -"azE" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1380; - id_tag = "secshuttle_docker_pump_out_internal" - }, -/obj/effect/shuttle_landmark/premade/security/cryogaia, -/obj/effect/overmap/visitable/ship/landable/security, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) "azF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet/blue, @@ -62912,34 +62902,6 @@ }, /turf/simulated/floor/tiled/red, /area/security/outpost) -"cwy" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "secshuttle_vent" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"czF" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/security/airlock) -"cIj" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4; - icon_state = "shuttle_chair" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) "cLv" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -62950,55 +62912,53 @@ /obj/machinery/suit_cycler/medical, /turf/simulated/floor/tiled, /area/cryogaia/station/explorer_prep) -"dsZ" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ - frequency = 1380; - id_tag = "secsh_compartment"; - req_one_access = list(1) +"cQs" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"dun" = ( /obj/structure/cable/green{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"dxL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"dlk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"dAq" = ( -/obj/machinery/computer/ship/sensors{ - dir = 4 +"dvt" = ( +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "secpilotoffice"; + name = "Office Shutters"; + pixel_x = -26; + pixel_y = 0; + req_access = list(51) }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) "dDd" = ( /obj/structure/sign/directions/science, /turf/simulated/wall/r_wall, /area/hallway/primary/central_one) -"ekM" = ( -/obj/structure/bed/chair{ - dir = 8 +"dEi" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) +/obj/item/device/geiger/wall{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/dark, +/area/security/airlock) +"ejz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) "eti" = ( /obj/structure/sign/directions/bridge{ icon_state = "direction_bridge"; @@ -63014,26 +62974,132 @@ }, /turf/simulated/floor/tiled, /area/cryogaia/station/explorer_prep) -"exA" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/industrial/danger, +"exo" = ( +/obj/structure/catwalk, +/obj/structure/railing{ + dir = 2; + flags = null + }, +/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, +/area/borealis2/outdoors/grounds) +"eOs" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, /turf/simulated/floor/tiled/dark, /area/security/hangar) +"ePF" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) "eQA" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/sign/directions/science, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"flA" = ( -/obj/structure/table/woodentable, +"eQX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"eZx" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "secshuttle_door_ext"; + locked = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"fkv" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"fsH" = ( +/turf/simulated/floor/reinforced, +/area/security/hangar) +"fxx" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4; + icon_state = "shuttle_chair" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"fAe" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"fre" = ( -/obj/item/device/geiger/wall{ - dir = 1; - pixel_y = -30 +"fIL" = ( +/obj/structure/sign/directions/science, +/turf/simulated/wall, +/area/storage/primary) +"fKR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"fTF" = ( +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/security/airlock) +"geZ" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4; + icon_state = "shuttle_chair" + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"gnf" = ( +/obj/machinery/power/pointdefense{ + id_tag = "secshuttle_pd" + }, +/turf/simulated/floor/plating, +/area/shuttle/security) +"gGx" = ( +/obj/machinery/light, /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -63041,61 +63107,6 @@ }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"fsw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"fIL" = ( -/obj/structure/sign/directions/science, -/turf/simulated/wall, -/area/storage/primary) -"fTJ" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8; - icon_state = "shuttle_chair" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"gdb" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - icon_state = "borderfloorcorner_black"; - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger/corner{ - icon_state = "dangercorner"; - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"gzf" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel, -/area/security/briefing_room) "gOn" = ( /obj/structure/table/standard, /obj/fiftyspawner/steel, @@ -63106,116 +63117,7 @@ /obj/machinery/suit_cycler/captain, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"hgQ" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "secshuttle_dock"; - pixel_x = -32; - req_one_access = list(67) - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"hnU" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"huK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"hRF" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"hYc" = ( -/turf/simulated/floor/reinforced, -/area/security/hangar) -"ifk" = ( -/obj/machinery/computer/ship/helm, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"iGb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/cryogaia/station/explorer_prep) -"iOy" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"iPx" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "secshuttle_docker_pump_out_external" - }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/handrail{ - dir = 4 - }, -/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ - dir = 2; - frequency = 1380; - id_tag = "secshuttle_exterior_sensor"; - master_tag = "secshuttle_docker"; - pixel_x = 0; - pixel_y = 28 - }, -/turf/simulated/floor/plating, -/area/shuttle/security) -"iYW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 1; - id = "secshut_cabinshut"; - layer = 3.1; - name = "Cabin Shutters" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"jto" = ( +"gTB" = ( /obj/structure/table/rack, /obj/item/clothing/mask/breath, /obj/item/clothing/shoes/magboots, @@ -63233,19 +63135,44 @@ /obj/item/clothing/head/helmet/space/void/security, /turf/simulated/floor/tiled/dark, /area/security/airlock) -"jAh" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "secshuttle_door_ext"; - locked = 1 +"gYE" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + icon_state = "borderfloorcorner_black"; + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + icon_state = "dangercorner"; + dir = 4 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"hyW" = ( +/obj/machinery/computer/ship/engines{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/westleft{ + name = "Shuttle Engine Controls" }, /turf/simulated/floor/tiled/dark, /area/shuttle/security) -"jOh" = ( -/obj/structure/fuel_port{ - pixel_y = 32 +"hCr" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel, +/area/security/briefing_room) +"hCK" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -63253,36 +63180,127 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/security) -"kbh" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1; - icon_state = "map" +"hRF" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 }, -/obj/structure/handrail, -/obj/machinery/light{ +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"ikB" = ( +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"iqX" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/machinery/button/remote/airlock{ + desiredstate = 1; + id = "secsh_compartment"; + name = "Compartment Access"; + pixel_x = 6; + pixel_y = -24; + specialfunctions = 4 + }, +/obj/machinery/button/remote/airlock{ + desiredstate = 1; + id = "secsh_cabin"; + name = "Cabin Lockdown"; + pixel_x = -6; + pixel_y = -24; + specialfunctions = 4 + }, +/obj/machinery/button/remote/blast_door{ dir = 4; - icon_state = "tube1"; - pixel_x = 0 + id = "secshut_cabinshut"; + name = "Cabin Blast Shutters"; + pixel_x = -26; + pixel_y = -26; + req_access = list(51) }, /turf/simulated/floor/tiled/dark, /area/shuttle/security) -"kfP" = ( +"iwZ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"kgq" = ( +"iGb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/cryogaia/station/explorer_prep) +"iTL" = ( /obj/structure/bed/chair/shuttle{ dir = 8; icon_state = "shuttle_chair" }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, /turf/simulated/floor/tiled/dark, /area/shuttle/security) -"kuL" = ( -/obj/effect/landmark/start{ - name = "Security Pilot" +"jSg" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 4 + }, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"jTO" = ( +/obj/structure/table/woodentable, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"kwa" = ( +"jVf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"kbd" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1380; + id_tag = "secsh_cabin"; + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"klk" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8; frequency = 1380; @@ -63302,8 +63320,16 @@ }, /turf/simulated/floor/tiled/dark, /area/shuttle/security) -"kDH" = ( -/obj/machinery/light, +"kqM" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "secpilotoffice"; + layer = 3.1; + name = "Office Shutters" + }, /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -63311,11 +63337,53 @@ }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"kNH" = ( -/obj/machinery/power/pointdefense{ - id_tag = "secshuttle_pd" +"kBF" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 }, -/turf/simulated/floor/plating, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"kDK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"kGY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/effect/shuttle_landmark/premade/security/cryogaia, +/obj/effect/overmap/visitable/ship/landable/security, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"kJy" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "secshut_cabinshut"; + layer = 3.1; + name = "Cabin Shutters" + }, +/turf/simulated/floor/tiled/dark, /area/shuttle/security) "kOa" = ( /obj/structure/table/rack/shelf, @@ -63326,35 +63394,67 @@ /obj/item/clothing/head/helmet/space/void/medical, /turf/simulated/floor/tiled, /area/cryogaia/station/explorer_prep) -"lfe" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - icon_state = "borderfloorcorner_black"; +"kVI" = ( +/obj/machinery/suit_cycler/security, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"kXs" = ( +/obj/effect/floor_decal/snow/floor/edges{ dir = 1 }, -/obj/effect/floor_decal/industrial/danger/corner{ - icon_state = "dangercorner"; +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ dir = 8 }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"lfo" = ( -/obj/machinery/button/remote/blast_door{ +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"laO" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/steel, +/area/security/briefing_room) +"ldL" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"lnK" = ( +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/machinery/firealarm{ dir = 4; - id = "secpilotoffice"; - name = "Office Shutters"; - pixel_x = -26; - pixel_y = 0; - req_access = list(51) + layer = 3.3; + pixel_x = 26 }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"lph" = ( -/obj/machinery/suit_cycler/security, +"lpH" = ( +/obj/structure/table/woodentable, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) "lAq" = ( @@ -63369,41 +63469,20 @@ }, /turf/simulated/floor/plating, /area/maintenance/bridge) -"lRW" = ( +"lNq" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"lUT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"mcp" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/machinery/door/window/brigdoor/southright{ - req_one_access = list(1) - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/weapon/tank/jetpack/oxygen, -/obj/item/clothing/suit/space/void/security/alt, -/obj/item/clothing/head/helmet/space/void/security/alt, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"meG" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) +/area/security/hangar) "mjD" = ( /obj/machinery/photocopier, /turf/simulated/floor/tiled/dark, @@ -63415,55 +63494,6 @@ /obj/effect/floor_decal/snow/floor/edges, /turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, /area/borealis2/outdoors/grounds) -"mkc" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"mky" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"moE" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/southleft{ - req_one_access = list(1) - }, -/obj/item/weapon/tank/jetpack/oxygen, -/obj/item/clothing/suit/space/void/security/alt, -/obj/item/clothing/head/helmet/space/void/security/alt, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"mvo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 6 - }, -/turf/simulated/wall/rshull, -/area/shuttle/security) "mBp" = ( /obj/structure/table/marble, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -63482,65 +63512,53 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"mEp" = ( -/obj/structure/bed/chair{ - dir = 8 +"mUx" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8; + icon_state = "map" }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "secshuttle_sensor"; + master_tag = "expshuttle_docker"; + pixel_y = 28 }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"nfn" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 +/obj/structure/handrail, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"nlr" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"npe" = ( -/obj/machinery/sleep_console, /turf/simulated/floor/tiled/dark, /area/shuttle/security) -"nra" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "secpilotoffice"; - layer = 3.1; - name = "Office Shutters" +"nej" = ( +/obj/machinery/shipsensors{ + dir = 1 }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) +/turf/simulated/floor/reinforced, +/area/shuttle/security) +"nfY" = ( +/obj/machinery/power/smes/buildable/point_of_interest, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"nqZ" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"nsD" = ( +/turf/simulated/wall/rshull, +/area/shuttle/security) +"nJK" = ( +/obj/machinery/atmospherics/pipe/tank/phoron, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) "nKF" = ( /obj/structure/sign/directions/security{ icon_state = "direction_sec"; @@ -63548,11 +63566,41 @@ }, /turf/simulated/wall/r_wall, /area/hallway/primary/central_one) -"nLu" = ( -/obj/machinery/shipsensors{ +"nWz" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"ocl" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "secshuttle_docker_pump_out_external" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/handrail{ + dir = 4 + }, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 2; + frequency = 1380; + id_tag = "secshuttle_exterior_sensor"; + master_tag = "secshuttle_docker"; + pixel_x = 0; + pixel_y = 28 + }, +/turf/simulated/floor/plating, +/area/shuttle/security) +"omh" = ( +/obj/machinery/atmospherics/unary/engine{ + icon_state = "nozzle"; dir = 1 }, /turf/simulated/floor/reinforced, +/turf/simulated/shuttle/plating/airless/carry, /area/shuttle/security) "ovS" = ( /obj/machinery/door/airlock/glass_external/freezable{ @@ -63560,46 +63608,15 @@ }, /turf/simulated/floor/plating, /area/borealis2/outdoors/grounds/traderpad) -"oAx" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +"oAt" = ( +/obj/effect/floor_decal/borderfloorblack/corner, +/obj/effect/floor_decal/industrial/danger/corner, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" }, /turf/simulated/floor/tiled/dark, /area/security/hangar) -"oDH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"oNw" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"oNI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/turf/simulated/wall/rshull, -/area/shuttle/security) "oRX" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -63610,25 +63627,18 @@ /obj/structure/sign/directions/engineering, /turf/simulated/wall/r_wall, /area/hallway/primary/central_one) -"pgo" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +"peN" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"phB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"psv" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, +/turf/simulated/floor/reinforced, /area/security/hangar) +"ppD" = ( +/obj/machinery/sleep_console, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) "pxX" = ( /obj/structure/cable/green{ d1 = 4; @@ -63655,97 +63665,7 @@ }, /turf/simulated/floor/tiled/steel, /area/security/hallway) -"pzP" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/obj/machinery/button/remote/airlock{ - desiredstate = 1; - id = "secsh_compartment"; - name = "Compartment Access"; - pixel_x = 6; - pixel_y = -24; - specialfunctions = 4 - }, -/obj/machinery/button/remote/airlock{ - desiredstate = 1; - id = "secsh_cabin"; - name = "Cabin Lockdown"; - pixel_x = -6; - pixel_y = -24; - specialfunctions = 4 - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "secshut_cabinshut"; - name = "Cabin Blast Shutters"; - pixel_x = -26; - pixel_y = 26; - req_access = list(51) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"pCD" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"pFO" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8; - icon_state = "shuttle_chair" - }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"pPi" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"qfY" = ( -/obj/structure/sign/directions/security, -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_one) -"qnz" = ( -/obj/machinery/pointdefense_control{ - id_tag = "secshuttle_pd"; - name = "shuttle laser FCS" - }, -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"qtm" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"qYa" = ( +"pCJ" = ( /obj/structure/table/rack, /obj/item/clothing/mask/breath, /obj/item/clothing/shoes/magboots, @@ -63761,46 +63681,95 @@ /obj/item/clothing/head/helmet/space/void/security, /turf/simulated/floor/tiled/dark, /area/security/airlock) -"rax" = ( +"pMp" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; + dir = 8; frequency = 1380; - id_tag = "secshuttle_docker_pump_out_internal" + id_tag = "secshuttle_vent" }, /turf/simulated/floor/tiled/dark, /area/shuttle/security) -"rkQ" = ( -/obj/effect/floor_decal/borderfloorblack{ +"pMx" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/structure/window/reinforced{ dir = 8 }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 +/obj/machinery/door/window/brigdoor/southleft{ + req_one_access = list(1) }, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/suit/space/void/security/alt, +/obj/item/clothing/head/helmet/space/void/security/alt, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"pQR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"pWr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"qfY" = ( +/obj/structure/sign/directions/security, +/turf/simulated/wall/r_wall, +/area/hallway/primary/central_one) +"qgD" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "secpilotoffice"; + layer = 3.1; + name = "Office Shutters" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"qrR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"qtj" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"ryD" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1380; + id_tag = "secsh_compartment"; + req_one_access = list(1) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"rzY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1; + icon_state = "map" + }, +/obj/structure/handrail, /obj/machinery/light{ dir = 4; icon_state = "tube1"; pixel_x = 0 }, /turf/simulated/floor/tiled/dark, -/area/security/hangar) -"rMg" = ( -/obj/structure/table/woodentable, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"rME" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) +/area/shuttle/security) "sdy" = ( /obj/structure/table/rack, /obj/machinery/door/window/brigdoor/northright{ @@ -63823,19 +63792,56 @@ /obj/item/clothing/head/helmet/space/void/captain, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"sOL" = ( +"sgB" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"sAG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 1; + id = "secshut_cabinshut"; + layer = 3.1; + name = "Cabin Shutters" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"sDB" = ( +/obj/machinery/computer/shuttle_control/explore/security, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"sMV" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"sUn" = ( +/turf/simulated/wall/r_wall, +/area/security/hangar) +"sZv" = ( /obj/machinery/alarm{ frequency = 1441; pixel_y = 22 }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "0-4" }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"sWL" = ( /turf/simulated/floor/tiled/dark, /area/shuttle/security) "tbF" = ( @@ -63844,133 +63850,30 @@ /obj/structure/sign/directions/engineering, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"tgn" = ( -/obj/structure/catwalk, -/obj/structure/railing{ - dir = 2; - flags = null - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"tjy" = ( -/obj/effect/floor_decal/borderfloorblack/corner, -/obj/effect/floor_decal/industrial/danger/corner, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"tnf" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/reinforced, -/area/security/hangar) -"txE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "secshut_cabinshut"; - layer = 3.1; - name = "Cabin Shutters" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"tUI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ +"tlQ" = ( +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"twd" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"txc" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + icon_state = "borderfloorcorner_black"; dir = 1 }, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"ugG" = ( -/obj/effect/shuttle_landmark/automatic, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"uvn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/item/device/geiger/wall{ - dir = 4; - pixel_x = -30 - }, -/turf/simulated/floor/tiled/dark, -/area/security/airlock) -"uyh" = ( -/obj/machinery/door/airlock/multi_tile/metal{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "secshuttle_door_ext"; - locked = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"uGo" = ( -/obj/machinery/power/smes/buildable/point_of_interest, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"uHW" = ( -/obj/machinery/atmospherics/pipe/tank/phoron, -/obj/structure/window/reinforced{ +/obj/effect/floor_decal/industrial/danger/corner{ + icon_state = "dangercorner"; dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"uIE" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8; - icon_state = "map" - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "secshuttle_sensor"; - master_tag = "expshuttle_docker"; - pixel_y = 28 - }, -/obj/structure/handrail, /obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"uQG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ dir = 4; - id = "secshut_cabinshut"; - layer = 3.1; - name = "Cabin Shutters" + icon_state = "tube1"; + pixel_x = 0 }, /turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"uYC" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "secpilotoffice"; - layer = 3.1; - name = "Office Shutters" - }, +/area/security/hangar) +"tPD" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -63978,28 +63881,50 @@ }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"vkx" = ( -/obj/machinery/computer/shuttle_control/explore/security, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"vkM" = ( -/turf/simulated/wall/r_wall, -/area/security/hangar) -"vlj" = ( -/obj/structure/bed/chair/shuttle{ +"tUH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"ueV" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/structure/window/reinforced{ dir = 4; - icon_state = "shuttle_chair" + health = 1e+006 + }, +/obj/machinery/door/window/brigdoor/southright{ + req_one_access = list(1) }, /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 1 + }, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/suit/space/void/security/alt, +/obj/item/clothing/head/helmet/space/void/security/alt, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"ugG" = ( +/obj/effect/shuttle_landmark/automatic, +/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, +/area/borealis2/outdoors/grounds) +"uRn" = ( +/obj/structure/fuel_port{ + pixel_y = 32 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, /area/shuttle/security) -"vDg" = ( -/turf/simulated/wall/rshull, -/area/shuttle/security) -"vXc" = ( +"uSl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -64009,29 +63934,87 @@ }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"wxA" = ( +"vrt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "secshut_cabinshut"; + layer = 3.1; + name = "Cabin Shutters" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"vNI" = ( +/obj/machinery/computer/ship/sensors{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"vSJ" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/machinery/light, +/obj/machinery/pointdefense_control{ + id_tag = "secshuttle_pd"; + name = "shuttle laser FCS" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"vUc" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"win" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"wrr" = ( +/obj/item/device/geiger/wall{ + dir = 1; + pixel_y = -30 + }, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled/steel, -/area/security/briefing_room) -"wIO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/area/security/pilotroom) +"wvK" = ( +/obj/effect/landmark/start{ + name = "Security Pilot" }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) +"wwu" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8; + icon_state = "shuttle_chair" + }, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) "wLk" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -64040,7 +64023,7 @@ /obj/structure/window/reinforced/full, /turf/simulated/floor/plating, /area/borealis2/outdoors/grounds/traderpad) -"xds" = ( +"wRJ" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" }, @@ -64057,36 +64040,51 @@ }, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds/power) -"xwl" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ +"xcL" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; - id_tag = "secsh_cabin"; + id_tag = "secshuttle_dock"; + pixel_x = -32; req_one_access = list(67) }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"xIA" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"xKu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"ygj" = ( -/obj/machinery/atmospherics/unary/engine{ - icon_state = "nozzle"; - dir = 1 +"xuT" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "secshuttle_docker_pump_out_internal" }, -/turf/simulated/floor/reinforced, -/turf/simulated/shuttle/plating/airless/carry, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"xvK" = ( +/obj/machinery/computer/ship/helm, +/turf/simulated/floor/tiled/dark, +/area/shuttle/security) +"xDE" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"xTN" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "secshuttle_door_ext"; + locked = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, /area/shuttle/security) "ylY" = ( /obj/machinery/door/airlock/glass_engineering{ @@ -88117,7 +88115,7 @@ aag aag bCF aVP -tgn +exo aag aag aKZ @@ -88367,11 +88365,11 @@ aKr aKr aKr aKr -nlr -pCD -xds -qtm -qtm +jSg +ldL +wRJ +sgB +sgB aKr aKr aKr @@ -88621,7 +88619,7 @@ aag aag bCF aVP -tgn +exo aag aag aag @@ -88851,27 +88849,27 @@ aag aag aag aag -vkM -vkM -vkM -vkM -vkM -vkM -vkM -vkM -vkM -vkM -vkM -vkM -vkM -vkM -vkM -vkM -vkM +sUn +sUn +sUn +sUn +sUn +sUn +sUn +sUn +sUn +sUn +sUn +sUn +sUn +sUn +sUn +sUn +sUn aag aag aaN -nfn +kXs aGk bbg bbg @@ -89103,23 +89101,23 @@ aag aag aag aag -vkM -tjy -rME -rME -rME -rME -rME -rME -iOy -rME -rME -rME -rME -rME -rME -gdb -vkM +sUn +oAt +eOs +eOs +eOs +eOs +eOs +eOs +xDE +eOs +eOs +eOs +eOs +eOs +eOs +gYE +sUn aag aag aag @@ -89355,23 +89353,23 @@ aag aag aag aag -vkM -exA -hYc -hYc -hYc -hYc -hYc -kNH -vDg -vDg -vDg -hYc -hYc -hYc -hYc -psv -vkM +sUn +qtj +fsH +fsH +fsH +fsH +fsH +gnf +nsD +nsD +nsD +fsH +fsH +fsH +fsH +fkv +sUn aag aag aag @@ -89607,23 +89605,23 @@ aag aag aag aag -vkM -exA -nLu -vDg -txE -vDg -vDg -vDg -vDg +sUn +qtj +nej +nsD +kJy +nsD +nsD +nsD +nsD aZQ -huK -vDg -jAh -mvo -ygj -psv -vkM +ejz +nsD +eZx +win +omh +fkv +sUn aag aag aag @@ -89859,23 +89857,23 @@ aag aag aag aag -vkM -exA -vDg -vDg -dAq -vDg -uGo -cIj -vlj -xIA -oNI -uIE -fsw -tUI -ygj -psv -vkM +sUn +qtj +nsD +nsD +vNI +nsD +nfY +fxx +geZ +nqZ +eQX +mUx +kGY +jVf +omh +fkv +sUn aag aag aaN @@ -90111,23 +90109,23 @@ aag aag aag aag -vkM -exA -iYW -ifk -pzP -vDg -hnU -lRW -sWL -npe -vDg -kwa -cwy -uyh -hYc -psv -vkM +sUn +qtj +sAG +xvK +iqX +nsD +sZv +hCK +ikB +ppD +nsD +klk +pMp +xTN +fsH +fkv +sUn aag aag aag @@ -90363,23 +90361,23 @@ aag aag aag aag -vkM -exA -iYW -vkx -sWL -xwl -lRW -lRW -sWL -sWL +sUn +qtj +sAG +sDB +ikB +kbd +hCK +hCK +ikB +ikB bhm -rax -azE -sWL -hYc -psv -vkM +xuT +xuT +kDK +fsH +fkv +sUn aag aag aag @@ -90615,23 +90613,23 @@ aag aag aag aag -vkM -exA -vDg -vDg -qnz -vDg -jOh -fTJ -pFO -kgq -vDg -kbh +sUn +qtj +nsD +nsD +vSJ +nsD +uRn +iTL +wwu +hyW +nsD +rzY aHU -tUI -ygj -psv -vkM +jVf +omh +fkv +sUn aIK aIK aIK @@ -90867,23 +90865,23 @@ aag aag aag aag -vkM -exA -nLu -vDg -uQG -vDg -dsZ -vDg -vDg -uHW -lUT -lUT +sUn +qtj +fsH +nsD +vrt +nsD +ryD +nsD +nsD +nJK +pQR +pQR blP blI -ygj -psv -vkM +omh +fkv +sUn bhp aQh aNz @@ -91119,23 +91117,23 @@ aag aag aag aag -vkM -exA -hYc -hYc -hYc -hYc -tnf -kNH -vDg -vDg -vDg -iPx -hYc -hYc -hYc -psv -vkM +sUn +qtj +fsH +fsH +fsH +fsH +peN +gnf +nsD +nsD +nsD +ocl +fsH +fsH +fsH +fkv +sUn aNA aRy aIK @@ -91371,23 +91369,23 @@ aag aag aag aEu -vkM -vkM -vkM -rkQ +sUn +sUn +sUn +kBF hRF hRF -oAx +lNq hRF hRF hRF -rkQ +kBF hRF hRF hRF hRF -lfe -vkM +txc +sUn aNy aNy aHT @@ -91628,9 +91626,9 @@ aGl aHf aJL aJL -nra -uYC -nra +qgD +kqM +qgD aJL aKt aHT @@ -91878,18 +91876,18 @@ akb aFs aGm aHf -pPi -hgQ -flA -rMg -flA -lfo -meG +vUc +xcL +lpH +jTO +lpH +dvt +twd aHT auQ aSn aXN -uvn +dEi auQ aHT aQi @@ -92130,15 +92128,15 @@ akb akA aGn aHf -kfP -kfP -ekM -mEp -oNw -wIO -dun +tlQ +tlQ +iwZ +sMV +cQs +fAe +nWz aHT -jto +gTB aOw aXO aOk @@ -92382,16 +92380,16 @@ aDy aFt aGo aHf -lph -kfP -kuL -pgo -kfP -kfP -fre +kVI +tlQ +wvK +fKR +tlQ +tlQ +wrr aHT -qYa -czF +pCJ +fTF aXT aSq aRm @@ -92634,13 +92632,13 @@ akb akb aGp aHf -moE -kfP -phB -vXc -kuL -kfP -oDH +pMx +tlQ +dlk +uSl +wvK +tlQ +tPD aKx aHT aIK @@ -92886,13 +92884,13 @@ aCG asv azf aNF -mcp -kfP -kfP -mky -kfP -kfP -kDH +ueV +tlQ +tlQ +qrR +tlQ +tlQ +gGx aKx aEM aJJ @@ -93139,16 +93137,16 @@ aBI aAb aNF aJL -sOL -kfP -xKu -dxL -dxL -mkc +lnK +tlQ +tUH +pWr +pWr +ePF bLR aIM -gzf -wxA +hCr +laO aTC aUI aSs From 1b28303160b998e7fe00c060fa46b03e94c57eca Mon Sep 17 00:00:00 2001 From: Killian <49700375+KillianKirilenko@users.noreply.github.com> Date: Mon, 4 May 2020 11:32:06 +0100 Subject: [PATCH 10/23] sec interceptor pt3 --- maps/yw/cryogaia-05-main.dmm | 2985 ++++++++++++++++++---------------- maps/yw/cryogaia_defines.dm | 3 +- 2 files changed, 1619 insertions(+), 1369 deletions(-) diff --git a/maps/yw/cryogaia-05-main.dmm b/maps/yw/cryogaia-05-main.dmm index 90612daac4..4b4f351c2a 100644 --- a/maps/yw/cryogaia-05-main.dmm +++ b/maps/yw/cryogaia-05-main.dmm @@ -13687,6 +13687,17 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/civilian) +"azE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/effect/shuttle_landmark/premade/security/cryogaia, +/obj/effect/overmap/visitable/ship/landable/security, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "secshuttle_docker_pump_out_internal" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) "azF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet/blue, @@ -16249,10 +16260,6 @@ /obj/structure/lattice, /turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, /area/borealis2/outdoors/grounds/solars) -"aEu" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, -/area/maintenance/medbay) "aEv" = ( /obj/structure/closet/crate/medical, /obj/item/weapon/surgical/surgicaldrill, @@ -17197,16 +17204,6 @@ /obj/effect/overlay/snow/floor, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds/solars) -"aGk" = ( -/obj/machinery/door/window/brigdoor/westleft{ - name = "Security Checkpoint"; - req_access = list(1) - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) "aGl" = ( /obj/structure/disposalpipe/down{ dir = 4 @@ -17942,6 +17939,13 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/captain) +"aHN" = ( +/obj/machinery/door/window/brigdoor/westleft{ + name = "Security Checkpoint"; + req_access = list(1) + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) "aHO" = ( /obj/machinery/power/tracker, /obj/structure/cable/yellow{ @@ -17985,14 +17989,16 @@ /turf/simulated/wall, /area/security/airlock) "aHU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "secshuttle_door_ext"; + locked = 1 }, -/obj/structure/handrail{ - dir = 1 +/obj/effect/floor_decal/industrial/danger{ + dir = 4 }, -/turf/simulated/floor/tiled/dark, +/turf/simulated/floor/tiled/techfloor, /area/shuttle/security) "aHV" = ( /turf/simulated/wall/r_wall, @@ -18324,56 +18330,12 @@ dir = 1 }, /obj/structure/railing, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"aIG" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/catwalk, /obj/effect/floor_decal/snow/floor/edges{ dir = 1 }, /obj/effect/floor_decal/snow/floor/edges, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds/power) -"aIH" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"aII" = ( -/obj/effect/floor_decal/rust, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"aIJ" = ( -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) "aIK" = ( /turf/simulated/wall/r_wall, /area/security/airlock) @@ -18761,16 +18723,6 @@ /obj/structure/cable/heavyduty, /turf/simulated/floor/plating/snow/plating, /area/maintenance/auxsolarport) -"aJD" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Solar Farm Output"; - name_tag = "Solar Farm Output" - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) "aJE" = ( /obj/item/weapon/folder/red, /obj/structure/table/glass, @@ -19130,24 +19082,6 @@ }, /turf/simulated/floor/plating/snow/plating, /area/maintenance/auxsolarport) -"aKr" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) "aKs" = ( /obj/structure/sign/securearea, /turf/simulated/wall, @@ -20978,6 +20912,10 @@ }, /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) +"aOh" = ( +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) "aOj" = ( /obj/structure/grille, /obj/machinery/door/firedoor/border_only, @@ -22123,7 +22061,12 @@ /turf/simulated/floor/plating, /area/security/airlock) "aQi" = ( -/turf/simulated/floor/plating, +/obj/item/device/geiger/wall{ + dir = 4; + pixel_x = -30 + }, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled/dark, /area/security/briefing_room) "aQj" = ( /obj/structure/sign/securearea{ @@ -22778,6 +22721,7 @@ /obj/item/weapon/tank/jetpack/oxygen, /obj/item/clothing/suit/space/void/security, /obj/item/clothing/head/helmet/space/void/security, +/obj/item/device/gps/security, /turf/simulated/floor/tiled/dark, /area/security/airlock) "aRn" = ( @@ -23470,6 +23414,11 @@ req_access = newlist(); req_one_access = list(2,1,52) }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/tiled/dark, /area/security/airlock) "aSH" = ( @@ -25189,10 +25138,6 @@ }, /turf/simulated/floor/tiled/dark, /area/security/warden) -"aVP" = ( -/obj/structure/catwalk, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) "aVQ" = ( /obj/effect/floor_decal/corner/red{ dir = 4 @@ -25889,6 +25834,7 @@ /obj/item/weapon/tank/jetpack/oxygen, /obj/item/clothing/suit/space/void/security, /obj/item/clothing/head/helmet/space/void/security, +/obj/item/device/gps/security, /turf/simulated/floor/tiled/dark, /area/security/airlock) "aWW" = ( @@ -25912,10 +25858,10 @@ /area/security/armoury) "aWX" = ( /obj/machinery/door/airlock/maintenance/sec{ - name = "Security Maintenance"; + name = "Security Closet"; req_access = list(1,12) }, -/turf/simulated/floor/plating, +/turf/simulated/floor/tiled/dark, /area/security/briefing_room) "aWY" = ( /obj/structure/cable/green{ @@ -26399,6 +26345,11 @@ d2 = 4; icon_state = "1-4" }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/tiled/dark, /area/security/airlock) "aXO" = ( @@ -27567,7 +27518,7 @@ dir = 4; health = 1e+006 }, -/turf/simulated/floor/tiled/dark, +/turf/simulated/floor/plating, /area/shuttle/security) "aZR" = ( /obj/machinery/atmospherics/unary/vent_pump/on, @@ -28320,6 +28271,13 @@ /obj/structure/closet/crate/medical, /turf/simulated/floor/tiled, /area/quartermaster/warehouse) +"bbc" = ( +/obj/machinery/atmospherics/pipe/tank/phoron, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/security) "bbd" = ( /obj/machinery/power/solar{ id = "starboardsolar"; @@ -31985,11 +31943,8 @@ /turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, /area/borealis2/outdoors/grounds) "bhm" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ - frequency = 1380; - id_tag = "secshuttle_door_int" - }, -/turf/simulated/floor/tiled/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/wall/rshull, /area/shuttle/security) "bhn" = ( /obj/machinery/alarm{ @@ -34593,9 +34548,8 @@ /turf/simulated/floor/tiled/dark, /area/security/tactical) "blI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - icon_state = "map"; - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 }, /turf/simulated/wall/rshull, /area/shuttle/security) @@ -34622,6 +34576,14 @@ }, /turf/simulated/floor/tiled/dark, /area/security/tactical) +"blM" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) "blN" = ( /turf/simulated/wall, /area/security/detectives_office) @@ -34634,16 +34596,6 @@ }, /turf/simulated/floor/tiled/steel, /area/security/hallway) -"blP" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "secshuttle_door_ext"; - locked = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) "blQ" = ( /obj/effect/floor_decal/corner/red{ dir = 4 @@ -37099,10 +37051,6 @@ /obj/structure/closet/secure_closet/security, /obj/effect/floor_decal/industrial/outline, /obj/item/clothing/suit/armor/vest/wolftaur, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -37659,10 +37607,6 @@ "brC" = ( /obj/structure/closet/secure_closet/security, /obj/effect/floor_decal/industrial/outline, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -38417,16 +38361,6 @@ /obj/vehicle/train/trolley, /turf/simulated/floor/tiled/steel_grid, /area/engineering/workshop) -"bsO" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/floor_decal/industrial/outline, -/obj/item/clothing/shoes/boots/jackboots/toeless, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) "bsP" = ( /obj/item/weapon/stool/padded, /obj/machinery/camera/network/security{ @@ -38926,21 +38860,6 @@ /obj/effect/overlay/snow/floor, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds/solars) -"btO" = ( -/obj/effect/floor_decal/rust, -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-4" - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) "btP" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -41945,10 +41864,10 @@ /turf/simulated/floor/reinforced, /area/shuttle/excursion) "byP" = ( -/obj/effect/floor_decal/snow/floor/edges{ +/obj/effect/floor_decal/snow/floor/edges, +/obj/effect/floor_decal/snow/floor/edges3{ dir = 8 }, -/obj/effect/floor_decal/snow/floor/edges, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds) "byQ" = ( @@ -62902,6 +62821,44 @@ }, /turf/simulated/floor/tiled/red, /area/security/outpost) +"cmg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"czv" = ( +/obj/machinery/light, +/obj/machinery/computer/ship/engines{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"cDa" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"cKf" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "secshuttle_vent" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) "cLv" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -62912,52 +62869,111 @@ /obj/machinery/suit_cycler/medical, /turf/simulated/floor/tiled, /area/cryogaia/station/explorer_prep) -"cQs" = ( -/obj/structure/bed/chair{ - dir = 8 +"dft" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "secshut_cabinshut"; + layer = 3.1; + name = "Cabin Shutters" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"dtD" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/steel, +/area/security/briefing_room) +"dvG" = ( +/obj/machinery/light, +/obj/machinery/power/smes/buildable/point_of_interest, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"dDd" = ( +/obj/structure/sign/directions/science, +/turf/simulated/wall/r_wall, +/area/hallway/primary/central_one) +"dEK" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"dlk" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"dvt" = ( -/obj/machinery/button/remote/blast_door{ +/area/security/briefing_room) +"dIg" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "secshuttle_door_ext"; + locked = 1 + }, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 10; + frequency = 1380; + id_tag = "secshuttle_exterior_sensor"; + master_tag = "secshuttle_docker"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/effect/floor_decal/industrial/danger{ + icon_state = "danger"; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"dOa" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"ekF" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8; + icon_state = "shuttle_chair" + }, +/obj/machinery/light{ dir = 4; - id = "secpilotoffice"; - name = "Office Shutters"; - pixel_x = -26; - pixel_y = 0; - req_access = list(51) + icon_state = "tube1" }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"dDd" = ( -/obj/structure/sign/directions/science, -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_one) -"dEi" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +/obj/structure/closet/walllocker/emerglocker/east, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"emd" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/secure_closet{ + name = "confiscated goods storage"; + req_one_access = list(1) }, -/obj/item/device/geiger/wall{ - dir = 4; - pixel_x = -30 - }, -/turf/simulated/floor/tiled/dark, -/area/security/airlock) -"ejz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/wall/rshull, +/turf/simulated/floor/tiled/techfloor, /area/shuttle/security) "eti" = ( /obj/structure/sign/directions/bridge{ @@ -62974,39 +62990,31 @@ }, /turf/simulated/floor/tiled, /area/cryogaia/station/explorer_prep) -"exo" = ( -/obj/structure/catwalk, -/obj/structure/railing{ - dir = 2; - flags = null - }, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"eOs" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"ePF" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; +"eyh" = ( +/turf/simulated/wall/rshull, +/area/shuttle/security) +"ezr" = ( +/obj/structure/cable/heavyduty{ icon_state = "2-8" }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 1 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 4 + }, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"eGd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) "eQA" = ( @@ -63015,73 +63023,149 @@ /obj/structure/sign/directions/science, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"eQX" = ( +"eTr" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; + dir = 5; icon_state = "intact" }, /turf/simulated/wall/rshull, /area/shuttle/security) -"eZx" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "secshuttle_door_ext"; - locked = 1 +"fcS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 }, -/turf/simulated/floor/tiled/dark, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "secshut_cabinshut"; + layer = 3.1; + name = "Cabin Shutters" + }, +/turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"fkv" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, +"fnq" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight, +/obj/item/device/radio, /turf/simulated/floor/tiled/dark, -/area/security/hangar) -"fsH" = ( -/turf/simulated/floor/reinforced, -/area/security/hangar) -"fxx" = ( +/area/security/briefing_room) +"ftI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"fzi" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 4 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Solar Farm Output"; + name_tag = "Solar Farm Output" + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"fAj" = ( /obj/structure/bed/chair/shuttle{ - dir = 4; + dir = 8; icon_state = "shuttle_chair" }, +/obj/structure/fuel_port{ + dir = 4; + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"fCH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"fGG" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"fIL" = ( +/obj/structure/sign/directions/science, +/turf/simulated/wall, +/area/storage/primary) +"fNv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"gbW" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; icon_state = "1-4" }, -/turf/simulated/floor/tiled/dark, +/turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"fAe" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +"giI" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "secshuttle_docker_pump_out_internal" }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"fIL" = ( -/obj/structure/sign/directions/science, -/turf/simulated/wall, -/area/storage/primary) -"fKR" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"gkF" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1380; + id_tag = "secsh_compartment"; + req_one_access = list(1) + }, +/obj/effect/floor_decal/industrial/danger{ dir = 4 }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"gqc" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "secshuttle_vent" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"gsF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/woodentable, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"fTF" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/security/airlock) -"geZ" = ( +"guA" = ( /obj/structure/bed/chair/shuttle{ dir = 4; icon_state = "shuttle_chair" @@ -63090,23 +63174,9 @@ dir = 8; icon_state = "tube1" }, -/turf/simulated/floor/tiled/dark, +/obj/structure/closet/walllocker/emerglocker/west, +/turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"gnf" = ( -/obj/machinery/power/pointdefense{ - id_tag = "secshuttle_pd" - }, -/turf/simulated/floor/plating, -/area/shuttle/security) -"gGx" = ( -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) "gOn" = ( /obj/structure/table/standard, /obj/fiftyspawner/steel, @@ -63117,25 +63187,147 @@ /obj/machinery/suit_cycler/captain, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"gTB" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, +"gSA" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/donkpockets, +/turf/simulated/floor/tiled/dark, +/area/security/briefing_room) +"gXV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"hml" = ( +/obj/structure/catwalk, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 1 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"hMM" = ( +/obj/structure/closet/crate, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/storage/box/cups, +/turf/simulated/floor/tiled/dark, +/area/security/briefing_room) +"hMS" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/obj/effect/floor_decal/snow/floor/edges, +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"hOH" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + icon_state = "borderfloorcorner_black"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + icon_state = "dangercorner"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"hQo" = ( +/obj/effect/floor_decal/borderfloorblack/corner, +/obj/effect/floor_decal/industrial/danger/corner, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"hRF" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "secshuttle_dock"; + pixel_x = 32; + req_one_access = list(19,43,67) + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"ica" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"icd" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"iwa" = ( +/turf/simulated/floor/reinforced, +/area/security/hangar) +"iGb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, /obj/structure/window/reinforced{ dir = 8 }, -/obj/machinery/door/window/brigdoor/southleft{ - req_one_access = list(1) - }, -/obj/machinery/light{ +/obj/structure/window/reinforced{ dir = 1 }, -/obj/item/weapon/tank/jetpack/oxygen, -/obj/item/clothing/suit/space/void/security, -/obj/item/clothing/head/helmet/space/void/security, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/cryogaia/station/explorer_prep) +"iLp" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + icon_state = "borderfloorcorner_black"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + icon_state = "dangercorner"; + dir = 8 + }, /turf/simulated/floor/tiled/dark, -/area/security/airlock) -"gYE" = ( +/area/security/hangar) +"iUu" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"iVl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"iZX" = ( /obj/effect/floor_decal/borderfloorblack/corner{ icon_state = "borderfloorcorner_black"; dir = 4 @@ -63150,49 +63342,45 @@ }, /turf/simulated/floor/tiled/dark, /area/security/hangar) -"hyW" = ( -/obj/machinery/computer/ship/engines{ - dir = 8 +"jbK" = ( +/obj/structure/table/standard, +/obj/structure/extinguisher_cabinet{ + pixel_y = -26 }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/brigdoor/westleft{ - name = "Shuttle Engine Controls" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"hCr" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel, -/area/security/briefing_room) -"hCK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; +/obj/structure/cable{ icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark, +/turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"hRF" = ( -/obj/effect/floor_decal/borderfloorblack{ +"jGL" = ( +/obj/structure/catwalk, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/railing{ dir = 8 }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"jJi" = ( +/obj/machinery/light{ + dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"ikB" = ( -/turf/simulated/floor/tiled/dark, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"jQr" = ( +/obj/machinery/pointdefense_control{ + id_tag = "secshuttle_pd"; + name = "shuttle laser FCS" + }, +/turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"iqX" = ( +"jUf" = ( /obj/structure/bed/chair/shuttle{ dir = 1 }, @@ -63216,175 +63404,60 @@ dir = 4; id = "secshut_cabinshut"; name = "Cabin Blast Shutters"; - pixel_x = -26; - pixel_y = -26; + pixel_x = 0; + pixel_y = -36; req_access = list(51) }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"iwZ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"iGb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/cryogaia/station/explorer_prep) -"iTL" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8; - icon_state = "shuttle_chair" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, /obj/structure/cable/green{ + d1 = 2; d2 = 8; - icon_state = "0-8" + icon_state = "2-8" }, -/turf/simulated/floor/tiled/dark, +/turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"jSg" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"jTO" = ( -/obj/structure/table/woodentable, +"kfX" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"jVf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 1 +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"kkm" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/wall/rshull, /area/shuttle/security) -"kbd" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ - frequency = 1380; - id_tag = "secsh_cabin"; - req_one_access = list(1) - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"klk" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "secshuttle_vent" - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - cycle_to_external_air = 1; - frequency = 1380; - id_tag = "secshuttle_docker"; - pixel_y = 26; - req_one_access = list(1); - tag_airpump = "secshuttle_vent"; - tag_chamber_sensor = "secshuttle_sensor"; - tag_exterior_door = "secshuttle_door_ext"; - tag_exterior_sensor = "secshuttle_exterior_sensor"; - tag_interior_door = "secshuttle_door_int" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"kqM" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "secpilotoffice"; - layer = 3.1; - name = "Office Shutters" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"kBF" = ( +"ksd" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 }, /obj/effect/floor_decal/industrial/danger{ dir = 8 }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, /area/security/hangar) -"kDK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ +"ktE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"kGY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/structure/handrail{ - dir = 1 +/obj/structure/bed/chair{ + dir = 4 }, -/obj/effect/shuttle_landmark/premade/security/cryogaia, -/obj/effect/overmap/visitable/ship/landable/security, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"kJy" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "secshut_cabinshut"; - layer = 3.1; - name = "Cabin Shutters" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) "kOa" = ( /obj/structure/table/rack/shelf, /obj/item/clothing/shoes/magboots, @@ -63394,69 +63467,24 @@ /obj/item/clothing/head/helmet/space/void/medical, /turf/simulated/floor/tiled, /area/cryogaia/station/explorer_prep) -"kVI" = ( -/obj/machinery/suit_cycler/security, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"kXs" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 +"lnh" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1380; + id_tag = "secshuttle_door_int" }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"lww" = ( +/obj/machinery/sleep_console, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"lzx" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 4 }, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds) -"laO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/steel, -/area/security/briefing_room) -"ldL" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"lnK" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"lpH" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) "lAq" = ( /obj/structure/cable{ d1 = 4; @@ -63469,20 +63497,24 @@ }, /turf/simulated/floor/plating, /area/maintenance/bridge) -"lNq" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 +"lHQ" = ( +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "secshuttle_sensor"; + master_tag = "expshuttle_docker"; + pixel_y = 28 }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "secshuttle_vent" }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) "mjD" = ( /obj/machinery/photocopier, /turf/simulated/floor/tiled/dark, @@ -63494,6 +63526,37 @@ /obj/effect/floor_decal/snow/floor/edges, /turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, /area/borealis2/outdoors/grounds) +"mlC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1; + icon_state = "map" + }, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"mmn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"mxS" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) "mBp" = ( /obj/structure/table/marble, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -63512,53 +63575,55 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"mUx" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8; - icon_state = "map" - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "secshuttle_sensor"; - master_tag = "expshuttle_docker"; - pixel_y = 28 - }, +"mEQ" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/security/hangar) +"mUo" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, /obj/structure/handrail, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"nka" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1" + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"nej" = ( -/obj/machinery/shipsensors{ +/area/security/hangar) +"nwR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ dir = 1 }, -/turf/simulated/floor/reinforced, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 1; + id = "secshut_cabinshut"; + layer = 3.1; + name = "Cabin Shutters" + }, +/turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"nfY" = ( -/obj/machinery/power/smes/buildable/point_of_interest, +"nEB" = ( +/obj/machinery/computer/ship/helm, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"nFg" = ( /obj/structure/cable/green{ - icon_state = "0-2" + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"nqZ" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"nsD" = ( -/turf/simulated/wall/rshull, -/area/shuttle/security) -"nJK" = ( -/obj/machinery/atmospherics/pipe/tank/phoron, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) "nKF" = ( /obj/structure/sign/directions/security{ icon_state = "direction_sec"; @@ -63566,54 +63631,84 @@ }, /turf/simulated/wall/r_wall, /area/hallway/primary/central_one) -"nWz" = ( +"ohl" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4; + icon_state = "shuttle_chair" + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"ojI" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"opk" = ( +/obj/machinery/light, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"ocl" = ( +"orr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8; frequency = 1380; - id_tag = "secshuttle_docker_pump_out_external" + id_tag = "secshuttle_docker_pump_out_internal" }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/structure/handrail{ - dir = 4 +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 }, -/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ - dir = 2; - frequency = 1380; - id_tag = "secshuttle_exterior_sensor"; - master_tag = "secshuttle_docker"; - pixel_x = 0; - pixel_y = 28 - }, -/turf/simulated/floor/plating, +/turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"omh" = ( -/obj/machinery/atmospherics/unary/engine{ - icon_state = "nozzle"; +"ors" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/turf/simulated/floor/reinforced, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/security) +/obj/item/device/geiger/wall{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/dark, +/area/security/airlock) +"oux" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) "ovS" = ( /obj/machinery/door/airlock/glass_external/freezable{ req_access = list(48) }, /turf/simulated/floor/plating, /area/borealis2/outdoors/grounds/traderpad) -"oAt" = ( -/obj/effect/floor_decal/borderfloorblack/corner, -/obj/effect/floor_decal/industrial/danger/corner, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" +"oPi" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 }, /turf/simulated/floor/tiled/dark, /area/security/hangar) @@ -63627,18 +63722,45 @@ /obj/structure/sign/directions/engineering, /turf/simulated/wall/r_wall, /area/hallway/primary/central_one) -"peN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +"piW" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 1 }, -/turf/simulated/floor/reinforced, -/area/security/hangar) -"ppD" = ( -/obj/machinery/sleep_console, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) +/obj/structure/catwalk, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 1 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"pvP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"pxt" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) "pxX" = ( /obj/structure/cable/green{ d1 = 4; @@ -63665,31 +63787,73 @@ }, /turf/simulated/floor/tiled/steel, /area/security/hallway) -"pCJ" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 +"pNM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"pNS" = ( +/obj/machinery/computer/ship/sensors{ + dir = 4 }, -/obj/machinery/door/window/brigdoor/southright{ - req_one_access = list(1) +/obj/machinery/power/terminal, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" }, -/obj/item/weapon/tank/jetpack/oxygen, -/obj/item/clothing/suit/space/void/security, -/obj/item/clothing/head/helmet/space/void/security, -/turf/simulated/floor/tiled/dark, -/area/security/airlock) -"pMp" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "secshuttle_vent" - }, -/turf/simulated/floor/tiled/dark, +/turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"pMx" = ( +"pOu" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"pZn" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 1 + }, +/obj/effect/floor_decal/snow/floor/edges, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 2; + flags = null + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"qcn" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"qfY" = ( +/obj/structure/sign/directions/security, +/turf/simulated/wall/r_wall, +/area/hallway/primary/central_one) +"qvV" = ( +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/briefing_room) +"qwq" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"qzh" = ( /obj/structure/table/rack, /obj/item/clothing/mask/breath, /obj/item/clothing/shoes/magboots, @@ -63702,74 +63866,101 @@ /obj/item/weapon/tank/jetpack/oxygen, /obj/item/clothing/suit/space/void/security/alt, /obj/item/clothing/head/helmet/space/void/security/alt, +/obj/item/device/gps/security, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"pQR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"pWr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"qfY" = ( -/obj/structure/sign/directions/security, -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_one) -"qgD" = ( +"qBd" = ( /obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, /obj/machinery/door/blast/shutters{ dir = 8; id = "secpilotoffice"; layer = 3.1; name = "Office Shutters" }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"qrR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/table/marble, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.7 }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"qtj" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"ryD" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ - frequency = 1380; - id_tag = "secsh_compartment"; - req_one_access = list(1) +"qMO" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4; + icon_state = "shuttle_chair" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"qOd" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"qXt" = ( +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "secpilotoffice"; + name = "Office Shutters"; + pixel_x = -26; + pixel_y = 0; + req_access = list(51) }, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"riX" = ( +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"rzY" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ +"rke" = ( +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"rtv" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/borealis2/outdoors/grounds) +"rzh" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 1; - icon_state = "map" + frequency = 1380; + id_tag = "secshuttle_docker_pump_out_external" }, -/obj/structure/handrail, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 +/obj/effect/floor_decal/industrial/warning{ + dir = 6 }, -/turf/simulated/floor/tiled/dark, +/turf/simulated/floor/tiled/techfloor, /area/shuttle/security) +"rHc" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"rRQ" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 4 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) "sdy" = ( /obj/structure/table/rack, /obj/machinery/door/window/brigdoor/northright{ @@ -63792,105 +63983,231 @@ /obj/item/clothing/head/helmet/space/void/captain, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"sgB" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"sAG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 1; - id = "secshut_cabinshut"; - layer = 3.1; - name = "Cabin Shutters" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"sDB" = ( -/obj/machinery/computer/shuttle_control/explore/security, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"sMV" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"sUn" = ( -/turf/simulated/wall/r_wall, -/area/security/hangar) -"sZv" = ( +"ssQ" = ( /obj/machinery/alarm{ frequency = 1441; pixel_y = 22 }, -/obj/machinery/power/terminal{ - dir = 8 +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 }, -/obj/structure/cable/green{ - icon_state = "0-4" +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"sDh" = ( +/obj/structure/catwalk, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) +/obj/structure/railing{ + dir = 2; + flags = null + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) "tbF" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/sign/directions/engineering, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"tlQ" = ( -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"twd" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"txc" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - icon_state = "borderfloorcorner_black"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger/corner{ - icon_state = "dangercorner"; - dir = 8 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"tPD" = ( +"tdL" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/turf/simulated/wall/r_wall, +/area/security/pilotroom) +"tdW" = ( +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/security/airlock) +"tnC" = ( +/obj/machinery/suit_cycler/security, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"tUH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +"ttO" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"txH" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"txV" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "secshuttle_vent" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + cycle_to_external_air = 1; + frequency = 1380; + id_tag = "secshuttle_docker"; + pixel_y = 26; + req_one_access = list(1); + tag_airpump = "secshuttle_vent"; + tag_chamber_sensor = "secshuttle_sensor"; + tag_exterior_door = "secshuttle_door_ext"; + tag_exterior_sensor = "secshuttle_exterior_sensor"; + tag_interior_door = "secshuttle_door_int" }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"tAN" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"tGU" = ( +/obj/machinery/atmospherics/unary/engine{ + icon_state = "nozzle"; + dir = 1 + }, +/turf/simulated/floor/reinforced, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/security) +"tNE" = ( +/obj/structure/catwalk, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"tVM" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"uen" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"ugG" = ( +/obj/effect/shuttle_landmark/automatic, +/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, +/area/borealis2/outdoors/grounds) +"ulo" = ( +/turf/simulated/wall/r_wall, +/area/security/hangar) +"uul" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8; + icon_state = "shuttle_chair" + }, +/obj/structure/closet/medical_wall{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/item/weapon/storage/firstaid, +/obj/item/weapon/storage/firstaid, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"uzm" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "secpilotoffice"; + layer = 3.1; + name = "Office Shutters" + }, +/obj/structure/table/marble, +/obj/machinery/door/window/brigdoor/westleft, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"ueV" = ( +"uHb" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/obj/machinery/door/window/brigdoor/southright{ + req_one_access = list(1) + }, +/obj/item/device/gps/security, +/turf/simulated/floor/tiled/dark, +/area/security/airlock) +"uOz" = ( +/obj/machinery/shipsensors{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/security) +"uVz" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"uYR" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "secshuttle_door_ext"; + locked = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"uZT" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor/southleft{ + req_one_access = list(1) + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/obj/item/device/gps/security, +/turf/simulated/floor/tiled/dark, +/area/security/airlock) +"vex" = ( +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"vgs" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"vok" = ( /obj/structure/table/rack, /obj/item/clothing/mask/breath, /obj/item/clothing/shoes/magboots, @@ -63907,80 +64224,61 @@ /obj/item/weapon/tank/jetpack/oxygen, /obj/item/clothing/suit/space/void/security/alt, /obj/item/clothing/head/helmet/space/void/security/alt, +/obj/item/device/gps/security, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"ugG" = ( -/obj/effect/shuttle_landmark/automatic, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"uRn" = ( -/obj/structure/fuel_port{ - pixel_y = 32 +"vro" = ( +/obj/machinery/power/pointdefense{ + id_tag = "secshuttle_pd" }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, +/turf/simulated/floor/plating, /area/shuttle/security) -"uSl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"vrt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "secshut_cabinshut"; - layer = 3.1; - name = "Cabin Shutters" - }, -/turf/simulated/floor/tiled/dark, +"vMq" = ( +/obj/machinery/computer/shuttle_control/explore/security, +/turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"vNI" = ( -/obj/machinery/computer/ship/sensors{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"vSJ" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/light, -/obj/machinery/pointdefense_control{ - id_tag = "secshuttle_pd"; - name = "shuttle laser FCS" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"vUc" = ( +"vSr" = ( /obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"vVp" = ( +/turf/simulated/floor/tiled/dark, +/area/security/briefing_room) +"vVS" = ( +/obj/effect/floor_decal/industrial/warning/dust{ dir = 1 }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"win" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 6 +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"wnh" = ( +/obj/effect/floor_decal/snow/floor/edges, +/obj/structure/catwalk, +/obj/structure/railing{ + dir = 2; + flags = null }, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"wrr" = ( +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"wrG" = ( +/obj/effect/floor_decal/snow/floor/edges3{ + icon_state = "gravsnow_edges"; + dir = 1 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"wLk" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/borealis2/outdoors/grounds/traderpad) +"wXb" = ( /obj/item/device/geiger/wall{ dir = 1; pixel_y = -30 @@ -63992,106 +64290,57 @@ }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"wvK" = ( +"xpC" = ( +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"xsr" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1380; + id_tag = "secsh_cabin"; + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"xtR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"xXu" = ( +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/sleep_console, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"ygv" = ( /obj/effect/landmark/start{ name = "Security Pilot" }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"wwu" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8; - icon_state = "shuttle_chair" - }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"wLk" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/borealis2/outdoors/grounds/traderpad) -"wRJ" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/structure/catwalk, -/obj/structure/railing{ - dir = 2; - flags = null - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"xcL" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "secshuttle_dock"; - pixel_x = -32; - req_one_access = list(67) - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"xuT" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1380; - id_tag = "secshuttle_docker_pump_out_internal" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"xvK" = ( -/obj/machinery/computer/ship/helm, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) -"xDE" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"xTN" = ( -/obj/machinery/door/airlock/multi_tile/metal{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "secshuttle_door_ext"; - locked = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/security) "ylY" = ( /obj/machinery/door/airlock/glass_engineering{ name = "Engine Gas Storage" }, /turf/simulated/floor/plating, /area/engineering/engine_room) +"ymj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) (1,1,1) = {" aaa @@ -84320,9 +84569,9 @@ aag aIF aag aag -aag -aLR -abk +aKZ +piW +wnh aag aag aag @@ -84569,41 +84818,41 @@ aag aag aag aag -aIF -aag -aag -aKZ -aLR -abk -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag +ezr +fzi +rRQ +rRQ +hml +sDh +rRQ +rRQ +rRQ +rRQ +rRQ +rRQ +rRQ +rRQ +rRQ +rRQ +rRQ +rRQ +rRQ +rRQ +rRQ +rRQ +rRQ +rRQ +rRQ +rRQ +rRQ +rRQ +rRQ +rRQ +rRQ +rRQ +rRQ +rRQ +hMS aag aag aag @@ -84821,13 +85070,13 @@ aag aag aag aag -aIF aag aag aag -aLR -abk aag +piW +wnh +aKZ aag aag aag @@ -84855,7 +85104,7 @@ aag aag aag aag -aag +pZn aag aag aag @@ -85073,7 +85322,7 @@ aag aag aag aag -aIF +aag aag aag aaO @@ -85107,11 +85356,11 @@ aag aag aag aag +pZn +aag +aag aag bsy -aag -aag -aag btM avu aag @@ -85325,7 +85574,7 @@ aag aag aag aag -aIF +aag aag aag aag @@ -85359,11 +85608,11 @@ aag aag aag aag +pZn +aag +aag aaY aHb -aHb -aHb -aHb buX avu aag @@ -85577,7 +85826,7 @@ aag aag aag aag -aIF +aag aag aag aag @@ -85611,12 +85860,12 @@ aag aag aag aag +pZn +aag +aag btM buX bww -bww -bww -bww bBs aag abq @@ -85829,7 +86078,7 @@ aag aag aaN aag -aIF +aag aag aag aag @@ -85838,7 +86087,6 @@ abk aag aag aag -ugG aag aag aag @@ -85863,12 +86111,13 @@ aag aag aag aag +aag +pZn +aag +aag btM avu aag -aag -aag -aag abq abq abq @@ -86080,9 +86329,9 @@ aag aag aag aag -awm -aIG -awm +aag +aag +aag aag aag aLR @@ -86090,7 +86339,7 @@ abk aag aag aag -aag +ugG aag aag aag @@ -86115,12 +86364,12 @@ aag aag aag aag +pZn +aag +aag btM avu aag -aag -aag -aag abq abq abq @@ -86332,12 +86581,12 @@ abd abd abd abd -asx -aIH -asx abd abd -aaj +abd +abd +abd +wrG abk aag aag @@ -86367,11 +86616,11 @@ aag aag aag aag +pZn +aag +bsy btM avu -bsy -aag -aag aag abq abq @@ -86584,9 +86833,9 @@ aag aag aag aag -awn -aII -awn +aag +aag +aag aag aag aLR @@ -86619,13 +86868,13 @@ aag aag aag aag +pZn +aag +aag btM avu aag aag -aag -aag -aag abq abq abq @@ -86837,7 +87086,7 @@ aag aag aag aag -aIF +aag aag aag aaN @@ -86871,13 +87120,13 @@ aag aag aag aag +pZn +aag +aag btM avu aag aag -aag -aag -aag abq abq abq @@ -87089,7 +87338,7 @@ aag aag aag aag -aIF +aag aag aag aag @@ -87122,15 +87371,15 @@ aag aag aag aag -bsy +aag +pZn +aag +aag btM avu aag aag aag -aag -aag -aag abq abq abq @@ -87341,7 +87590,7 @@ aag aag aag aag -aIF +aag aag aag aag @@ -87375,16 +87624,16 @@ aag aag aag aag +pZn +aag +aag btM avu -aag -aag aKZ aag aag aag aag -aag abq abq abq @@ -87593,7 +87842,7 @@ aag aag aag aag -aIF +aag aag aag aag @@ -87626,11 +87875,11 @@ aLQ aLQ aLQ aLQ +tAN +jGL +tAN aLQ buV -buV -aLQ -aLQ byP aag aag @@ -87845,7 +88094,7 @@ aag aag aag aag -aIF +aag aag aag aag @@ -87862,6 +88111,7 @@ aQf aQf aQf aQf +aaj aQf aQf aQf @@ -87877,10 +88127,9 @@ aQf aQf aQf aQf -aQf -aQf -aQf -aQf +ica +tNE +ica aQf aaj abk @@ -88097,7 +88346,6 @@ aag aag aag aag -aIF aag aag aag @@ -88113,27 +88361,28 @@ aag aag aag aag -bCF -aVP -exo -aag -aag -aKZ -aag -aag -aag -aag -aag -aag -aag aag aag +ajB aag aag aag aKZ aag aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +pZn +aKZ +aag aLR abk aag @@ -88343,47 +88592,47 @@ aag aag aag aag +mEQ +ulo +ulo +ulo +ulo +ulo +ulo +ulo +ulo +ulo +ulo +ulo +ulo +ulo +ulo +ulo +ulo +ulo +mEQ +aag +aaN +aag +aag +ajB aag aag aag aag aag aag -aIJ -aJD -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -jSg -ldL -wRJ -sgB -sgB -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -btO +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +pZn aag aag aLR @@ -88595,35 +88844,35 @@ aag aag aag aag +ulo +hQo +oux +oux +oux +oux +oux +oux +oux +ojI +oux +oux +oux +oux +oux +oux +oux +iZX +ulo aag aag aag aag +ajB aag aag aag aag aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -aag -bCF -aVP -exo -aag -aag -aag -aag aaN aag aag @@ -88847,30 +89096,30 @@ aag aag aag aag +ulo +ttO +iwa +iwa +iwa +iwa +iwa +iwa +iwa +vro +eyh +eyh +eyh +eyh +dIg +fCH +tGU +oPi +ulo aag aag -sUn -sUn -sUn -sUn -sUn -sUn -sUn -sUn -sUn -sUn -sUn -sUn -sUn -sUn -sUn -sUn -sUn aag -aag -aaN -kXs -aGk +mxS +aHN bbg bbg aHS @@ -89099,25 +89348,25 @@ aag aag aag aag -aag -aag -sUn -oAt -eOs -eOs -eOs -eOs -eOs -eOs -xDE -eOs -eOs -eOs -eOs -eOs -eOs -gYE -sUn +ulo +ttO +uOz +eyh +fcS +fcS +eyh +eyh +eyh +eyh +eyh +aZQ +eTr +lHQ +gqc +iVl +tGU +oPi +ulo aag aag aag @@ -89351,25 +89600,25 @@ aag aag aag aag -aag -aag -sUn -qtj -fsH -fsH -fsH -fsH -fsH -gnf -nsD -nsD -nsD -fsH -fsH -fsH -fsH -fkv -sUn +ulo +ttO +eyh +eyh +pNS +dvG +eyh +fGG +ohl +guA +qMO +fGG +uen +mUo +ymj +iVl +tGU +oPi +ulo aag aag aag @@ -89603,25 +89852,25 @@ aag aag aag aag -aag -aag -sUn -qtj -nej -nsD -kJy -nsD -nsD -nsD -nsD -aZQ -ejz -nsD -eZx -win -omh -fkv -sUn +ulo +ttO +nwR +nEB +jUf +jbK +tVM +xXu +icd +icd +gbW +lww +eyh +txV +cKf +uYR +dOa +oPi +ulo aag aag aag @@ -89855,43 +90104,43 @@ aag aag aag aag +ulo +ttO +nwR +vMq +vex +qOd +xsr +vex +vex +vex +kfX +vex +lnh +giI +fNv +cmg +rzh +oPi +ulo aag aag -sUn -qtj -nsD -nsD -vNI -nsD -nfY -fxx -geZ -nqZ -eQX -mUx -kGY -jVf -omh -fkv -sUn aag -aag -aaN aHa aaj aaj aab -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj +lzx +lzx +lzx +lzx +lzx +lzx +lzx +lzx +lzx +lzx +byJ aHR aSm aag @@ -90107,27 +90356,27 @@ aag aag aag aag +ulo +ttO +eyh +eyh +jQr +czv +eyh +iUu +uul +ekF +fAj +emd +eyh +mlC +riX +iVl +tGU +oPi +ulo aag -aag -sUn -qtj -sAG -xvK -iqX -nsD -sZv -hCK -ikB -ppD -nsD -klk -pMp -xTN -fsH -fkv -sUn -aag -aag +aaN aag aHa aaj @@ -90143,7 +90392,7 @@ aTO aTO aTO aTO -aaj +vVS aaj aSm aag @@ -90359,25 +90608,25 @@ aag aag aag aag -aag -aag -sUn -qtj -sAG -sDB -ikB -kbd -hCK -hCK -ikB -ikB +ulo +ttO +vro +eyh +dft +dft +eyh +gkF +eyh +eyh +kkm +bbc bhm -xuT -xuT -kDK -fsH -fkv -sUn +orr +azE +txH +tGU +oPi +ulo aag aag aag @@ -90395,7 +90644,7 @@ aUp aUp aUp aTO -aaj +vVS aaj aSm aag @@ -90611,25 +90860,25 @@ akb aag aag aag -aag -aag -sUn -qtj -nsD -nsD -vSJ -nsD -uRn -iTL -wwu -hyW -nsD -rzY +ulo +ttO +iwa +iwa +iwa +iwa +iwa +iwa +iwa +vro +kkm +eyh +eyh +eyh aHU -jVf -omh -fkv -sUn +blI +tGU +oPi +ulo aIK aIK aIK @@ -90647,7 +90896,7 @@ aUp aUp aUp aTO -aaj +vVS aKs aSm bgf @@ -90863,25 +91112,25 @@ akb aag aag aag -aag -aag -sUn -qtj -fsH -nsD -vrt -nsD -ryD -nsD -nsD -nJK -pQR -pQR -blP -blI -omh -fkv -sUn +ulo +hOH +uVz +uVz +uVz +uVz +uVz +uVz +uVz +uVz +ksd +uVz +uVz +uVz +uVz +uVz +uVz +iLp +ulo bhp aQh aNz @@ -90899,7 +91148,7 @@ aUp aVD aUp aTO -aaj +vVS aaj aSm bgf @@ -91115,25 +91364,25 @@ akb aag aag aag -aag -aag -sUn -qtj -fsH -fsH -fsH -fsH -peN -gnf -nsD -nsD -nsD -ocl -fsH -fsH -fsH -fkv -sUn +ulo +vSr +rke +rke +rke +rke +rke +rke +rke +rke +xtR +rke +rke +rke +rke +qcn +blM +qwq +ulo aNA aRy aIK @@ -91151,7 +91400,7 @@ aUp aUp aUp aTO -aaj +vVS aaj aSm bgf @@ -91367,25 +91616,25 @@ akb aag aag aag -aag -aEu -sUn -sUn -sUn -kBF +rtv +aHf +ulo +ulo +ulo +rke hRF -hRF -lNq -hRF -hRF -hRF -kBF -hRF -hRF -hRF -hRF -txc -sUn +rke +rke +rke +nka +rke +aOh +aOh +aOh +xtR +rke +vSr +ulo aNy aNy aHT @@ -91403,7 +91652,7 @@ aUp aHV aUp aTO -aaj +vVS aHR aSm aag @@ -91626,10 +91875,10 @@ aGl aHf aJL aJL -qgD -kqM -qgD -aJL +qBd +uzm +qBd +tdL aKt aHT aIK @@ -91655,7 +91904,7 @@ aUp aVD aUp aTO -aaj +vVS aaj aSm aag @@ -91876,22 +92125,22 @@ akb aFs aGm aHf -vUc -xcL -lpH -jTO -lpH -dvt -twd +jJi +xpC +xpC +pOu +xpC +qXt +rHc aHT auQ aSn aXN -dEi +ors auQ aHT aQi -aQi +hMM aHT aRz aXS @@ -91907,7 +92156,7 @@ aUp aHV aUp aTO -aaj +vVS aaj aSm aag @@ -92128,22 +92377,22 @@ akb akA aGn aHf -tlQ -tlQ -iwZ -sMV -cQs -fAe -nWz +xpC +xpC +xpC +xpC +xpC +nFg +mmn aHT -gTB +uZT aOw aXO aOk aWV aHT -aQi -aQi +qvV +fnq aHT aXM bpC @@ -92159,7 +92408,7 @@ aUp aVD aUp aTO -aaj +vVS aKs aSm aag @@ -92380,22 +92629,22 @@ aDy aFt aGo aHf -kVI -tlQ -wvK -fKR -tlQ -tlQ -wrr +tnC +xpC +ygv +gXV +xpC +xpC +wXb aHT -pCJ -fTF +uHb +tdW aXT aSq aRm aHT -aQi -aQi +vVp +gSA aHT aYa bpD @@ -92632,13 +92881,13 @@ akb akb aGp aHf -pMx -tlQ -dlk -uSl -wvK -tlQ -tPD +qzh +xpC +pNM +ftI +ygv +xpC +cDa aKx aHT aIK @@ -92884,13 +93133,13 @@ aCG asv azf aNF -ueV -tlQ -tlQ -qrR -tlQ -tlQ -gGx +vok +xpC +xpC +ktE +xpC +xpC +opk aKx aEM aJJ @@ -93137,16 +93386,16 @@ aBI aAb aNF aJL -lnK -tlQ -tUH -pWr -pWr -ePF +ssQ +vgs +pvP +gsF +eGd +pxt bLR aIM -hCr -laO +dEK +dtD aTC aUI aSs @@ -96950,7 +97199,7 @@ bof bpp bqu brC -bsO +bsS bqt bvj bwF diff --git a/maps/yw/cryogaia_defines.dm b/maps/yw/cryogaia_defines.dm index 21dbe4f1a4..2f753c1715 100644 --- a/maps/yw/cryogaia_defines.dm +++ b/maps/yw/cryogaia_defines.dm @@ -226,7 +226,8 @@ icon_state = "globe" color = "#00AAFF" initial_generic_waypoints = list( - "cryogaia_excursion_hangar" + "cryogaia_excursion_hangar", + "cryogaia_security_hangar" ) //Despite not being in the multi-z complex, these levels are part of the overmap sector extra_z_levels = null //None at the moment. Plains would be added here. From c2fa7473dc24176845d15a9de6d265fe1dc8faea Mon Sep 17 00:00:00 2001 From: Killian <49700375+KillianKirilenko@users.noreply.github.com> Date: Mon, 4 May 2020 12:03:47 +0100 Subject: [PATCH 11/23] sec interceptor pt3a --- maps/yw/cryogaia-05-main.dmm | 3365 ++++++++++++++++++---------------- maps/yw/cryogaia_areas.dm | 2 + 2 files changed, 1749 insertions(+), 1618 deletions(-) diff --git a/maps/yw/cryogaia-05-main.dmm b/maps/yw/cryogaia-05-main.dmm index 4b4f351c2a..7a806638cc 100644 --- a/maps/yw/cryogaia-05-main.dmm +++ b/maps/yw/cryogaia-05-main.dmm @@ -17989,15 +17989,15 @@ /turf/simulated/wall, /area/security/airlock) "aHU" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/door/airlock/voidcraft{ frequency = 1380; icon_state = "door_locked"; id_tag = "secshuttle_door_ext"; locked = 1 }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) "aHV" = ( @@ -18330,10 +18330,6 @@ dir = 1 }, /obj/structure/railing, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds/power) "aIK" = ( @@ -19082,6 +19078,24 @@ }, /turf/simulated/floor/plating/snow/plating, /area/maintenance/auxsolarport) +"aKr" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) "aKs" = ( /obj/structure/sign/securearea, /turf/simulated/wall, @@ -19090,6 +19104,7 @@ /obj/machinery/door/airlock/glass_security{ name = "Security Pilot Officer Office" }, +/obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) "aKu" = ( @@ -21134,6 +21149,22 @@ /turf/simulated/floor/plating, /area/security/brig) "aOw" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor/southleft{ + req_one_access = list(1) + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/obj/item/device/gps/security, /turf/simulated/floor/tiled/dark, /area/security/airlock) "aOx" = ( @@ -23215,14 +23246,7 @@ /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds) "aSn" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, +/obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/dark, /area/security/airlock) "aSo" = ( @@ -23419,6 +23443,7 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/dark, /area/security/airlock) "aSH" = ( @@ -26337,9 +26362,6 @@ /turf/simulated/floor/tiled, /area/security/airlock) "aXN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -26362,7 +26384,8 @@ dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + icon_state = "intact-supply"; + dir = 5 }, /turf/simulated/floor/tiled/dark, /area/security/airlock) @@ -27518,6 +27541,7 @@ dir = 4; health = 1e+006 }, +/obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/plating, /area/shuttle/security) "aZR" = ( @@ -28276,6 +28300,7 @@ /obj/structure/window/reinforced{ dir = 8 }, +/obj/effect/floor_decal/industrial/warning/full, /turf/simulated/floor/plating, /area/shuttle/security) "bbd" = ( @@ -31359,9 +31384,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"bgf" = ( -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds/power) "bgg" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -32812,6 +32834,13 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/steel, /area/security/security_equiptment_storage) +"biT" = ( +/obj/item/device/geiger/wall{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/dark, +/area/security/airlock) "biU" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -33556,8 +33585,14 @@ /obj/structure/railing{ dir = 8 }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 1 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, /turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) +/area/borealis2/outdoors/grounds/power) "bjZ" = ( /obj/structure/railing{ dir = 4 @@ -34576,14 +34611,6 @@ }, /turf/simulated/floor/tiled/dark, /area/security/tactical) -"blM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) "blN" = ( /turf/simulated/wall, /area/security/detectives_office) @@ -38860,6 +38887,21 @@ /obj/effect/overlay/snow/floor, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds/solars) +"btO" = ( +/obj/effect/floor_decal/rust, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/obj/effect/floor_decal/snow/floor/edges, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) "btP" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -49676,6 +49718,7 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/steel, /area/security/armoury) "bLS" = ( @@ -50426,24 +50469,6 @@ /obj/effect/floor_decal/corner/yellow/diagonal, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) -"bNo" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) "bNp" = ( /obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{ id_tag = "engine_room_airlock"; @@ -50519,8 +50544,12 @@ dir = 1 }, /obj/structure/railing, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 1 + }, +/obj/effect/floor_decal/snow/floor/edges, /turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) +/area/borealis2/outdoors/grounds/power) "bNx" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -62675,26 +62704,20 @@ /obj/structure/cable/heavyduty{ icon_state = "2-8" }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"ckX" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/railing{ - dir = 8 - }, /obj/structure/railing{ dir = 4 }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 +/obj/structure/railing{ + dir = 1 }, /obj/effect/floor_decal/snow/floor/edges{ dir = 4 }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 1 + }, /turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/solars) +/area/borealis2/outdoors/grounds/power) "ckY" = ( /obj/effect/overlay/snow/floor, /turf/simulated/floor/plating/snow/plating/cryogaia, @@ -62703,21 +62726,6 @@ /obj/machinery/door/airlock/glass_external/public, /turf/simulated/floor/tiled, /area/borealis2/outdoors/grounds/entrance) -"cla" = ( -/obj/effect/floor_decal/rust, -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-4" - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) "clb" = ( /obj/effect/overlay/snow/floor, /obj/structure/cable/heavyduty{ @@ -62821,44 +62829,18 @@ }, /turf/simulated/floor/tiled/red, /area/security/outpost) -"cmg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ +"cuC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"czv" = ( -/obj/machinery/light, -/obj/machinery/computer/ship/engines{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"cDa" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"cKf" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "secshuttle_vent" +"cwy" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) +/turf/simulated/floor/tiled/dark, +/area/security/hangar) "cLv" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -62869,131 +62851,21 @@ /obj/machinery/suit_cycler/medical, /turf/simulated/floor/tiled, /area/cryogaia/station/explorer_prep) -"dft" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "secshut_cabinshut"; - layer = 3.1; - name = "Cabin Shutters" - }, +"cRV" = ( /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"dtD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; +"djl" = ( +/obj/structure/catwalk, +/obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/steel, -/area/security/briefing_room) -"dvG" = ( -/obj/machinery/light, -/obj/machinery/power/smes/buildable/point_of_interest, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"dDd" = ( -/obj/structure/sign/directions/science, -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_one) -"dEK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel, -/area/security/briefing_room) -"dIg" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "secshuttle_door_ext"; - locked = 1 - }, -/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ - dir = 10; - frequency = 1380; - id_tag = "secshuttle_exterior_sensor"; - master_tag = "secshuttle_docker"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/effect/floor_decal/industrial/danger{ - icon_state = "danger"; - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"dOa" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"ekF" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8; - icon_state = "shuttle_chair" - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/structure/closet/walllocker/emerglocker/east, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"emd" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/closet/secure_closet{ - name = "confiscated goods storage"; - req_one_access = list(1) - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"eti" = ( -/obj/structure/sign/directions/bridge{ - icon_state = "direction_bridge"; +/obj/structure/railing{ + icon_state = "railing0"; dir = 4 }, -/turf/simulated/wall, -/area/maintenance/substation/civilian) -"ety" = ( -/obj/machinery/door/window/brigdoor/northright{ - name = "SAR Voidsuits"; - req_access = newlist(); - req_one_access = list(68) - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_prep) -"eyh" = ( -/turf/simulated/wall/rshull, -/area/shuttle/security) -"ezr" = ( +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"dtV" = ( /obj/structure/cable/heavyduty{ icon_state = "2-8" }, @@ -63012,25 +62884,93 @@ }, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds/power) -"eGd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"dxj" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"eQA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, +"dDd" = ( /obj/structure/sign/directions/science, -/turf/simulated/floor/plating, +/turf/simulated/wall/r_wall, /area/hallway/primary/central_one) -"eTr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, +"dPy" = ( /turf/simulated/wall/rshull, /area/shuttle/security) -"fcS" = ( +"dPM" = ( +/obj/machinery/computer/ship/sensors{ + dir = 4 + }, +/obj/machinery/power/terminal, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"dSL" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/donkpockets, +/turf/simulated/floor/tiled/dark, +/area/security/briefing_room) +"elA" = ( +/obj/structure/table/standard, +/obj/structure/extinguisher_cabinet{ + pixel_y = -26 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"epP" = ( +/obj/machinery/power/pointdefense{ + id_tag = "secshuttle_pd" + }, +/turf/simulated/floor/plating, +/area/shuttle/security) +"eti" = ( +/obj/structure/sign/directions/bridge{ + icon_state = "direction_bridge"; + dir = 4 + }, +/turf/simulated/wall, +/area/maintenance/substation/civilian) +"ety" = ( +/obj/machinery/door/window/brigdoor/northright{ + name = "SAR Voidsuits"; + req_access = newlist(); + req_one_access = list(68) + }, +/turf/simulated/floor/tiled, +/area/cryogaia/station/explorer_prep) +"eze" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/voidcraft{ + frequency = 1380; + id_tag = "secsh_compartment"; + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"eCK" = ( +/obj/effect/floor_decal/snow/floor/edges, +/obj/structure/catwalk, +/obj/structure/railing{ + dir = 2; + flags = null + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"eKW" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ @@ -63046,23 +62986,105 @@ }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"fnq" = ( -/obj/structure/table/standard, -/obj/item/device/flashlight, -/obj/item/device/radio, -/turf/simulated/floor/tiled/dark, -/area/security/briefing_room) -"ftI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"eQA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/directions/science, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"eQB" = ( +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 +/obj/structure/closet/crate/secure/phoron{ + name = "spare fuel crate" }, +/obj/item/weapon/tank/phoron, +/obj/item/weapon/tank/phoron, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"fzi" = ( +"eYd" = ( +/turf/simulated/floor/reinforced, +/area/security/hangar) +"eYL" = ( +/obj/structure/catwalk, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"eZJ" = ( +/obj/machinery/light, +/obj/machinery/power/smes/buildable/point_of_interest, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"fhd" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"fDP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"fFs" = ( +/turf/simulated/floor/tiled/dark, +/area/security/briefing_room) +"fFV" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor/southleft{ + req_one_access = list(1) + }, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/suit/space/void/security/alt, +/obj/item/clothing/head/helmet/space/void/security/alt, +/obj/item/device/gps/security, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"fIL" = ( +/obj/structure/sign/directions/science, +/turf/simulated/wall, +/area/storage/primary) +"fLi" = ( +/obj/structure/closet/crate, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/storage/box/cups, +/turf/simulated/floor/tiled/dark, +/area/security/briefing_room) +"fQd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"fZS" = ( /obj/effect/floor_decal/snow/floor/edges{ dir = 4 }, @@ -63072,10 +63094,6 @@ /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Solar Farm Output"; - name_tag = "Solar Farm Output" - }, /obj/structure/railing{ dir = 8 }, @@ -63085,98 +63103,46 @@ }, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds/power) -"fAj" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8; - icon_state = "shuttle_chair" - }, -/obj/structure/fuel_port{ - dir = 4; - pixel_x = 24; - pixel_y = 0 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"fCH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 6 - }, +"gfk" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, /turf/simulated/wall/rshull, /area/shuttle/security) -"fGG" = ( -/obj/machinery/sleeper{ - dir = 8 +"gpN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"fIL" = ( -/obj/structure/sign/directions/science, -/turf/simulated/wall, -/area/storage/primary) -"fNv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"gbW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"giI" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ dir = 4; - frequency = 1380; - id_tag = "secshuttle_docker_pump_out_internal" + id = "secshut_cabinshut"; + layer = 3.1; + name = "Cabin Shutters" }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"gkF" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ +"gtU" = ( +/turf/simulated/wall/r_wall, +/area/security/hangar) +"gzS" = ( +/obj/machinery/door/airlock/multi_tile/metal{ frequency = 1380; - id_tag = "secsh_compartment"; - req_one_access = list(1) + icon_state = "door_locked"; + id_tag = "secshuttle_door_ext"; + locked = 1 }, -/obj/effect/floor_decal/industrial/danger{ +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"gqc" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1380; - id_tag = "secshuttle_vent" +"gHm" = ( +/obj/machinery/sleeper{ + dir = 8 }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"gsF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"guA" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4; - icon_state = "shuttle_chair" - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/obj/structure/closet/walllocker/emerglocker/west, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) "gOn" = ( /obj/structure/table/standard, /obj/fiftyspawner/steel, @@ -63187,68 +63153,15 @@ /obj/machinery/suit_cycler/captain, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"gSA" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/donkpockets, -/turf/simulated/floor/tiled/dark, -/area/security/briefing_room) -"gXV" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +"hxh" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"hml" = ( -/obj/structure/catwalk, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"hMM" = ( -/obj/structure/closet/crate, -/obj/item/weapon/book/manual/security_space_law, -/obj/item/weapon/storage/box/cups, -/turf/simulated/floor/tiled/dark, -/area/security/briefing_room) -"hMS" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges, -/obj/structure/cable/heavyduty{ - icon_state = "1-4" - }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"hOH" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - icon_state = "borderfloorcorner_black"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger/corner{ - icon_state = "dangercorner"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"hQo" = ( -/obj/effect/floor_decal/borderfloorblack/corner, -/obj/effect/floor_decal/industrial/danger/corner, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) "hRF" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; @@ -63263,28 +63176,83 @@ }, /turf/simulated/floor/tiled/dark, /area/security/hangar) -"ica" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, +"hTN" = ( /obj/structure/catwalk, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, /obj/structure/railing{ - icon_state = "railing0"; - dir = 4 + dir = 2; + flags = null }, /turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"icd" = ( +/area/borealis2/outdoors/grounds/power) +"hUL" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"ifJ" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4; + icon_state = "shuttle_chair" + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"iwa" = ( -/turf/simulated/floor/reinforced, -/area/security/hangar) +"ihI" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8; + icon_state = "shuttle_chair" + }, +/obj/structure/closet/medical_wall{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/storage/firstaid/regular, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"iux" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "secshuttle_vent" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"iyN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"iDV" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "secpilotoffice"; + layer = 3.1; + name = "Office Shutters" + }, +/obj/structure/table/marble, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.7 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) "iGb" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -63301,33 +63269,82 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/cryogaia/station/explorer_prep) -"iLp" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - icon_state = "borderfloorcorner_black"; +"iIs" = ( +/obj/effect/floor_decal/industrial/warning/dust{ dir = 1 }, -/obj/effect/floor_decal/industrial/danger/corner{ - icon_state = "dangercorner"; - dir = 8 +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"iQE" = ( +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/sleep_console, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"jhL" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"joe" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 }, /turf/simulated/floor/tiled/dark, /area/security/hangar) -"iUu" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, +"jrx" = ( +/obj/machinery/computer/ship/helm, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"iVl" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ +"jGk" = ( +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"jKQ" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"jLf" = ( +/obj/machinery/light{ dir = 1 }, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"iZX" = ( +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"kiL" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"kjO" = ( /obj/effect/floor_decal/borderfloorblack/corner{ icon_state = "borderfloorcorner_black"; dir = 4 @@ -63340,47 +63357,275 @@ dir = 8; icon_state = "tube1" }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, /turf/simulated/floor/tiled/dark, /area/security/hangar) -"jbK" = ( -/obj/structure/table/standard, +"kpD" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Security Pilot" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"kuO" = ( /obj/structure/extinguisher_cabinet{ - pixel_y = -26 + pixel_x = 25 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"kOa" = ( +/obj/structure/table/rack/shelf, +/obj/item/clothing/shoes/magboots, +/obj/item/device/suit_cooling_unit, +/obj/item/weapon/tank/oxygen, +/obj/item/clothing/suit/space/void/medical, +/obj/item/clothing/head/helmet/space/void/medical, +/turf/simulated/floor/tiled, +/area/cryogaia/station/explorer_prep) +"kQg" = ( +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"kTI" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/borealis2/outdoors/grounds) +"ldb" = ( +/obj/machinery/atmospherics/unary/engine{ + icon_state = "nozzle"; + dir = 1 + }, +/turf/simulated/floor/reinforced, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/security) +"ljB" = ( +/obj/machinery/shipsensors{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/security) +"lpV" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"lyx" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"lAq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridge) +"lKE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"lLf" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight, +/obj/item/device/radio, +/turf/simulated/floor/tiled/dark, +/area/security/briefing_room) +"lSe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/woodentable, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"lZH" = ( +/obj/effect/floor_decal/snow/floor/edges3{ + icon_state = "gravsnow_edges"; + dir = 1 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"mbt" = ( +/obj/machinery/computer/shuttle_control/explore/security, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"mgS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel, +/area/security/briefing_room) +"mjD" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hos) +"mjH" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 1 + }, +/obj/effect/floor_decal/snow/floor/edges, +/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, +/area/borealis2/outdoors/grounds) +"mlc" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"mBp" = ( +/obj/structure/table/marble, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "kitchen"; + layer = 3.1; + name = "Kitchen Shutters" }, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/structure/cable{ - icon_state = "4-8" +/turf/simulated/floor/tiled/white, +/area/crew_quarters/bar) +"mIX" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/obj/machinery/door/window/brigdoor/southright{ + req_one_access = list(1) + }, +/obj/item/device/gps/security, +/turf/simulated/floor/tiled/dark, +/area/security/airlock) +"mMy" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"jGL" = ( -/obj/structure/catwalk, +"nau" = ( +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/security/airlock) +"nrm" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"nvn" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 1 + }, +/obj/effect/floor_decal/snow/floor/edges, /obj/structure/cable/heavyduty{ icon_state = "4-8" }, /obj/structure/railing{ - dir = 8 + dir = 1 + }, +/obj/structure/railing{ + dir = 2; + flags = null }, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds/power) -"jJi" = ( -/obj/machinery/light{ - dir = 1 +"nKF" = ( +/obj/structure/sign/directions/security{ + icon_state = "direction_sec"; + dir = 8 }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"jQr" = ( -/obj/machinery/pointdefense_control{ - id_tag = "secshuttle_pd"; - name = "shuttle laser FCS" +/turf/simulated/wall/r_wall, +/area/hallway/primary/central_one) +"nXc" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "secshuttle_docker_pump_out_external" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"jUf" = ( +"nYU" = ( +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "secpilotoffice"; + name = "Office Shutters"; + pixel_x = -26; + pixel_y = -24; + req_access = list(51) + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"onc" = ( /obj/structure/bed/chair/shuttle{ dir = 1 }, @@ -63415,300 +63660,45 @@ }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"kfX" = ( +"oor" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"kkm" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"ksd" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"ktE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 4 - }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"kOa" = ( -/obj/structure/table/rack/shelf, -/obj/item/clothing/shoes/magboots, -/obj/item/device/suit_cooling_unit, -/obj/item/weapon/tank/oxygen, -/obj/item/clothing/suit/space/void/medical, -/obj/item/clothing/head/helmet/space/void/medical, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_prep) -"lnh" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ - frequency = 1380; - id_tag = "secshuttle_door_int" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"lww" = ( -/obj/machinery/sleep_console, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"lzx" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 4 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"lAq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"lHQ" = ( -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "secshuttle_sensor"; - master_tag = "expshuttle_docker"; - pixel_y = 28 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1380; - id_tag = "secshuttle_vent" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"mjD" = ( -/obj/machinery/photocopier, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/hos) -"mjH" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, -/area/borealis2/outdoors/grounds) -"mlC" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1; - icon_state = "map" - }, -/obj/structure/handrail, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"mmn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"mxS" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"mBp" = ( -/obj/structure/table/marble, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "kitchen"; - layer = 3.1; - name = "Kitchen Shutters" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/bar) -"mEQ" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, -/area/security/hangar) -"mUo" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/structure/handrail, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"nka" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"nwR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 1; - id = "secshut_cabinshut"; - layer = 3.1; - name = "Cabin Shutters" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"nEB" = ( -/obj/machinery/computer/ship/helm, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"nFg" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"nKF" = ( -/obj/structure/sign/directions/security{ - icon_state = "direction_sec"; - dir = 8 - }, -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_one) -"ohl" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4; - icon_state = "shuttle_chair" - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - icon_state = "extinguisher_closed"; - pixel_x = -30 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"ojI" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"opk" = ( -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"orr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "secshuttle_docker_pump_out_internal" - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"ors" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/item/device/geiger/wall{ - dir = 4; - pixel_x = -30 - }, -/turf/simulated/floor/tiled/dark, -/area/security/airlock) -"oux" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) "ovS" = ( /obj/machinery/door/airlock/glass_external/freezable{ req_access = list(48) }, /turf/simulated/floor/plating, /area/borealis2/outdoors/grounds/traderpad) -"oPi" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 +"ozm" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 +/obj/structure/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"oBI" = ( +/obj/machinery/sleep_console, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"oIF" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/industrial/danger, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /turf/simulated/floor/tiled/dark, /area/security/hangar) @@ -63718,11 +63708,49 @@ /obj/structure/sign/directions/cargo, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"pcP" = ( -/obj/structure/sign/directions/engineering, -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_one) -"piW" = ( +"oSK" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1380; + id_tag = "secshuttle_door_int"; + req_one_access = list(1) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"oTe" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 4 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Solar Farm Output"; + name_tag = "Solar Farm Output" + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"oYF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"pct" = ( /obj/effect/floor_decal/snow/floor/edges{ dir = 1 }, @@ -63733,31 +63761,34 @@ }, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds) -"pvP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +"pcP" = ( +/obj/structure/sign/directions/engineering, +/turf/simulated/wall/r_wall, +/area/hallway/primary/central_one) +"pmL" = ( +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 10; + frequency = 1380; + id_tag = "secshuttle_exterior_sensor"; + master_tag = "secshuttle_docker"; + pixel_x = 0; + pixel_y = 28 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +/obj/effect/floor_decal/industrial/danger{ + icon_state = "danger"; + dir = 8 }, -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"pxt" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 +/obj/machinery/door/airlock/voidcraft{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "secshuttle_door_ext"; + locked = 1 }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"ptM" = ( +/obj/machinery/newscaster/security_unit{ + pixel_x = -30 }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) @@ -63787,180 +63818,184 @@ }, /turf/simulated/floor/tiled/steel, /area/security/hallway) -"pNM" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"pNS" = ( -/obj/machinery/computer/ship/sensors{ - dir = 4 +"pLF" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8; + icon_state = "shuttle_chair" }, -/obj/machinery/power/terminal, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/structure/closet/walllocker/emerglocker/east, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"pOp" = ( /obj/structure/cable/green{ + d1 = 1; d2 = 4; - icon_state = "0-4" + icon_state = "1-4" }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"pOu" = ( -/obj/structure/bed/chair{ - dir = 8 +"pQd" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"pZn" = ( +"pRv" = ( /obj/effect/floor_decal/snow/floor/edges{ dir = 1 }, -/obj/effect/floor_decal/snow/floor/edges, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, /obj/structure/railing{ dir = 1 }, /obj/structure/railing{ - dir = 2; - flags = null + dir = 8 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 }, /turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"qcn" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" +/area/borealis2/outdoors/grounds) +"qbl" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "secshuttle_vent" }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) "qfY" = ( /obj/structure/sign/directions/security, /turf/simulated/wall/r_wall, /area/hallway/primary/central_one) -"qvV" = ( -/obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/briefing_room) -"qwq" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"qzh" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/southleft{ - req_one_access = list(1) - }, -/obj/item/weapon/tank/jetpack/oxygen, -/obj/item/clothing/suit/space/void/security/alt, -/obj/item/clothing/head/helmet/space/void/security/alt, -/obj/item/device/gps/security, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"qBd" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "secpilotoffice"; - layer = 3.1; - name = "Office Shutters" - }, -/obj/structure/table/marble, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.7 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"qMO" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4; - icon_state = "shuttle_chair" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"qOd" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"qXt" = ( -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "secpilotoffice"; - name = "Office Shutters"; - pixel_x = -26; - pixel_y = 0; - req_access = list(51) +"qgp" = ( +/obj/item/device/geiger/wall{ + dir = 1; + pixel_y = -30 }, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/donkpockets, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"riX" = ( -/obj/structure/handrail{ - dir = 1 +"qrx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/tiled/techfloor, +/turf/simulated/wall/rshull, /area/shuttle/security) -"rke" = ( +"qzA" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, /turf/simulated/floor/tiled/dark, -/area/security/hangar) -"rtv" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, -/area/borealis2/outdoors/grounds) -"rzh" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "secshuttle_docker_pump_out_external" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 +/area/security/airlock) +"qLu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"rHc" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"rRQ" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, +"rGC" = ( /obj/effect/floor_decal/snow/floor/edges{ dir = 8 }, +/obj/effect/floor_decal/snow/floor/edges, +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"rIE" = ( +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "secshuttle_sensor"; + master_tag = "expshuttle_docker"; + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "secshuttle_vent" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"rJs" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"rJV" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "secshuttle_docker_pump_out_internal" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"rNI" = ( +/obj/structure/catwalk, /obj/structure/cable/heavyduty{ icon_state = "1-2" }, -/obj/structure/railing{ - dir = 8 - }, /obj/structure/railing{ icon_state = "railing0"; - dir = 4 + dir = 1 }, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds/power) +"rXe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "secshuttle_docker_pump_out_internal" + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) "sdy" = ( /obj/structure/table/rack, /obj/machinery/door/window/brigdoor/northright{ @@ -63983,65 +64018,46 @@ /obj/item/clothing/head/helmet/space/void/captain, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"ssQ" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 +"sfk" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/secure_closet{ + name = "confiscated goods storage"; + req_one_access = list(1) }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"sDh" = ( -/obj/structure/catwalk, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/railing{ - dir = 2; - flags = null - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"tbF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/sign/directions/engineering, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"tdL" = ( +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"siL" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/turf/simulated/wall/r_wall, -/area/security/pilotroom) -"tdW" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/security/airlock) -"tnC" = ( -/obj/machinery/suit_cycler/security, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"ttO" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"txH" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, /turf/simulated/wall/rshull, /area/shuttle/security) -"txV" = ( +"skE" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/security/hangar) +"sqK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/vending/coffee, +/obj/item/device/radio/intercom{ + broadcasting = 0; + dir = 2; + frequency = 1475; + icon_state = "intercom"; + listening = 1; + name = "Station Intercom (Security)"; + pixel_x = 0; + pixel_y = -21 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"suZ" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8; frequency = 1380; @@ -64061,71 +64077,242 @@ }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"tAN" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/structure/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"tGU" = ( -/obj/machinery/atmospherics/unary/engine{ - icon_state = "nozzle"; - dir = 1 - }, -/turf/simulated/floor/reinforced, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/security) -"tNE" = ( -/obj/structure/catwalk, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ - icon_state = "railing0"; +"swQ" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; dir = 4 }, /turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"tVM" = ( +/area/borealis2/outdoors/grounds) +"szY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"sOu" = ( +/obj/machinery/light, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"sRl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 }, /turf/simulated/wall/rshull, /area/shuttle/security) -"uen" = ( +"sUo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"sWI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 1; + id = "secshut_cabinshut"; + layer = 3.1; + name = "Cabin Shutters" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"tbF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/directions/engineering, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"tdL" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/security/pilotroom) +"trX" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10; icon_state = "intact" }, /turf/simulated/wall/rshull, /area/shuttle/security) +"twA" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"tAi" = ( +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"tGh" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4; + icon_state = "shuttle_chair" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"tOh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) "ugG" = ( /obj/effect/shuttle_landmark/automatic, /turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, /area/borealis2/outdoors/grounds) -"ulo" = ( -/turf/simulated/wall/r_wall, +"uni" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, /area/security/hangar) -"uul" = ( +"uoi" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"uwg" = ( +/obj/effect/floor_decal/borderfloorblack/corner, +/obj/effect/floor_decal/industrial/danger/corner, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"uCh" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"uCY" = ( /obj/structure/bed/chair/shuttle{ dir = 8; icon_state = "shuttle_chair" }, -/obj/structure/closet/medical_wall{ - pixel_x = 32; +/obj/structure/fuel_port{ + dir = 4; + pixel_x = 24; pixel_y = 0 }, -/obj/item/weapon/storage/firstaid, -/obj/item/weapon/storage/firstaid, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"uzm" = ( +"uKP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/steel, +/area/security/briefing_room) +"uST" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4; + icon_state = "shuttle_chair" + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/structure/closet/walllocker/emerglocker/west, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"vcR" = ( +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/briefing_room) +"vnL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"vps" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + icon_state = "borderfloorcorner_black"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + icon_state = "dangercorner"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"vry" = ( +/obj/machinery/suit_cycler/security, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"vIK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"vZf" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/blast/shutters{ dir = 8; @@ -64134,80 +64321,130 @@ name = "Office Shutters" }, /obj/structure/table/marble, -/obj/machinery/door/window/brigdoor/westleft, +/obj/machinery/door/window/brigdoor/westleft{ + req_access = list(51) + }, +/obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"uHb" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 +"vZE" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/item/weapon/tank/jetpack/oxygen, -/obj/item/clothing/suit/space/void/security, -/obj/item/clothing/head/helmet/space/void/security, -/obj/machinery/door/window/brigdoor/southright{ - req_one_access = list(1) - }, -/obj/item/device/gps/security, -/turf/simulated/floor/tiled/dark, -/area/security/airlock) -"uOz" = ( -/obj/machinery/shipsensors{ - dir = 1 - }, -/turf/simulated/floor/reinforced, +/turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"uVz" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 +"wdA" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"wqI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1; + icon_state = "map" }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 +/obj/structure/handrail, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"wuI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Security Pilot" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"wwm" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /turf/simulated/floor/tiled/dark, /area/security/hangar) -"uYR" = ( -/obj/machinery/door/airlock/multi_tile/metal{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "secshuttle_door_ext"; - locked = 1 +"wLk" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"uZT" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/southleft{ - req_one_access = list(1) - }, -/obj/machinery/light{ +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/borealis2/outdoors/grounds/traderpad) +"wVq" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + icon_state = "borderfloorcorner_black"; dir = 1 }, -/obj/item/weapon/tank/jetpack/oxygen, -/obj/item/clothing/suit/space/void/security, -/obj/item/clothing/head/helmet/space/void/security, -/obj/item/device/gps/security, +/obj/effect/floor_decal/industrial/danger/corner{ + icon_state = "dangercorner"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, /turf/simulated/floor/tiled/dark, -/area/security/airlock) -"vex" = ( +/area/security/hangar) +"xxR" = ( +/obj/machinery/light, +/obj/machinery/computer/ship/engines{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"vgs" = ( -/obj/structure/table/woodentable, +"xCT" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1380; + id_tag = "secsh_cabin"; + req_one_access = list(1) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"xGN" = ( +/obj/machinery/pointdefense_control{ + id_tag = "secshuttle_pd"; + name = "shuttle laser FCS" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"ybG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 + }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"vok" = ( +"ylW" = ( /obj/structure/table/rack, /obj/item/clothing/mask/breath, /obj/item/clothing/shoes/magboots, @@ -64227,120 +64464,12 @@ /obj/item/device/gps/security, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"vro" = ( -/obj/machinery/power/pointdefense{ - id_tag = "secshuttle_pd" - }, -/turf/simulated/floor/plating, -/area/shuttle/security) -"vMq" = ( -/obj/machinery/computer/shuttle_control/explore/security, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"vSr" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"vVp" = ( -/turf/simulated/floor/tiled/dark, -/area/security/briefing_room) -"vVS" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"wnh" = ( -/obj/effect/floor_decal/snow/floor/edges, -/obj/structure/catwalk, -/obj/structure/railing{ - dir = 2; - flags = null - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"wrG" = ( -/obj/effect/floor_decal/snow/floor/edges3{ - icon_state = "gravsnow_edges"; - dir = 1 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"wLk" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/borealis2/outdoors/grounds/traderpad) -"wXb" = ( -/obj/item/device/geiger/wall{ - dir = 1; - pixel_y = -30 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"xpC" = ( -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"xsr" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ - frequency = 1380; - id_tag = "secsh_cabin"; - req_one_access = list(1) - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"xtR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"xXu" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/sleep_console, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"ygv" = ( -/obj/effect/landmark/start{ - name = "Security Pilot" - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) "ylY" = ( /obj/machinery/door/airlock/glass_engineering{ name = "Engine Gas Storage" }, /turf/simulated/floor/plating, /area/engineering/engine_room) -"ymj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) (1,1,1) = {" aaa @@ -74969,76 +75098,76 @@ aag aag aag bjY -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -ckX -ckX -ckX -ckX -ckX -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -cla +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +btO aag aag aag @@ -75290,7 +75419,7 @@ aag aag aag aag -bNw +aIF aag aag aag @@ -75542,7 +75671,7 @@ aag aag aag aag -bNw +aIF aag aag aag @@ -75794,7 +75923,7 @@ aag aag aag aag -bNw +aIF aag aag aag @@ -76046,7 +76175,7 @@ aag aag aag aag -bNw +aIF aag aag aag @@ -76298,7 +76427,7 @@ aag aag aag aag -bNw +aIF aag aag aag @@ -76550,7 +76679,7 @@ aag aag aag aag -bNw +aIF aag aag aag @@ -76802,7 +76931,7 @@ aag aag aag aag -bNw +aIF aag aag aag @@ -77054,7 +77183,7 @@ aag aag aag aag -bNw +aIF aag aag aag @@ -77306,7 +77435,7 @@ aag aag aag aag -bNw +aIF aag aag aag @@ -77558,7 +77687,7 @@ aag aag aag aag -bNw +aIF aag aag aag @@ -77810,7 +77939,7 @@ aag aag aag aag -bNw +aIF aag aag aag @@ -78062,7 +78191,7 @@ aag aag aag aag -bNw +aIF aag aag aag @@ -78314,7 +78443,7 @@ aag aag aag aag -bNw +aIF aag aag aag @@ -78566,7 +78695,7 @@ aag aag aag aag -bNw +aIF aag aag aag @@ -78818,7 +78947,7 @@ aag aag aag aag -bNw +aIF aag aag aag @@ -79070,7 +79199,7 @@ aag aag aag aag -bNw +aIF aag aag aag @@ -79322,7 +79451,7 @@ aag aag aag aag -bNw +aIF aag aag aag @@ -79574,7 +79703,7 @@ aag aag aag aag -bNw +aIF aag aag aag @@ -83285,26 +83414,26 @@ aag aag aag ckV -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo -bNo +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr +aKr ckT ckU aJB @@ -84062,7 +84191,7 @@ aag aag aag aag -aIF +bNw aag aag aag @@ -84314,7 +84443,7 @@ aag aag aag aag -aIF +bNw aag aag aag @@ -84566,12 +84695,12 @@ aag aag aag aag -aIF +bNw aag aag aKZ -piW -wnh +pct +eCK aag aag aag @@ -84818,41 +84947,41 @@ aag aag aag aag -ezr -fzi -rRQ -rRQ -hml -sDh -rRQ -rRQ -rRQ -rRQ -rRQ -rRQ -rRQ -rRQ -rRQ -rRQ -rRQ -rRQ -rRQ -rRQ -rRQ -rRQ -rRQ -rRQ -rRQ -rRQ -rRQ -rRQ -rRQ -rRQ -rRQ -rRQ -rRQ -rRQ -hMS +dtV +oTe +fZS +fZS +rNI +hTN +fZS +fZS +fZS +fZS +fZS +fZS +fZS +fZS +fZS +fZS +fZS +fZS +fZS +fZS +fZS +fZS +fZS +fZS +fZS +fZS +fZS +fZS +fZS +fZS +fZS +fZS +fZS +fZS +rGC aag aag aag @@ -85074,8 +85203,8 @@ aag aag aag aag -piW -wnh +pct +eCK aKZ aag aag @@ -85104,7 +85233,7 @@ aag aag aag aag -pZn +nvn aag aag aag @@ -85356,7 +85485,7 @@ aag aag aag aag -pZn +nvn aag aag aag @@ -85608,7 +85737,7 @@ aag aag aag aag -pZn +nvn aag aag aaY @@ -85860,7 +85989,7 @@ aag aag aag aag -pZn +nvn aag aag btM @@ -86112,7 +86241,7 @@ aag aag aag aag -pZn +nvn aag aag btM @@ -86364,7 +86493,7 @@ aag aag aag aag -pZn +nvn aag aag btM @@ -86586,7 +86715,7 @@ abd abd abd abd -wrG +lZH abk aag aag @@ -86616,7 +86745,7 @@ aag aag aag aag -pZn +nvn aag bsy btM @@ -86868,7 +86997,7 @@ aag aag aag aag -pZn +nvn aag aag btM @@ -87120,7 +87249,7 @@ aag aag aag aag -pZn +nvn aag aag btM @@ -87372,7 +87501,7 @@ aag aag aag aag -pZn +nvn aag aag btM @@ -87624,7 +87753,7 @@ aag aag aag aag -pZn +nvn aag aag btM @@ -87875,9 +88004,9 @@ aLQ aLQ aLQ aLQ -tAN -jGL -tAN +ozm +eYL +ozm aLQ buV byP @@ -88127,9 +88256,9 @@ aQf aQf aQf aQf -ica -tNE -ica +jhL +djl +jhL aQf aaj abk @@ -88380,7 +88509,7 @@ aag aag aag aag -pZn +nvn aKZ aag aLR @@ -88592,25 +88721,25 @@ aag aag aag aag -mEQ -ulo -ulo -ulo -ulo -ulo -ulo -ulo -ulo -ulo -ulo -ulo -ulo -ulo -ulo -ulo -ulo -ulo -mEQ +skE +gtU +gtU +gtU +gtU +gtU +gtU +gtU +gtU +gtU +gtU +gtU +gtU +gtU +gtU +gtU +gtU +gtU +skE aag aaN aag @@ -88632,7 +88761,7 @@ aag aag aag aag -pZn +nvn aag aag aLR @@ -88844,25 +88973,25 @@ aag aag aag aag -ulo -hQo -oux -oux -oux -oux -oux -oux -oux -ojI -oux -oux -oux -oux -oux -oux -oux -iZX -ulo +gtU +uwg +joe +joe +joe +joe +joe +joe +joe +nrm +joe +joe +joe +joe +joe +joe +joe +kjO +gtU aag aag aag @@ -89096,29 +89225,29 @@ aag aag aag aag -ulo -ttO -iwa -iwa -iwa -iwa -iwa -iwa -iwa -vro -eyh -eyh -eyh -eyh -dIg -fCH -tGU -oPi -ulo +gtU +oIF +eYd +eYd +eYd +eYd +eYd +eYd +eYd +epP +dPy +dPy +dPy +dPy +pmL +vIK +ldb +uoi +gtU aag aag aag -mxS +pRv aHN bbg bbg @@ -89348,25 +89477,25 @@ aag aag aag aag -ulo -ttO -uOz -eyh -fcS -fcS -eyh -eyh -eyh -eyh -eyh +gtU +oIF +ljB +dPy +eKW +eKW +dPy +dPy +dPy +dPy +dPy aZQ -eTr -lHQ -gqc -iVl -tGU -oPi -ulo +qrx +rIE +qbl +sRl +ldb +uoi +gtU aag aag aag @@ -89600,25 +89729,25 @@ aag aag aag aag -ulo -ttO -eyh -eyh -pNS -dvG -eyh -fGG -ohl -guA -qMO -fGG -uen -mUo -ymj -iVl -tGU -oPi -ulo +gtU +oIF +dPy +dPy +dPM +eZJ +dPy +gHm +ifJ +uST +tGh +gHm +trX +mlc +szY +sRl +ldb +uoi +gtU aag aag aag @@ -89852,25 +89981,25 @@ aag aag aag aag -ulo -ttO -nwR -nEB -jUf -jbK -tVM -xXu -icd -icd -gbW -lww -eyh -txV -cKf -uYR -dOa -oPi -ulo +gtU +oIF +sWI +jrx +onc +elA +lpV +iQE +mMy +mMy +pOp +oBI +dPy +suZ +iux +gzS +fDP +uoi +gtU aag aag aag @@ -90104,25 +90233,25 @@ aag aag aag aag -ulo -ttO -nwR -vMq -vex -qOd -xsr -vex -vex -vex -kfX -vex -lnh -giI -fNv -cmg -rzh -oPi -ulo +gtU +oIF +sWI +mbt +twA +vZE +xCT +cRV +cRV +cRV +qLu +cRV +oSK +rJV +sUo +fQd +nXc +uoi +gtU aag aag aag @@ -90130,16 +90259,16 @@ aHa aaj aaj aab -lzx -lzx -lzx -lzx -lzx -lzx -lzx -lzx -lzx -lzx +swQ +swQ +swQ +swQ +swQ +swQ +swQ +swQ +swQ +swQ byJ aHR aSm @@ -90356,25 +90485,25 @@ aag aag aag aag -ulo -ttO -eyh -eyh -jQr -czv -eyh -iUu -uul -ekF -fAj -emd -eyh -mlC -riX -iVl -tGU -oPi -ulo +gtU +oIF +dPy +dPy +xGN +xxR +dPy +hxh +ihI +pLF +uCY +sfk +dPy +wqI +kQg +sRl +ldb +uoi +gtU aag aaN aag @@ -90392,7 +90521,7 @@ aTO aTO aTO aTO -vVS +iIs aaj aSm aag @@ -90608,25 +90737,25 @@ aag aag aag aag -ulo -ttO -vro -eyh -dft -dft -eyh -gkF -eyh -eyh -kkm +gtU +oIF +epP +dPy +gpN +gpN +dPy +eze +dPy +dPy +siL bbc bhm -orr +rXe azE -txH -tGU -oPi -ulo +gfk +ldb +uoi +gtU aag aag aag @@ -90644,7 +90773,7 @@ aUp aUp aUp aTO -vVS +iIs aaj aSm aag @@ -90860,25 +90989,25 @@ akb aag aag aag -ulo -ttO -iwa -iwa -iwa -iwa -iwa -iwa -iwa -vro -kkm -eyh -eyh -eyh +gtU +oIF +eYd +eYd +eYd +eYd +eYd +eYd +eYd +epP +siL +dPy +dPy +dPy aHU blI -tGU -oPi -ulo +ldb +uoi +gtU aIK aIK aIK @@ -90896,12 +91025,12 @@ aUp aUp aUp aTO -vVS +iIs aKs aSm -bgf +aag btP -bgf +aag aag aLR abk @@ -91112,25 +91241,25 @@ akb aag aag aag -ulo -hOH -uVz -uVz -uVz -uVz -uVz -uVz -uVz -uVz -ksd -uVz -uVz -uVz -uVz -uVz -uVz -iLp -ulo +gtU +vps +fhd +fhd +fhd +fhd +fhd +fhd +fhd +fhd +uni +fhd +fhd +fhd +fhd +fhd +fhd +wVq +gtU bhp aQh aNz @@ -91148,12 +91277,12 @@ aUp aVD aUp aTO -vVS +iIs aaj aSm -bgf +aag btP -bgf +aag aag aLR abk @@ -91364,25 +91493,25 @@ akb aag aag aag -ulo -vSr -rke -rke -rke -rke -rke -rke -rke -rke -xtR -rke -rke -rke -rke -qcn -blM -qwq -ulo +gtU +jKQ +tOh +tOh +tOh +tOh +tOh +tOh +tOh +tOh +uCh +tOh +tOh +tOh +tOh +tOh +tOh +cwy +gtU aNA aRy aIK @@ -91400,12 +91529,12 @@ aUp aUp aUp aTO -vVS +iIs aaj aSm -bgf +aag btP -bgf +aag aag aLR abk @@ -91616,25 +91745,25 @@ akb aag aag aag -rtv +kTI aHf -ulo -ulo -ulo -rke +gtU +gtU +gtU +tAi hRF -rke -rke -rke -nka -rke +tAi +tAi +tAi +wwm +tAi aOh aOh aOh -xtR -rke -vSr -ulo +hUL +rJs +kiL +gtU aNy aNy aHT @@ -91652,7 +91781,7 @@ aUp aHV aUp aTO -vVS +iIs aHR aSm aag @@ -91875,9 +92004,9 @@ aGl aHf aJL aJL -qBd -uzm -qBd +iDV +vZf +iDV tdL aKt aHT @@ -91904,7 +92033,7 @@ aUp aVD aUp aTO -vVS +iIs aaj aSm aag @@ -92125,22 +92254,22 @@ akb aFs aGm aHf -jJi -xpC -xpC -pOu -xpC -qXt -rHc +jLf +ptM +jGk +kpD +nYU +oor +wdA aHT auQ -aSn +qzA aXN -ors +biT auQ aHT aQi -hMM +fLi aHT aRz aXS @@ -92156,7 +92285,7 @@ aUp aHV aUp aTO -vVS +iIs aaj aSm aag @@ -92377,22 +92506,22 @@ akb akA aGn aHf -xpC -xpC -xpC -xpC -xpC -nFg -mmn +jGk +jGk +jGk +jGk +jGk +lyx +lKE aHT -uZT aOw +aSn aXO aOk aWV aHT -qvV -fnq +vcR +lLf aHT aXM bpC @@ -92408,7 +92537,7 @@ aUp aVD aUp aTO -vVS +iIs aKs aSm aag @@ -92629,22 +92758,22 @@ aDy aFt aGo aHf -tnC -xpC -ygv -gXV -xpC -xpC -wXb +vry +jGk +jGk +cuC +jGk +iyN +qgp aHT -uHb -tdW +mIX +nau aXT aSq aRm aHT -vVp -gSA +fFs +dSL aHT aYa bpD @@ -92881,13 +93010,13 @@ akb akb aGp aHf -qzh -xpC -pNM -ftI -ygv -xpC -cDa +fFV +jGk +vnL +ybG +jGk +iyN +sqK aKx aHT aIK @@ -93133,13 +93262,13 @@ aCG asv azf aNF -vok -xpC -xpC -ktE -xpC -xpC -opk +ylW +jGk +jGk +wuI +jGk +iyN +sOu aKx aEM aJJ @@ -93386,16 +93515,16 @@ aBI aAb aNF aJL -ssQ -vgs -pvP -gsF -eGd -pxt +eQB +dxj +oYF +lSe +kuO +pQd bLR aIM -dEK -dtD +mgS +uKP aTC aUI aSs diff --git a/maps/yw/cryogaia_areas.dm b/maps/yw/cryogaia_areas.dm index 2a1854dfa4..327684675c 100644 --- a/maps/yw/cryogaia_areas.dm +++ b/maps/yw/cryogaia_areas.dm @@ -42,6 +42,8 @@ /area/borealis2/outdoors/grounds/power name = "\The Exterior Powerline" + icon = 'icons/turf/areas.dmi' + icon_state = "yellow" /area/borealis2/outdoors/grounds/traderpad name = "\improper Cryogaia Commerce Pad" From e4b1464e89c1f3c2d492e1db71f1132a2921a6b0 Mon Sep 17 00:00:00 2001 From: Killian <49700375+KillianKirilenko@users.noreply.github.com> Date: Mon, 4 May 2020 13:46:02 +0100 Subject: [PATCH 12/23] secint pt3b - medivac passage --- maps/yw/cryogaia-05-main.dmm | 3489 ++++++++++++++++++---------------- 1 file changed, 1814 insertions(+), 1675 deletions(-) diff --git a/maps/yw/cryogaia-05-main.dmm b/maps/yw/cryogaia-05-main.dmm index 7a806638cc..26befc8591 100644 --- a/maps/yw/cryogaia-05-main.dmm +++ b/maps/yw/cryogaia-05-main.dmm @@ -14151,7 +14151,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, -/turf/simulated/floor/plating, +/turf/simulated/floor/tiled/steel, /area/maintenance/medbay) "aAy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -14160,7 +14160,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/plating, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/steel, /area/maintenance/medbay) "aAz" = ( /obj/machinery/door/firedoor, @@ -14802,6 +14803,9 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, /turf/simulated/floor/plating, /area/maintenance/medbay) "aBI" = ( @@ -14893,7 +14897,7 @@ dir = 4 }, /obj/machinery/door/airlock/maintenance/medical, -/turf/simulated/floor/plating, +/turf/simulated/floor/tiled/steel, /area/medical/surgery_hallway) "aBS" = ( /turf/simulated/floor/tiled/white, @@ -32025,6 +32029,8 @@ /area/security/airlock) "bhr" = ( /obj/structure/closet/crate, +/obj/structure/railing, +/obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, /area/maintenance/medbay) "bhs" = ( @@ -62829,18 +62835,28 @@ }, /turf/simulated/floor/tiled/red, /area/security/outpost) -"cuC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ +"cqZ" = ( +/obj/effect/floor_decal/snow/floor/edges{ dir = 4 }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"cwy" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/structure/catwalk, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"cHV" = ( +/obj/structure/catwalk, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/railing{ + icon_state = "railing0"; dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) "cLv" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -62851,21 +62867,210 @@ /obj/machinery/suit_cycler/medical, /turf/simulated/floor/tiled, /area/cryogaia/station/explorer_prep) -"cRV" = ( +"cNE" = ( +/obj/machinery/sleeper{ + dir = 8 + }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"djl" = ( +"cNG" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"cRW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"cUZ" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/obj/effect/floor_decal/snow/floor/edges, +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"dhg" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"drD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Security Pilot" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"duz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 1; + id = "secshut_cabinshut"; + layer = 3.1; + name = "Cabin Shutters" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"dzT" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1380; + id_tag = "secshuttle_door_int"; + req_one_access = list(1) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"dDd" = ( +/obj/structure/sign/directions/science, +/turf/simulated/wall/r_wall, +/area/hallway/primary/central_one) +"dEv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"dNy" = ( +/turf/simulated/wall/rshull, +/area/shuttle/security) +"dNW" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"dPn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel, +/area/security/briefing_room) +"dQc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"eti" = ( +/obj/structure/sign/directions/bridge{ + icon_state = "direction_bridge"; + dir = 4 + }, +/turf/simulated/wall, +/area/maintenance/substation/civilian) +"ety" = ( +/obj/machinery/door/window/brigdoor/northright{ + name = "SAR Voidsuits"; + req_access = newlist(); + req_one_access = list(68) + }, +/turf/simulated/floor/tiled, +/area/cryogaia/station/explorer_prep) +"eQA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/directions/science, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"flT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"foN" = ( +/obj/effect/floor_decal/snow/floor/edges, +/obj/structure/catwalk, +/obj/structure/railing{ + dir = 2; + flags = null + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"fuJ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"fyz" = ( +/obj/machinery/door/airlock/maintenance/sec{ + name = "Emergency Medical Access"; + req_one_access = list(1,52) + }, +/turf/simulated/floor/tiled/steel, +/area/maintenance/medbay) +"fHx" = ( /obj/structure/catwalk, /obj/structure/cable/heavyduty{ icon_state = "4-8" }, /obj/structure/railing{ - icon_state = "railing0"; - dir = 4 + dir = 8 }, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds/power) -"dtV" = ( +"fIL" = ( +/obj/structure/sign/directions/science, +/turf/simulated/wall, +/area/storage/primary) +"fTN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"fZI" = ( +/obj/machinery/door/airlock/maintenance/sec{ + name = "Emergency Medical Access"; + req_one_access = list(1,52) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/steel, +/area/security/hangar) +"gcF" = ( /obj/structure/cable/heavyduty{ icon_state = "2-8" }, @@ -62884,174 +63089,79 @@ }, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds/power) -"dxj" = ( -/obj/machinery/computer/secure_data{ - dir = 8 +"gep" = ( +/obj/effect/floor_decal/snow/floor/edges3{ + icon_state = "gravsnow_edges"; + dir = 1 }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"dDd" = ( -/obj/structure/sign/directions/science, -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_one) -"dPy" = ( -/turf/simulated/wall/rshull, -/area/shuttle/security) -"dPM" = ( -/obj/machinery/computer/ship/sensors{ - dir = 4 +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"gpm" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 }, -/obj/machinery/power/terminal, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"dSL" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/donkpockets, -/turf/simulated/floor/tiled/dark, -/area/security/briefing_room) -"elA" = ( -/obj/structure/table/standard, -/obj/structure/extinguisher_cabinet{ - pixel_y = -26 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"epP" = ( -/obj/machinery/power/pointdefense{ - id_tag = "secshuttle_pd" - }, -/turf/simulated/floor/plating, -/area/shuttle/security) -"eti" = ( -/obj/structure/sign/directions/bridge{ - icon_state = "direction_bridge"; - dir = 4 - }, -/turf/simulated/wall, -/area/maintenance/substation/civilian) -"ety" = ( -/obj/machinery/door/window/brigdoor/northright{ - name = "SAR Voidsuits"; - req_access = newlist(); - req_one_access = list(68) - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_prep) -"eze" = ( -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/voidcraft{ - frequency = 1380; - id_tag = "secsh_compartment"; +/obj/machinery/door/window/brigdoor/southright{ req_one_access = list(1) }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/suit/space/void/security/alt, +/obj/item/clothing/head/helmet/space/void/security/alt, +/obj/item/device/gps/security, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"gvH" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "secshuttle_vent" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + cycle_to_external_air = 1; + frequency = 1380; + id_tag = "secshuttle_docker"; + pixel_y = 26; + req_one_access = list(1); + tag_airpump = "secshuttle_vent"; + tag_chamber_sensor = "secshuttle_sensor"; + tag_exterior_door = "secshuttle_door_ext"; + tag_exterior_sensor = "secshuttle_exterior_sensor"; + tag_interior_door = "secshuttle_door_int" + }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"eCK" = ( +"gxs" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "secshuttle_docker_pump_out_internal" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"gzU" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 1 + }, /obj/effect/floor_decal/snow/floor/edges, -/obj/structure/catwalk, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/railing{ + dir = 1 + }, /obj/structure/railing{ dir = 2; flags = null }, /turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"eKW" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "secshut_cabinshut"; - layer = 3.1; - name = "Cabin Shutters" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"eQA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/sign/directions/science, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"eQB" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/structure/closet/crate/secure/phoron{ - name = "spare fuel crate" - }, -/obj/item/weapon/tank/phoron, -/obj/item/weapon/tank/phoron, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"eYd" = ( -/turf/simulated/floor/reinforced, -/area/security/hangar) -"eYL" = ( -/obj/structure/catwalk, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds/power) -"eZJ" = ( -/obj/machinery/light, -/obj/machinery/power/smes/buildable/point_of_interest, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"fhd" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"fDP" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"fFs" = ( -/turf/simulated/floor/tiled/dark, -/area/security/briefing_room) -"fFV" = ( +"gEv" = ( /obj/structure/table/rack, /obj/item/clothing/mask/breath, /obj/item/clothing/shoes/magboots, @@ -63067,79 +63177,34 @@ /obj/item/device/gps/security, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"fIL" = ( -/obj/structure/sign/directions/science, -/turf/simulated/wall, -/area/storage/primary) -"fLi" = ( -/obj/structure/closet/crate, -/obj/item/weapon/book/manual/security_space_law, -/obj/item/weapon/storage/box/cups, -/turf/simulated/floor/tiled/dark, -/area/security/briefing_room) -"fQd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"fZS" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"gfk" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"gpN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, +"gEC" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/blast/shutters{ - dir = 4; - id = "secshut_cabinshut"; + dir = 8; + id = "secpilotoffice"; layer = 3.1; - name = "Cabin Shutters" + name = "Office Shutters" }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"gtU" = ( -/turf/simulated/wall/r_wall, -/area/security/hangar) -"gzS" = ( -/obj/machinery/door/airlock/multi_tile/metal{ +/obj/structure/table/marble, +/obj/machinery/door/window/brigdoor/westleft{ + req_access = list(51) + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"gJA" = ( +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"gMc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; frequency = 1380; - icon_state = "door_locked"; - id_tag = "secshuttle_door_ext"; - locked = 1 + id_tag = "secshuttle_docker_pump_out_internal" }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"gHm" = ( -/obj/machinery/sleeper{ - dir = 8 +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) @@ -63149,16 +63214,110 @@ /obj/fiftyspawner/glass, /turf/simulated/floor/tiled/dark, /area/security/armoury) +"gOr" = ( +/turf/simulated/floor/tiled/steel, +/area/maintenance/medbay) "gQF" = ( /obj/machinery/suit_cycler/captain, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"hxh" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 +"gWG" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"gXy" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8; + icon_state = "shuttle_chair" + }, +/obj/structure/fuel_port{ + dir = 4; + pixel_x = 24; + pixel_y = 0 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"hnc" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "secpilotoffice"; + layer = 3.1; + name = "Office Shutters" + }, +/obj/structure/table/marble, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.7 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"hrD" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"hsi" = ( +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/briefing_room) +"hwC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/maintenance/medbay) +"hyq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"hQa" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "secshuttle_door_ext"; + locked = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) @@ -63176,83 +63335,22 @@ }, /turf/simulated/floor/tiled/dark, /area/security/hangar) -"hTN" = ( -/obj/structure/catwalk, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" +"hVK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/structure/handrail{ + dir = 1 }, -/obj/structure/railing{ - dir = 2; - flags = null +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"hXn" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"hUL" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" +/obj/effect/floor_decal/industrial/danger{ + dir = 4 }, /turf/simulated/floor/tiled/dark, /area/security/hangar) -"ifJ" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4; - icon_state = "shuttle_chair" - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - icon_state = "extinguisher_closed"; - pixel_x = -30 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"ihI" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8; - icon_state = "shuttle_chair" - }, -/obj/structure/closet/medical_wall{ - pixel_x = 32; - pixel_y = 0 - }, -/obj/item/weapon/storage/firstaid/o2, -/obj/item/weapon/storage/firstaid/regular, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"iux" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "secshuttle_vent" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"iyN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"iDV" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "secpilotoffice"; - layer = 3.1; - name = "Office Shutters" - }, -/obj/structure/table/marble, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.7 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) "iGb" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -63269,109 +63367,110 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/cryogaia/station/explorer_prep) -"iIs" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 +"iNC" = ( +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar"; + name = "Medbay" }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"iQE" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 +/turf/simulated/wall/r_wall, +/area/security/hangar) +"iOx" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4; + icon_state = "shuttle_chair" }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" }, -/obj/machinery/sleep_console, +/obj/structure/closet/walllocker/emerglocker/west, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"jhL" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"joe" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"jrx" = ( -/obj/machinery/computer/ship/helm, +"iVh" = ( /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"jGk" = ( -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"jKQ" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"jLf" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"kiL" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 +"iXJ" = ( +/obj/machinery/light, +/obj/machinery/computer/ship/engines{ + dir = 8 }, /obj/machinery/power/apc{ dir = 2; name = "south bump"; pixel_y = -28 }, -/obj/structure/cable/green, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"jbi" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1380; + id_tag = "secsh_cabin"; + req_one_access = list(1) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"jeI" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight, +/obj/item/device/radio, /turf/simulated/floor/tiled/dark, -/area/security/hangar) -"kjO" = ( +/area/security/briefing_room) +"jlZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"jAh" = ( +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"jBm" = ( /obj/effect/floor_decal/borderfloorblack/corner{ icon_state = "borderfloorcorner_black"; - dir = 4 + dir = 8 }, /obj/effect/floor_decal/industrial/danger/corner{ icon_state = "dangercorner"; - dir = 4 + dir = 1 }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, /turf/simulated/floor/tiled/dark, /area/security/hangar) -"kpD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +"jOD" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "secshuttle_vent" }, -/obj/effect/landmark/start{ - name = "Security Pilot" +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"kcU" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"kuO" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/security/airlock) +"keZ" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 25 }, @@ -63384,49 +63483,7 @@ }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"kOa" = ( -/obj/structure/table/rack/shelf, -/obj/item/clothing/shoes/magboots, -/obj/item/device/suit_cooling_unit, -/obj/item/weapon/tank/oxygen, -/obj/item/clothing/suit/space/void/medical, -/obj/item/clothing/head/helmet/space/void/medical, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_prep) -"kQg" = ( -/obj/structure/handrail{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"kTI" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, -/area/borealis2/outdoors/grounds) -"ldb" = ( -/obj/machinery/atmospherics/unary/engine{ - icon_state = "nozzle"; - dir = 1 - }, -/turf/simulated/floor/reinforced, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/security) -"ljB" = ( -/obj/machinery/shipsensors{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/shuttle/security) -"lpV" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"lyx" = ( +"kyZ" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -63440,6 +63497,133 @@ }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) +"kBi" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + icon_state = "borderfloorcorner_black"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + icon_state = "dangercorner"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"kDh" = ( +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 10; + frequency = 1380; + id_tag = "secshuttle_exterior_sensor"; + master_tag = "secshuttle_docker"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/effect/floor_decal/industrial/danger{ + icon_state = "danger"; + dir = 8 + }, +/obj/machinery/door/airlock/voidcraft{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "secshuttle_door_ext"; + locked = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"kEM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "secshut_cabinshut"; + layer = 3.1; + name = "Cabin Shutters" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"kGy" = ( +/turf/simulated/wall/r_wall, +/area/security/hangar) +"kHc" = ( +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "secpilotoffice"; + name = "Office Shutters"; + pixel_x = -26; + pixel_y = -24; + req_access = list(51) + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"kOa" = ( +/obj/structure/table/rack/shelf, +/obj/item/clothing/shoes/magboots, +/obj/item/device/suit_cooling_unit, +/obj/item/weapon/tank/oxygen, +/obj/item/clothing/suit/space/void/medical, +/obj/item/clothing/head/helmet/space/void/medical, +/turf/simulated/floor/tiled, +/area/cryogaia/station/explorer_prep) +"kRt" = ( +/obj/machinery/computer/ship/sensors{ + dir = 4 + }, +/obj/machinery/power/terminal, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"kST" = ( +/obj/machinery/suit_cycler/security, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"lcR" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"lkA" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Security Pilot" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"lqR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"lyT" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) "lAq" = ( /obj/structure/cable{ d1 = 4; @@ -63452,54 +63636,83 @@ }, /turf/simulated/floor/plating, /area/maintenance/bridge) -"lKE" = ( +"lEy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"lEE" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, /obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, -/obj/structure/table/woodentable, -/obj/machinery/microwave, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"lLf" = ( -/obj/structure/table/standard, -/obj/item/device/flashlight, -/obj/item/device/radio, /turf/simulated/floor/tiled/dark, -/area/security/briefing_room) -"lSe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/table/woodentable, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 +/area/security/hangar) +"lGK" = ( +/obj/structure/catwalk, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"lZH" = ( -/obj/effect/floor_decal/snow/floor/edges3{ - icon_state = "gravsnow_edges"; - dir = 1 +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 }, /turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"mbt" = ( -/obj/machinery/computer/shuttle_control/explore/security, +/area/borealis2/outdoors/grounds/power) +"lSt" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"lSD" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8; + icon_state = "shuttle_chair" + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/structure/closet/walllocker/emerglocker/east, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"mgS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +"maO" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4; + icon_state = "shuttle_chair" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel, -/area/security/briefing_room) +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"mbv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) "mjD" = ( /obj/machinery/photocopier, /turf/simulated/floor/tiled/dark, @@ -63511,11 +63724,31 @@ /obj/effect/floor_decal/snow/floor/edges, /turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, /area/borealis2/outdoors/grounds) -"mlc" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/structure/handrail, +"mtg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) +"mAp" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) "mBp" = ( /obj/structure/table/marble, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -63534,7 +63767,542 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"mIX" = ( +"mKU" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"npC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"nwR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/vending/coffee, +/obj/item/device/radio/intercom{ + broadcasting = 0; + dir = 2; + frequency = 1475; + icon_state = "intercom"; + listening = 1; + name = "Station Intercom (Security)"; + pixel_x = 0; + pixel_y = -21 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"nIS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"nKF" = ( +/obj/structure/sign/directions/security{ + icon_state = "direction_sec"; + dir = 8 + }, +/turf/simulated/wall/r_wall, +/area/hallway/primary/central_one) +"nLQ" = ( +/obj/machinery/shipsensors{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/security) +"nXU" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"oda" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1; + icon_state = "map" + }, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"ohV" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"oir" = ( +/obj/machinery/newscaster/security_unit{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"orf" = ( +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/security/airlock) +"osw" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + icon_state = "borderfloorcorner_black"; + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + icon_state = "dangercorner"; + dir = 4 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"ovS" = ( +/obj/machinery/door/airlock/glass_external/freezable{ + req_access = list(48) + }, +/turf/simulated/floor/plating, +/area/borealis2/outdoors/grounds/traderpad) +"oCZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"oNm" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 4 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"oPx" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"oRX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/directions/cargo, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"oUo" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/voidcraft{ + frequency = 1380; + id_tag = "secsh_compartment"; + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"pcP" = ( +/obj/structure/sign/directions/engineering, +/turf/simulated/wall/r_wall, +/area/hallway/primary/central_one) +"pdm" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"pxX" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel, +/area/security/hallway) +"pzi" = ( +/obj/effect/floor_decal/borderfloorblack/corner, +/obj/effect/floor_decal/industrial/danger/corner, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"pFL" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"pNs" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"pNK" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"qfY" = ( +/obj/structure/sign/directions/security, +/turf/simulated/wall/r_wall, +/area/hallway/primary/central_one) +"qoK" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"qww" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"qCv" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"qFq" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/maintenance/medbay) +"qKg" = ( +/obj/structure/closet/crate, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/storage/box/cups, +/turf/simulated/floor/tiled/dark, +/area/security/briefing_room) +"qMO" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4; + icon_state = "shuttle_chair" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"rcQ" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/industrial/danger, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"reb" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "secshuttle_docker_pump_out_external" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"reC" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/secure_closet{ + name = "confiscated goods storage"; + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"rja" = ( +/obj/structure/railing, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"rus" = ( +/obj/machinery/computer/ship/helm, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"rEG" = ( +/obj/structure/catwalk, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 2; + flags = null + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"rHJ" = ( +/obj/machinery/light, +/obj/machinery/power/smes/buildable/point_of_interest, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"rNe" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/steel, +/area/maintenance/medbay) +"sdy" = ( +/obj/structure/table/rack, +/obj/machinery/door/window/brigdoor/northright{ + name = "Director's Voidsuit"; + req_access = list(20) + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/item/clothing/shoes/magboots, +/obj/item/device/suit_cooling_unit, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/captain, +/obj/item/clothing/head/helmet/space/void/captain, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"shS" = ( +/turf/simulated/floor/tiled/dark, +/area/security/briefing_room) +"sjR" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"sCJ" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/security/hangar) +"sRf" = ( +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/structure/closet/crate/secure/phoron{ + name = "spare fuel crate"; + req_one_access = list(51) + }, +/obj/item/weapon/tank/phoron, +/obj/item/weapon/tank/phoron, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"sSn" = ( +/turf/simulated/floor/reinforced, +/area/security/hangar) +"sTn" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"sUR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/steel, +/area/security/briefing_room) +"sVN" = ( +/obj/machinery/light, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"tbF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/directions/engineering, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"tcv" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 4 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Solar Farm Output"; + name_tag = "Solar Farm Output" + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"tdL" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/security/pilotroom) +"tjw" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"tkL" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "secshuttle_vent" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"toS" = ( +/obj/structure/table/standard, +/obj/structure/extinguisher_cabinet{ + pixel_y = -26 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"txg" = ( +/obj/machinery/pointdefense_control{ + id_tag = "secshuttle_pd"; + name = "shuttle laser FCS" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"tSV" = ( /obj/structure/table/rack, /obj/item/clothing/mask/breath, /obj/item/clothing/shoes/magboots, @@ -63551,81 +64319,42 @@ /obj/item/device/gps/security, /turf/simulated/floor/tiled/dark, /area/security/airlock) -"mMy" = ( +"tWH" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/turf/simulated/floor/tiled/techfloor, +/turf/simulated/wall/rshull, /area/shuttle/security) -"nau" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 +"ugG" = ( +/obj/effect/shuttle_landmark/automatic, +/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, +/area/borealis2/outdoors/grounds) +"ujg" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark, -/area/security/airlock) -"nrm" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/machinery/light{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/tiled/dark, /area/security/hangar) -"nvn" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 2; - flags = null - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"nKF" = ( -/obj/structure/sign/directions/security{ - icon_state = "direction_sec"; - dir = 8 - }, -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_one) -"nXc" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "secshuttle_docker_pump_out_external" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"nYU" = ( -/obj/machinery/button/remote/blast_door{ +"umD" = ( +/obj/machinery/light{ dir = 4; - id = "secpilotoffice"; - name = "Office Shutters"; - pixel_x = -26; - pixel_y = -24; - req_access = list(51) + icon_state = "tube1"; + pixel_x = 0 }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"onc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"uuI" = ( /obj/structure/bed/chair/shuttle{ dir = 1 }, @@ -63660,230 +64389,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"oor" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"ovS" = ( -/obj/machinery/door/airlock/glass_external/freezable{ - req_access = list(48) - }, -/turf/simulated/floor/plating, -/area/borealis2/outdoors/grounds/traderpad) -"ozm" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/structure/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"oBI" = ( -/obj/machinery/sleep_console, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"oIF" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/industrial/danger, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"oRX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/sign/directions/cargo, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"oSK" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ - frequency = 1380; - id_tag = "secshuttle_door_int"; - req_one_access = list(1) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"oTe" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Solar Farm Output"; - name_tag = "Solar Farm Output" - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"oYF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"pct" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/structure/catwalk, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"pcP" = ( -/obj/structure/sign/directions/engineering, -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_one) -"pmL" = ( -/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ - dir = 10; - frequency = 1380; - id_tag = "secshuttle_exterior_sensor"; - master_tag = "secshuttle_docker"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/effect/floor_decal/industrial/danger{ - icon_state = "danger"; - dir = 8 - }, -/obj/machinery/door/airlock/voidcraft{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "secshuttle_door_ext"; - locked = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"ptM" = ( -/obj/machinery/newscaster/security_unit{ - pixel_x = -30 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"pxX" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/steel, -/area/security/hallway) -"pLF" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8; - icon_state = "shuttle_chair" - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/structure/closet/walllocker/emerglocker/east, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"pOp" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"pQd" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"pRv" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"qbl" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1380; - id_tag = "secshuttle_vent" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"qfY" = ( -/obj/structure/sign/directions/security, -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_one) -"qgp" = ( +"uvF" = ( /obj/item/device/geiger/wall{ dir = 1; pixel_y = -30 @@ -63897,47 +64403,100 @@ /obj/item/weapon/storage/box/donkpockets, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"qrx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"qzA" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, +"uFp" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/donkpockets, /turf/simulated/floor/tiled/dark, -/area/security/airlock) -"qLu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/area/security/briefing_room) +"uMa" = ( +/obj/machinery/power/pointdefense{ + id_tag = "secshuttle_pd" + }, +/turf/simulated/floor/plating, +/area/shuttle/security) +"uMr" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "secshut_cabinshut"; + layer = 3.1; + name = "Cabin Shutters" }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"rGC" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 +"uOq" = ( +/obj/machinery/atmospherics/unary/engine{ + icon_state = "nozzle"; + dir = 1 }, -/obj/effect/floor_decal/snow/floor/edges, -/obj/structure/cable/heavyduty{ - icon_state = "1-4" +/turf/simulated/floor/reinforced, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/security) +"vhH" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/borealis2/outdoors/grounds) +"vkU" = ( +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"vKn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/woodentable, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"vPR" = ( +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/sleep_console, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"whr" = ( +/obj/machinery/sleep_console, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"woa" = ( +/obj/machinery/computer/shuttle_control/explore/security, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"wpo" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8; + icon_state = "shuttle_chair" + }, +/obj/structure/closet/medical_wall{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/storage/firstaid/regular, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"wtO" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 4 }, /turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"rIE" = ( +/area/borealis2/outdoors/grounds) +"wFq" = ( /obj/machinery/airlock_sensor{ frequency = 1380; id_tag = "secshuttle_sensor"; @@ -63955,431 +64514,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"rJs" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"rJV" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1380; - id_tag = "secshuttle_docker_pump_out_internal" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"rNI" = ( -/obj/structure/catwalk, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"rXe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "secshuttle_docker_pump_out_internal" - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"sdy" = ( -/obj/structure/table/rack, -/obj/machinery/door/window/brigdoor/northright{ - name = "Director's Voidsuit"; - req_access = list(20) - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/item/clothing/shoes/magboots, -/obj/item/device/suit_cooling_unit, -/obj/item/weapon/tank/jetpack/oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/suit/space/void/captain, -/obj/item/clothing/head/helmet/space/void/captain, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"sfk" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/closet/secure_closet{ - name = "confiscated goods storage"; - req_one_access = list(1) - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"siL" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"skE" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, -/area/security/hangar) -"sqK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/vending/coffee, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - frequency = 1475; - icon_state = "intercom"; - listening = 1; - name = "Station Intercom (Security)"; - pixel_x = 0; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"suZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "secshuttle_vent" - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - cycle_to_external_air = 1; - frequency = 1380; - id_tag = "secshuttle_docker"; - pixel_y = 26; - req_one_access = list(1); - tag_airpump = "secshuttle_vent"; - tag_chamber_sensor = "secshuttle_sensor"; - tag_exterior_door = "secshuttle_door_ext"; - tag_exterior_sensor = "secshuttle_exterior_sensor"; - tag_interior_door = "secshuttle_door_int" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"swQ" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 4 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"szY" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"sOu" = ( -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"sRl" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 1 - }, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"sUo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"sWI" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 1; - id = "secshut_cabinshut"; - layer = 3.1; - name = "Cabin Shutters" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"tbF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/sign/directions/engineering, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"tdL" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/security/pilotroom) -"trX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"twA" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"tAi" = ( -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"tGh" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4; - icon_state = "shuttle_chair" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"tOh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"ugG" = ( -/obj/effect/shuttle_landmark/automatic, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"uni" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"uoi" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"uwg" = ( -/obj/effect/floor_decal/borderfloorblack/corner, -/obj/effect/floor_decal/industrial/danger/corner, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"uCh" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"uCY" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8; - icon_state = "shuttle_chair" - }, -/obj/structure/fuel_port{ - dir = 4; - pixel_x = 24; - pixel_y = 0 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"uKP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/steel, -/area/security/briefing_room) -"uST" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4; - icon_state = "shuttle_chair" - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/obj/structure/closet/walllocker/emerglocker/west, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"vcR" = ( -/obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/briefing_room) -"vnL" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"vps" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - icon_state = "borderfloorcorner_black"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger/corner{ - icon_state = "dangercorner"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"vry" = ( -/obj/machinery/suit_cycler/security, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"vIK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 6 - }, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"vZf" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "secpilotoffice"; - layer = 3.1; - name = "Office Shutters" - }, -/obj/structure/table/marble, -/obj/machinery/door/window/brigdoor/westleft{ - req_access = list(51) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"vZE" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"wdA" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"wqI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1; - icon_state = "map" - }, -/obj/structure/handrail, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"wuI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Security Pilot" - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"wwm" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) "wLk" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -64388,82 +64522,87 @@ /obj/structure/window/reinforced/full, /turf/simulated/floor/plating, /area/borealis2/outdoors/grounds/traderpad) -"wVq" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - icon_state = "borderfloorcorner_black"; +"wLB" = ( +/obj/effect/floor_decal/snow/floor/edges{ dir = 1 }, -/obj/effect/floor_decal/industrial/danger/corner{ - icon_state = "dangercorner"; - dir = 8 +/obj/structure/catwalk, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 1 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"wTi" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"xcH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"xtr" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 }, /turf/simulated/floor/tiled/dark, /area/security/hangar) -"xxR" = ( -/obj/machinery/light, -/obj/machinery/computer/ship/engines{ +"xzS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"xGk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"xXI" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"ycX" = ( +/obj/machinery/light/small{ dir = 8 }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"xCT" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ - frequency = 1380; - id_tag = "secsh_cabin"; - req_one_access = list(1) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"xGN" = ( -/obj/machinery/pointdefense_control{ - id_tag = "secshuttle_pd"; - name = "shuttle laser FCS" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"ybG" = ( +/turf/simulated/floor/tiled/steel, +/area/maintenance/medbay) +"yhJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 + dir = 4 }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"ylW" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/machinery/door/window/brigdoor/southright{ - req_one_access = list(1) - }, -/obj/machinery/light{ +/obj/machinery/light/small{ dir = 1 }, -/obj/item/weapon/tank/jetpack/oxygen, -/obj/item/clothing/suit/space/void/security/alt, -/obj/item/clothing/head/helmet/space/void/security/alt, -/obj/item/device/gps/security, /turf/simulated/floor/tiled/steel, -/area/security/pilotroom) +/area/maintenance/medbay) +"yhW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) "ylY" = ( /obj/machinery/door/airlock/glass_engineering{ name = "Engine Gas Storage" @@ -84699,8 +84838,8 @@ bNw aag aag aKZ -pct -eCK +wLB +foN aag aag aag @@ -84947,41 +85086,41 @@ aag aag aag aag -dtV -oTe -fZS -fZS -rNI -hTN -fZS -fZS -fZS -fZS -fZS -fZS -fZS -fZS -fZS -fZS -fZS -fZS -fZS -fZS -fZS -fZS -fZS -fZS -fZS -fZS -fZS -fZS -fZS -fZS -fZS -fZS -fZS -fZS -rGC +gcF +tcv +oNm +oNm +cHV +rEG +oNm +oNm +oNm +oNm +oNm +oNm +oNm +oNm +oNm +oNm +oNm +oNm +oNm +oNm +oNm +oNm +oNm +oNm +oNm +oNm +oNm +oNm +oNm +oNm +oNm +oNm +oNm +oNm +cUZ aag aag aag @@ -85203,8 +85342,8 @@ aag aag aag aag -pct -eCK +wLB +foN aKZ aag aag @@ -85233,7 +85372,7 @@ aag aag aag aag -nvn +gzU aag aag aag @@ -85485,7 +85624,7 @@ aag aag aag aag -nvn +gzU aag aag aag @@ -85737,7 +85876,7 @@ aag aag aag aag -nvn +gzU aag aag aaY @@ -85989,7 +86128,7 @@ aag aag aag aag -nvn +gzU aag aag btM @@ -86241,7 +86380,7 @@ aag aag aag aag -nvn +gzU aag aag btM @@ -86493,7 +86632,7 @@ aag aag aag aag -nvn +gzU aag aag btM @@ -86715,7 +86854,7 @@ abd abd abd abd -lZH +gep abk aag aag @@ -86745,7 +86884,7 @@ aag aag aag aag -nvn +gzU aag bsy btM @@ -86997,7 +87136,7 @@ aag aag aag aag -nvn +gzU aag aag btM @@ -87249,7 +87388,7 @@ aag aag aag aag -nvn +gzU aag aag btM @@ -87501,7 +87640,7 @@ aag aag aag aag -nvn +gzU aag aag btM @@ -87753,7 +87892,7 @@ aag aag aag aag -nvn +gzU aag aag btM @@ -88004,9 +88143,9 @@ aLQ aLQ aLQ aLQ -ozm -eYL -ozm +lyT +fHx +lyT aLQ buV byP @@ -88256,9 +88395,9 @@ aQf aQf aQf aQf -jhL -djl -jhL +cqZ +lGK +cqZ aQf aaj abk @@ -88509,7 +88648,7 @@ aag aag aag aag -nvn +gzU aKZ aag aLR @@ -88721,25 +88860,25 @@ aag aag aag aag -skE -gtU -gtU -gtU -gtU -gtU -gtU -gtU -gtU -gtU -gtU -gtU -gtU -gtU -gtU -gtU -gtU -gtU -skE +sCJ +kGy +kGy +kGy +kGy +kGy +kGy +kGy +kGy +kGy +kGy +kGy +kGy +kGy +kGy +kGy +kGy +kGy +sCJ aag aaN aag @@ -88761,7 +88900,7 @@ aag aag aag aag -nvn +gzU aag aag aLR @@ -88973,25 +89112,25 @@ aag aag aag aag -gtU -uwg -joe -joe -joe -joe -joe -joe -joe -nrm -joe -joe -joe -joe -joe -joe -joe -kjO -gtU +kGy +pzi +hXn +hXn +hXn +hXn +hXn +hXn +hXn +lSt +hXn +hXn +hXn +hXn +hXn +hXn +hXn +osw +kGy aag aag aag @@ -89225,29 +89364,29 @@ aag aag aag aag -gtU -oIF -eYd -eYd -eYd -eYd -eYd -eYd -eYd -epP -dPy -dPy -dPy -dPy -pmL -vIK -ldb -uoi -gtU +kGy +rcQ +sSn +sSn +sSn +sSn +sSn +sSn +sSn +uMa +dNy +dNy +dNy +dNy +kDh +lEy +uOq +nXU +kGy aag aag aag -pRv +mKU aHN bbg bbg @@ -89477,25 +89616,25 @@ aag aag aag aag -gtU -oIF -ljB -dPy -eKW -eKW -dPy -dPy -dPy -dPy -dPy +kGy +rcQ +nLQ +dNy +kEM +kEM +dNy +dNy +dNy +dNy +dNy aZQ -qrx -rIE -qbl -sRl -ldb -uoi -gtU +oCZ +wFq +tkL +yhW +uOq +nXU +kGy aag aag aag @@ -89729,25 +89868,25 @@ aag aag aag aag -gtU -oIF -dPy -dPy -dPM -eZJ -dPy -gHm -ifJ -uST -tGh -gHm -trX -mlc -szY -sRl -ldb -uoi -gtU +kGy +rcQ +dNy +dNy +kRt +rHJ +dNy +cNE +maO +iOx +qMO +cNE +mbv +qoK +hVK +yhW +uOq +nXU +kGy aag aag aag @@ -89981,25 +90120,25 @@ aag aag aag aag -gtU -oIF -sWI -jrx -onc -elA -lpV -iQE -mMy -mMy -pOp -oBI -dPy -suZ -iux -gzS -fDP -uoi -gtU +kGy +rcQ +duz +rus +uuI +toS +tWH +vPR +xXI +xXI +pdm +whr +dNy +gvH +jOD +hQa +mtg +nXU +kGy aag aag aag @@ -90233,25 +90372,25 @@ aag aag aag aag -gtU -oIF -sWI -mbt -twA -vZE -xCT -cRV -cRV -cRV -qLu -cRV -oSK -rJV -sUo -fQd -nXc -uoi -gtU +kGy +rcQ +duz +woa +sTn +fTN +jbi +iVh +iVh +iVh +hrD +iVh +dzT +gxs +dQc +cRW +reb +nXU +kGy aag aag aag @@ -90259,16 +90398,16 @@ aHa aaj aaj aab -swQ -swQ -swQ -swQ -swQ -swQ -swQ -swQ -swQ -swQ +wtO +wtO +wtO +wtO +wtO +wtO +wtO +wtO +wtO +wtO byJ aHR aSm @@ -90485,25 +90624,25 @@ aag aag aag aag -gtU -oIF -dPy -dPy -xGN -xxR -dPy -hxh -ihI -pLF -uCY -sfk -dPy -wqI -kQg -sRl -ldb -uoi -gtU +kGy +rcQ +dNy +dNy +txg +iXJ +dNy +dNW +wpo +lSD +gXy +reC +dNy +oda +jAh +yhW +uOq +nXU +kGy aag aaN aag @@ -90521,7 +90660,7 @@ aTO aTO aTO aTO -iIs +qww aaj aSm aag @@ -90737,25 +90876,25 @@ aag aag aag aag -gtU -oIF -epP -dPy -gpN -gpN -dPy -eze -dPy -dPy -siL +kGy +rcQ +uMa +dNy +uMr +uMr +dNy +oUo +dNy +dNy +dhg bbc bhm -rXe +gMc azE -gfk -ldb -uoi -gtU +sjR +uOq +nXU +kGy aag aag aag @@ -90773,7 +90912,7 @@ aUp aUp aUp aTO -iIs +qww aaj aSm aag @@ -90986,28 +91125,28 @@ akb akb akb akb -aag -aag -aag -gtU -oIF -eYd -eYd -eYd -eYd -eYd -eYd -eYd -epP -siL -dPy -dPy -dPy +akc +akc +akb +kGy +rcQ +sSn +sSn +sSn +sSn +sSn +sSn +sSn +uMa +dhg +dNy +dNy +dNy aHU blI -ldb -uoi -gtU +uOq +nXU +kGy aIK aIK aIK @@ -91025,7 +91164,7 @@ aUp aUp aUp aTO -iIs +qww aKs aSm aag @@ -91238,28 +91377,28 @@ akA akA akA akb -aag -aag -aag -gtU -vps -fhd -fhd -fhd -fhd -fhd -fhd -fhd -fhd -uni -fhd -fhd -fhd -fhd -fhd -fhd -wVq -gtU +gOr +gOr +ycX +fZI +jBm +oPx +oPx +oPx +oPx +oPx +oPx +oPx +oPx +lEE +oPx +oPx +oPx +oPx +oPx +oPx +kBi +kGy bhp aQh aNz @@ -91277,7 +91416,7 @@ aUp aVD aUp aTO -iIs +qww aaj aSm aag @@ -91490,28 +91629,28 @@ akA akA akA akb -aag -aag -aag -gtU -jKQ -tOh -tOh -tOh -tOh -tOh -tOh -tOh -tOh -uCh -tOh -tOh -tOh -tOh -tOh -tOh -cwy -gtU +gOr +qCv +ohV +iNC +umD +dEv +dEv +dEv +dEv +dEv +dEv +dEv +dEv +ujg +dEv +dEv +dEv +dEv +dEv +dEv +xtr +kGy aNA aRy aIK @@ -91529,7 +91668,7 @@ aUp aUp aUp aTO -iIs +qww aaj aSm aag @@ -91742,28 +91881,28 @@ akA akA akA akb -aag -aag -aag -kTI +qFq +pNs +akA +vhH aHf -gtU -gtU -gtU -tAi +kGy +kGy +kGy +vkU hRF -tAi -tAi -tAi -wwm -tAi +vkU +vkU +vkU +mAp +vkU aOh aOh aOh -hUL -rJs -kiL -gtU +cNG +xzS +pFL +kGy aNy aNy aHT @@ -91781,7 +91920,7 @@ aUp aHV aUp aTO -iIs +qww aHR aSm aag @@ -91994,8 +92133,8 @@ akb akb akb akb -akc -akc +fyz +akb akb akb akb @@ -92004,9 +92143,9 @@ aGl aHf aJL aJL -iDV -vZf -iDV +hnc +gEC +hnc tdL aKt aHT @@ -92033,7 +92172,7 @@ aUp aVD aUp aTO -iIs +qww aaj aSm aag @@ -92245,31 +92384,31 @@ awy awy ayg awy -awy -awy -avx +npC +rNe +hyq aCF aDx akb aFs aGm aHf -jLf -ptM -jGk -kpD -nYU -oor -wdA +pNK +oir +gJA +lkA +kHc +wTi +tjw aHT auQ -qzA +kcU aXN biT auQ aHT aQi -fLi +qKg aHT aRz aXS @@ -92285,7 +92424,7 @@ aUp aHV aUp aTO -iIs +qww aaj aSm aag @@ -92497,22 +92636,22 @@ akA akA akA akA -akA -akA -aou +rja +gOr +lqR akb aDy akb akA aGn aHf -jGk -jGk -jGk -jGk -jGk -lyx -lKE +gJA +gJA +gJA +gJA +gJA +kyZ +fuJ aHT aOw aSn @@ -92520,8 +92659,8 @@ aXO aOk aWV aHT -vcR -lLf +hsi +jeI aHT aXM bpC @@ -92537,7 +92676,7 @@ aUp aVD aUp aTO -iIs +qww aKs aSm aag @@ -92758,22 +92897,22 @@ aDy aFt aGo aHf -vry -jGk -jGk -cuC -jGk -iyN -qgp +kST +gJA +gJA +xcH +gJA +flT +uvF aHT -mIX -nau +tSV +orf aXT aSq aRm aHT -fFs -dSL +shS +uFp aHT aYa bpD @@ -93010,13 +93149,13 @@ akb akb aGp aHf -fFV -jGk -vnL -ybG -jGk -iyN -sqK +gEv +gJA +xGk +nIS +gJA +flT +nwR aKx aHT aIK @@ -93254,7 +93393,7 @@ ayy ayi ayY axi -aAy +hwC akb akb aDB @@ -93262,13 +93401,13 @@ aCG asv azf aNF -ylW -jGk -jGk -wuI -jGk -iyN -sOu +gpm +gJA +gJA +drD +gJA +flT +sVN aKx aEM aJJ @@ -93506,7 +93645,7 @@ axk ayj ayZ axi -aAy +hwC aBI aBI awI @@ -93515,16 +93654,16 @@ aBI aAb aNF aJL -eQB -dxj -oYF -lSe -kuO -pQd +sRf +lcR +jlZ +vKn +keZ +gWG bLR aIM -mgS -uKP +dPn +sUR aTC aUI aSs @@ -93758,7 +93897,7 @@ axl ayk aza axi -aAy +yhJ aBI aCH aDD From 2044aed6167740271d6ceba6e874a337944b924c Mon Sep 17 00:00:00 2001 From: Killian <49700375+KillianKirilenko@users.noreply.github.com> Date: Mon, 4 May 2020 14:26:29 +0100 Subject: [PATCH 13/23] secint pt3c - cameras and minor fixes --- maps/yw/cryogaia-05-main.dmm | 3778 +++++++++++++++++----------------- maps/yw/cryogaia_shuttles.dm | 2 +- 2 files changed, 1841 insertions(+), 1939 deletions(-) diff --git a/maps/yw/cryogaia-05-main.dmm b/maps/yw/cryogaia-05-main.dmm index 26befc8591..efe9dbd507 100644 --- a/maps/yw/cryogaia-05-main.dmm +++ b/maps/yw/cryogaia-05-main.dmm @@ -4818,12 +4818,6 @@ "akb" = ( /turf/simulated/wall, /area/maintenance/medbay) -"akc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/maintenance/medbay) "akd" = ( /turf/simulated/wall, /area/storage/emergency_storage/emergency5) @@ -5334,6 +5328,9 @@ "akZ" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, /turf/simulated/floor/plating, /area/maintenance/medbay) "ala" = ( @@ -6976,14 +6973,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/docking_lounge) -"aok" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) "aol" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'."; @@ -7443,8 +7432,6 @@ /area/security/outpost) "apb" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/red, /obj/structure/cable{ icon_state = "1-2" }, @@ -7687,8 +7674,6 @@ /area/crew_quarters/heads/cmo) "apu" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/red, /obj/structure/cable{ icon_state = "1-2" }, @@ -14160,7 +14145,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/light/small, /turf/simulated/floor/tiled/steel, /area/maintenance/medbay) "aAz" = ( @@ -14806,6 +14790,10 @@ /obj/effect/floor_decal/industrial/warning{ dir = 1 }, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, /turf/simulated/floor/plating, /area/maintenance/medbay) "aBI" = ( @@ -14896,7 +14884,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/door/airlock/maintenance/medical, +/obj/machinery/door/airlock/maintenance/medical{ + name = "Emergency Medical Access" + }, /turf/simulated/floor/tiled/steel, /area/medical/surgery_hallway) "aBS" = ( @@ -16817,24 +16807,21 @@ /turf/simulated/floor/tiled/steel, /area/hallway/primary/aft) "aFz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, /turf/simulated/floor/tiled, /area/engineering/workshop) "aFA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -16846,6 +16833,10 @@ d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + icon_state = "intact-supply"; + dir = 5 + }, /turf/simulated/floor/tiled{ icon_state = "monotile" }, @@ -19134,6 +19125,7 @@ /turf/simulated/floor/tiled/dark, /area/security/lobby) "aKw" = ( +/obj/structure/grille, /turf/simulated/floor/plating, /area/security/armoury) "aKx" = ( @@ -20642,6 +20634,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/camera/network/security{ + c_tag = "Security Break Room" + }, /turf/simulated/floor/wood, /area/security/breakroom) "aNC" = ( @@ -20933,6 +20928,10 @@ /area/crew_quarters/heads/hos) "aOh" = ( /obj/structure/table/bench/steel, +/obj/machinery/camera/network/security{ + c_tag = "Security Hangar East"; + dir = 8 + }, /turf/simulated/floor/tiled/dark, /area/security/hangar) "aOj" = ( @@ -21622,9 +21621,6 @@ /turf/simulated/floor/plating, /area/security/brig) "aPo" = ( -/obj/machinery/camera/network/security{ - c_tag = "Security Break room" - }, /obj/machinery/washing_machine, /turf/simulated/floor/wood, /area/security/breakroom) @@ -24380,9 +24376,6 @@ }, /obj/item/weapon/storage/box/trackimp, /obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/camera/network/security{ - c_tag = "armoury" - }, /obj/machinery/alarm{ frequency = 1441; pixel_y = 22 @@ -24396,10 +24389,6 @@ /obj/item/clothing/suit/armor/bulletproof/alt, /obj/item/clothing/head/helmet/bulletproof, /obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, /obj/machinery/door/window/brigdoor/eastleft, /obj/structure/window/reinforced{ dir = 1 @@ -24420,9 +24409,6 @@ name = "Riot Armor" }, /obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 1 - }, /obj/structure/window/reinforced{ dir = 8 }, @@ -24470,12 +24456,12 @@ name = "Riot Armor" }, /obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 1 - }, /obj/structure/window/reinforced{ dir = 4 }, +/obj/machinery/camera/network/security{ + c_tag = "Armory North" + }, /turf/simulated/floor/tiled/red, /area/security/armoury) "aUz" = ( @@ -25083,7 +25069,7 @@ dir = 4 }, /obj/machinery/camera/network/security{ - c_tag = "Security Firing Range"; + c_tag = "Warden's Office"; dir = 4 }, /obj/effect/floor_decal/industrial/outline/grey, @@ -25880,9 +25866,6 @@ dir = 4 }, /obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 8 - }, /turf/simulated/floor/tiled/red, /area/security/armoury) "aWX" = ( @@ -26504,9 +26487,6 @@ /obj/structure/window/reinforced{ dir = 1 }, -/obj/structure/window/reinforced{ - dir = 4 - }, /obj/machinery/door/window/brigdoor/westright{ name = "Energy" }, @@ -27554,8 +27534,8 @@ /area/security/tactical) "aZS" = ( /obj/machinery/camera/network/security{ - c_tag = "Security Firing Range"; - dir = 4 + c_tag = "Armory West"; + dir = 2 }, /obj/structure/window/reinforced{ dir = 8; @@ -27568,17 +27548,10 @@ name = "Ballestic Firearms" }, /obj/item/weapon/gun/projectile/automatic/wt550, -/obj/structure/window/reinforced{ - dir = 1 - }, /obj/item/weapon/gun/projectile/automatic/wt550, /turf/simulated/floor/tiled/red, /area/security/armoury) "aZT" = ( -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, /obj/structure/table/rack, /obj/item/ammo_magazine/m45, /obj/item/ammo_magazine/m45, @@ -27602,10 +27575,6 @@ /area/security/armoury) "aZU" = ( /obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, /obj/item/weapon/storage/box/shotgunshells, /obj/item/weapon/storage/box/shotgunshells, /obj/item/weapon/storage/box/shotgunammo, @@ -28406,10 +28375,6 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, /obj/item/weapon/gun/projectile/shotgun/pump{ pixel_x = -3; pixel_y = 3 @@ -28580,9 +28545,6 @@ req_access = list(1) }, /obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 8 - }, /obj/item/ammo_magazine/m9mmt/rubber, /turf/simulated/floor/tiled/red, /area/security/armoury) @@ -29257,9 +29219,6 @@ /obj/item/weapon/storage/box/stunshells, /obj/item/weapon/storage/box/stunshells, /obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 8 - }, /turf/simulated/floor/tiled/red, /area/security/armoury) "bcK" = ( @@ -29294,9 +29253,6 @@ dir = 2 }, /obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 1 - }, /obj/machinery/light/small{ icon_state = "bulb1"; dir = 1 @@ -29934,9 +29890,6 @@ /area/security/security_processing) "bdH" = ( /obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, /obj/structure/window/reinforced, /obj/machinery/door/window/brigdoor/northright{ dir = 8; @@ -30013,10 +29966,6 @@ pixel_y = -2 }, /obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, /turf/simulated/floor/tiled/red, /area/security/security_equiptment_storage) "bdM" = ( @@ -30040,14 +29989,6 @@ pixel_y = -3 }, /obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, /turf/simulated/floor/tiled/red, /area/security/security_equiptment_storage) "bdN" = ( @@ -31599,10 +31540,6 @@ /area/crew_quarters/barrestroom) "bgB" = ( /obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, /obj/machinery/door/window/brigdoor/southleft{ dir = 4 }, @@ -32647,11 +32584,6 @@ /area/security/security_equiptment_storage) "biz" = ( /obj/machinery/hologram/holopad, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, /turf/simulated/floor/tiled{ icon_state = "monotile" }, @@ -33007,6 +32939,9 @@ /obj/effect/floor_decal/corner/red{ dir = 5 }, +/obj/machinery/camera/network/security{ + c_tag = "Briefing Room" + }, /turf/simulated/floor/tiled/steel, /area/security/briefing_room) "bjf" = ( @@ -35160,15 +35095,6 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /turf/simulated/floor/tiled/steel, /area/security/security_cell_hallway) -"bmU" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled{ - icon_state = "monotile" - }, -/area/engineering/workshop) "bmV" = ( /turf/simulated/wall, /area/security/security_lockerroom) @@ -38208,67 +38134,15 @@ dir = 4; name = "Combat Armor" }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 2 - }, /obj/machinery/light{ dir = 8 }, /turf/simulated/floor/tiled/red, /area/security/security_equiptment_storage) "bsC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/workshop) -"bsD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /turf/simulated/floor/tiled/techfloor, /area/engineering/workshop) "bsE" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_engineering{ name = "Engineering Workshop"; @@ -38287,20 +38161,6 @@ /turf/simulated/floor/tiled/dark, /area/security/interrogation) "bsG" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -38316,35 +38176,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled{ - icon_state = "monotile" - }, -/area/engineering/workshop) -"bsI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, /turf/simulated/floor/tiled{ icon_state = "monotile" }, @@ -48696,7 +48527,6 @@ /area/hallway/primary/aft) "bJX" = ( /obj/structure/table/rack, -/obj/structure/window/reinforced, /obj/machinery/door/window/brigdoor/eastright{ dir = 1; name = "Energy Firearms" @@ -49369,6 +49199,10 @@ dir = 1; pixel_y = -25 }, +/obj/machinery/camera/network/security{ + c_tag = "Equipment Storage"; + dir = 1 + }, /turf/simulated/floor/tiled/dark, /area/security/security_equiptment_storage) "bLi" = ( @@ -62506,6 +62340,24 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) +"ckz" = ( +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "secshuttle_sensor"; + master_tag = "expshuttle_docker"; + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "secshuttle_vent" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) "ckA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -62835,28 +62687,26 @@ }, /turf/simulated/floor/tiled/red, /area/security/outpost) -"cqZ" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 +"cpE" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight, +/obj/item/device/radio, +/turf/simulated/floor/tiled/dark, +/area/security/briefing_room) +"cGh" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "secshuttle_vent" }, -/obj/structure/catwalk, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"cHV" = ( -/obj/structure/catwalk, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/railing{ - icon_state = "railing0"; +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"cKf" = ( +/obj/machinery/light{ dir = 1 }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) "cLv" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -62867,165 +62717,7 @@ /obj/machinery/suit_cycler/medical, /turf/simulated/floor/tiled, /area/cryogaia/station/explorer_prep) -"cNE" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"cNG" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"cRW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"cUZ" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges, -/obj/structure/cable/heavyduty{ - icon_state = "1-4" - }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"dhg" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"drD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Security Pilot" - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"duz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 1; - id = "secshut_cabinshut"; - layer = 3.1; - name = "Cabin Shutters" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"dzT" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ - frequency = 1380; - id_tag = "secshuttle_door_int"; - req_one_access = list(1) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"dDd" = ( -/obj/structure/sign/directions/science, -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_one) -"dEv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"dNy" = ( -/turf/simulated/wall/rshull, -/area/shuttle/security) -"dNW" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"dPn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel, -/area/security/briefing_room) -"dQc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"eti" = ( -/obj/structure/sign/directions/bridge{ - icon_state = "direction_bridge"; - dir = 4 - }, -/turf/simulated/wall, -/area/maintenance/substation/civilian) -"ety" = ( -/obj/machinery/door/window/brigdoor/northright{ - name = "SAR Voidsuits"; - req_access = newlist(); - req_one_access = list(68) - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_prep) -"eQA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/sign/directions/science, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"flT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"foN" = ( -/obj/effect/floor_decal/snow/floor/edges, -/obj/structure/catwalk, -/obj/structure/railing{ - dir = 2; - flags = null - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"fuJ" = ( +"cRc" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -63035,88 +62727,21 @@ /obj/machinery/microwave, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"fyz" = ( -/obj/machinery/door/airlock/maintenance/sec{ - name = "Emergency Medical Access"; - req_one_access = list(1,52) - }, -/turf/simulated/floor/tiled/steel, -/area/maintenance/medbay) -"fHx" = ( -/obj/structure/catwalk, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"fIL" = ( -/obj/structure/sign/directions/science, -/turf/simulated/wall, -/area/storage/primary) -"fTN" = ( +"diF" = ( /obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"fZI" = ( -/obj/machinery/door/airlock/maintenance/sec{ - name = "Emergency Medical Access"; - req_one_access = list(1,52) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel, -/area/security/hangar) -"gcF" = ( -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 + d1 = 1; + d2 = 4; + icon_state = "1-4" }, /obj/structure/railing{ dir = 1 }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"gep" = ( -/obj/effect/floor_decal/snow/floor/edges3{ - icon_state = "gravsnow_edges"; +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"gpm" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/machinery/door/window/brigdoor/southright{ - req_one_access = list(1) - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/weapon/tank/jetpack/oxygen, -/obj/item/clothing/suit/space/void/security/alt, -/obj/item/clothing/head/helmet/space/void/security/alt, -/obj/item/device/gps/security, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"gvH" = ( +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"diO" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8; frequency = 1380; @@ -63136,191 +62761,324 @@ }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"gxs" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1380; - id_tag = "secshuttle_docker_pump_out_internal" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"gzU" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 2; - flags = null - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"gEv" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/southleft{ - req_one_access = list(1) - }, -/obj/item/weapon/tank/jetpack/oxygen, -/obj/item/clothing/suit/space/void/security/alt, -/obj/item/clothing/head/helmet/space/void/security/alt, -/obj/item/device/gps/security, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"gEC" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "secpilotoffice"; - layer = 3.1; - name = "Office Shutters" - }, -/obj/structure/table/marble, -/obj/machinery/door/window/brigdoor/westleft{ - req_access = list(51) - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"gJA" = ( -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"gMc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "secshuttle_docker_pump_out_internal" - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"gOn" = ( -/obj/structure/table/standard, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/glass, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"gOr" = ( -/turf/simulated/floor/tiled/steel, -/area/maintenance/medbay) -"gQF" = ( -/obj/machinery/suit_cycler/captain, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"gWG" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"djI" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"gXy" = ( +"dnx" = ( +/obj/effect/floor_decal/snow/floor/edges, +/obj/structure/catwalk, +/obj/structure/railing{ + dir = 2; + flags = null + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"dnB" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/industrial/danger, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"dpq" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"dqa" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/security/hangar) +"dss" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"dBj" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/steel, +/area/security/briefing_room) +"dDd" = ( +/obj/structure/sign/directions/science, +/turf/simulated/wall/r_wall, +/area/hallway/primary/central_one) +"dVe" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/obj/effect/floor_decal/snow/floor/edges, +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"ecm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"esC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"esO" = ( /obj/structure/bed/chair/shuttle{ - dir = 8; - icon_state = "shuttle_chair" + dir = 1 }, -/obj/structure/fuel_port{ +/obj/machinery/button/remote/airlock{ + desiredstate = 1; + id = "secsh_compartment"; + name = "Compartment Access"; + pixel_x = 6; + pixel_y = -24; + req_one_access = list(51,67); + specialfunctions = 4 + }, +/obj/machinery/button/remote/airlock{ + desiredstate = 1; + id = "secsh_cabin"; + name = "Cabin Lockdown"; + pixel_x = -6; + pixel_y = -24; + req_one_access = list(51,67); + specialfunctions = 4 + }, +/obj/machinery/button/remote/blast_door{ dir = 4; - pixel_x = 24; - pixel_y = 0 + id = "secshut_cabinshut"; + name = "Cabin Blast Shutters"; + pixel_x = 0; + pixel_y = -36; + req_access = list(51,67) }, /obj/structure/cable/green{ - d1 = 4; + d1 = 2; d2 = 8; - icon_state = "4-8" + icon_state = "2-8" }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"hnc" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "secpilotoffice"; - layer = 3.1; - name = "Office Shutters" +"eti" = ( +/obj/structure/sign/directions/bridge{ + icon_state = "direction_bridge"; + dir = 4 }, -/obj/structure/table/marble, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.7 +/turf/simulated/wall, +/area/maintenance/substation/civilian) +"ety" = ( +/obj/machinery/door/window/brigdoor/northright{ + name = "SAR Voidsuits"; + req_access = newlist(); + req_one_access = list(68) }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"hrD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/turf/simulated/floor/tiled, +/area/cryogaia/station/explorer_prep) +"eJf" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"hsi" = ( +/obj/structure/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"eQA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/directions/science, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"eRz" = ( /obj/machinery/light/small{ icon_state = "bulb1"; dir = 1 }, /turf/simulated/floor/tiled/dark, /area/security/briefing_room) -"hwC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/maintenance/medbay) -"hyq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/railing{ +"eWi" = ( +/obj/effect/floor_decal/snow/floor/edges3{ + icon_state = "gravsnow_edges"; dir = 1 }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"eZR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"fpY" = ( +/obj/structure/table/standard, +/obj/structure/extinguisher_cabinet{ + pixel_y = -26 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"fqd" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"fus" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"fxF" = ( /obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 8 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security Hangar Emergency Route"; dir = 1 }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"hQa" = ( -/obj/machinery/door/airlock/multi_tile/metal{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "secshuttle_door_ext"; - locked = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ +"fBS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"fCs" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/secure_closet{ + name = "confiscated goods storage"; + req_one_access = list(1) + }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) +"fIL" = ( +/obj/structure/sign/directions/science, +/turf/simulated/wall, +/area/storage/primary) +"fKL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/woodentable, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"fLb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"gtF" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"gxe" = ( +/obj/structure/closet/crate, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/storage/box/cups, +/turf/simulated/floor/tiled/dark, +/area/security/briefing_room) +"gxA" = ( +/turf/simulated/floor/reinforced, +/area/security/hangar) +"gOn" = ( +/obj/structure/table/standard, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/glass, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"gQF" = ( +/obj/machinery/suit_cycler/captain, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"hoo" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "secshuttle_docker_pump_out_external" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"hwb" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/industrial/danger, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security Hangar North" + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"hNJ" = ( +/obj/machinery/power/pointdefense{ + id_tag = "secshuttle_pd" + }, +/turf/simulated/floor/plating, +/area/shuttle/security) "hRF" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller{ frequency = 1380; @@ -63335,184 +63093,43 @@ }, /turf/simulated/floor/tiled/dark, /area/security/hangar) -"hVK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/structure/handrail{ +"hSF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ dir = 1 }, -/turf/simulated/floor/tiled/techfloor, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 + }, +/turf/simulated/wall/rshull, /area/shuttle/security) -"hXn" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"iGb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/cryogaia/station/explorer_prep) -"iNC" = ( -/obj/structure/sign/redcross{ - desc = "The Star of Life, a symbol of Medical Aid."; - icon_state = "lifestar"; - name = "Medbay" - }, -/turf/simulated/wall/r_wall, -/area/security/hangar) -"iOx" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4; - icon_state = "shuttle_chair" - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/obj/structure/closet/walllocker/emerglocker/west, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"iVh" = ( -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"iXJ" = ( -/obj/machinery/light, -/obj/machinery/computer/ship/engines{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"jbi" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ - frequency = 1380; - id_tag = "secsh_cabin"; - req_one_access = list(1) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"jeI" = ( -/obj/structure/table/standard, -/obj/item/device/flashlight, -/obj/item/device/radio, -/turf/simulated/floor/tiled/dark, -/area/security/briefing_room) -"jlZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"jAh" = ( -/obj/structure/handrail{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"jBm" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - icon_state = "borderfloorcorner_black"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger/corner{ - icon_state = "dangercorner"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"jOD" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "secshuttle_vent" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"kcU" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, +"hUk" = ( /obj/structure/cable/green{ - icon_state = "0-2" + d1 = 1; + d2 = 4; + icon_state = "1-4" }, -/turf/simulated/floor/tiled/dark, -/area/security/airlock) -"keZ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"idd" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "secpilotoffice"; + layer = 3.1; + name = "Office Shutters" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - icon_state = "map-scrubbers"; - dir = 4 +/obj/structure/table/marble, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.7 }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"kyZ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"kBi" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - icon_state = "borderfloorcorner_black"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger/corner{ - icon_state = "dangercorner"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"kDh" = ( +"inU" = ( /obj/machinery/airlock_sensor/airlock_exterior/shuttle{ dir = 10; frequency = 1380; @@ -63533,26 +63150,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"kEM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "secshut_cabinshut"; - layer = 3.1; - name = "Cabin Shutters" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"kGy" = ( -/turf/simulated/wall/r_wall, -/area/security/hangar) -"kHc" = ( +"ixx" = ( /obj/machinery/button/remote/blast_door{ dir = 4; id = "secpilotoffice"; @@ -63563,16 +63161,175 @@ }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"kOa" = ( -/obj/structure/table/rack/shelf, -/obj/item/clothing/shoes/magboots, -/obj/item/device/suit_cooling_unit, -/obj/item/weapon/tank/oxygen, -/obj/item/clothing/suit/space/void/medical, -/obj/item/clothing/head/helmet/space/void/medical, -/turf/simulated/floor/tiled, +"izJ" = ( +/obj/machinery/atmospherics/unary/engine{ + icon_state = "nozzle"; + dir = 1 + }, +/turf/simulated/floor/reinforced, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/security) +"iDg" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"iGb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, /area/cryogaia/station/explorer_prep) -"kRt" = ( +"iGf" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "secshuttle_door_ext"; + locked = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"iGS" = ( +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"iId" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4; + icon_state = "shuttle_chair" + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"iVr" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"iXV" = ( +/obj/machinery/shipsensors{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/security) +"jci" = ( +/turf/simulated/floor/tiled/dark, +/area/security/briefing_room) +"jdv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/table/woodentable, +/obj/machinery/camera/network/security{ + c_tag = "Pilot's Office"; + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"jrj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1; + icon_state = "map" + }, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"jvd" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4; + icon_state = "shuttle_chair" + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/structure/closet/walllocker/emerglocker/west, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"jvP" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor/southleft{ + req_one_access = list(1) + }, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/suit/space/void/security/alt, +/obj/item/clothing/head/helmet/space/void/security/alt, +/obj/item/device/gps/security, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"jFo" = ( +/obj/structure/catwalk, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 2; + flags = null + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"jHI" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"jLo" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"jMm" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"jOC" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"jSb" = ( /obj/machinery/computer/ship/sensors{ dir = 4 }, @@ -63583,47 +63340,108 @@ }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"kST" = ( -/obj/machinery/suit_cycler/security, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"lcR" = ( -/obj/machinery/computer/secure_data{ - dir = 8 +"kfm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"lkA" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"kqg" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8; + icon_state = "shuttle_chair" }, -/obj/effect/landmark/start{ - name = "Security Pilot" +/obj/structure/fuel_port{ + dir = 4; + pixel_x = 24; + pixel_y = 0 }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"lqR" = ( -/obj/structure/cable{ +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; icon_state = "4-8" }, -/obj/structure/railing{ +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"kCh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"kEZ" = ( +/obj/effect/floor_decal/borderfloorblack{ dir = 1 }, -/obj/effect/floor_decal/industrial/warning{ +/obj/effect/floor_decal/industrial/danger{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security Hangar South"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"kNl" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"lyT" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 +"kOa" = ( +/obj/structure/table/rack/shelf, +/obj/item/clothing/shoes/magboots, +/obj/item/device/suit_cooling_unit, +/obj/item/weapon/tank/oxygen, +/obj/item/clothing/suit/space/void/medical, +/obj/item/clothing/head/helmet/space/void/medical, +/turf/simulated/floor/tiled, +/area/cryogaia/station/explorer_prep) +"kUK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "secshuttle_docker_pump_out_internal" }, -/obj/structure/catwalk, -/obj/structure/railing{ - dir = 8 +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"kYd" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8; + icon_state = "shuttle_chair" + }, +/obj/structure/closet/medical_wall{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/storage/firstaid/regular, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"leq" = ( +/obj/effect/floor_decal/borderfloorblack/corner, +/obj/effect/floor_decal/industrial/danger/corner, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) "lAq" = ( /obj/structure/cable{ d1 = 4; @@ -63636,83 +63454,62 @@ }, /turf/simulated/floor/plating, /area/maintenance/bridge) -"lEy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 6 +"lEf" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"lMt" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4; + icon_state = "shuttle_chair" }, -/turf/simulated/wall/rshull, +/turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"lEE" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 +"lTW" = ( +/obj/machinery/computer/ship/helm, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"lXa" = ( +/turf/simulated/floor/tiled/steel, +/area/maintenance/medbay) +"lXU" = ( +/obj/item/device/geiger/wall{ + dir = 1; + pixel_y = -30 }, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/donkpockets, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"mbr" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/donkpockets, /turf/simulated/floor/tiled/dark, -/area/security/hangar) -"lGK" = ( -/obj/structure/catwalk, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"lSt" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"lSD" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8; - icon_state = "shuttle_chair" - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/structure/closet/walllocker/emerglocker/east, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"maO" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4; - icon_state = "shuttle_chair" - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - icon_state = "extinguisher_closed"; - pixel_x = -30 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"mbv" = ( +/area/security/briefing_room) +"mcj" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; + dir = 5; icon_state = "intact" }, /turf/simulated/wall/rshull, /area/shuttle/security) +"mgR" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay) "mjD" = ( /obj/machinery/photocopier, /turf/simulated/floor/tiled/dark, @@ -63724,18 +63521,16 @@ /obj/effect/floor_decal/snow/floor/edges, /turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, /area/borealis2/outdoors/grounds) -"mtg" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 +"mpu" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1380; + id_tag = "secshuttle_door_int"; + req_one_access = list(1) }, +/obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"mAp" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, +"mpH" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -63747,8 +63542,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) "mBp" = ( /obj/structure/table/marble, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -63767,146 +63562,18 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"mKU" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"npC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"nwR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; +"mOq" = ( +/obj/structure/catwalk, +/obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/obj/machinery/vending/coffee, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - frequency = 1475; - icon_state = "intercom"; - listening = 1; - name = "Station Intercom (Security)"; - pixel_x = 0; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"nIS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/railing{ + icon_state = "railing0"; dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"nKF" = ( -/obj/structure/sign/directions/security{ - icon_state = "direction_sec"; - dir = 8 - }, -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_one) -"nLQ" = ( -/obj/machinery/shipsensors{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/shuttle/security) -"nXU" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"oda" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1; - icon_state = "map" - }, -/obj/structure/handrail, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"ohV" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"oir" = ( -/obj/machinery/newscaster/security_unit{ - pixel_x = -30 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"orf" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/security/airlock) -"osw" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - icon_state = "borderfloorcorner_black"; - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger/corner{ - icon_state = "dangercorner"; - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"ovS" = ( -/obj/machinery/door/airlock/glass_external/freezable{ - req_access = list(48) - }, -/turf/simulated/floor/plating, -/area/borealis2/outdoors/grounds/traderpad) -"oCZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"oNm" = ( +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"mSo" = ( /obj/effect/floor_decal/snow/floor/edges{ dir = 4 }, @@ -63925,23 +63592,100 @@ }, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds/power) -"oPx" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"oRX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/sign/directions/cargo, +"mYk" = ( +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"nfW" = ( +/turf/simulated/wall/rshull, +/area/shuttle/security) +"nxj" = ( +/obj/random/trash_pile, /turf/simulated/floor/plating, +/area/maintenance/medbay) +"nzw" = ( +/obj/structure/railing, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"nKF" = ( +/obj/structure/sign/directions/security{ + icon_state = "direction_sec"; + dir = 8 + }, +/turf/simulated/wall/r_wall, /area/hallway/primary/central_one) -"oUo" = ( +"nNv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"nXz" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"nYk" = ( +/obj/machinery/newscaster/security_unit{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"ocK" = ( +/obj/machinery/computer/shuttle_control/explore/security, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"ogI" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"okK" = ( +/obj/machinery/light, +/obj/machinery/power/smes/buildable/point_of_interest, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"otz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"ovS" = ( +/obj/machinery/door/airlock/glass_external/freezable{ + req_access = list(48) + }, +/turf/simulated/floor/plating, +/area/borealis2/outdoors/grounds/traderpad) +"oCF" = ( /obj/effect/floor_decal/industrial/danger{ dir = 4 }, @@ -63953,15 +63697,86 @@ }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) +"oRX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/directions/cargo, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"oSg" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "secshuttle_docker_pump_out_internal" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"oVm" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Security Pilot" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) "pcP" = ( /obj/structure/sign/directions/engineering, /turf/simulated/wall/r_wall, /area/hallway/primary/central_one) -"pdm" = ( +"pdr" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 1 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"pdw" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"pgg" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/tiled{ + icon_state = "monotile" + }, +/area/engineering/workshop) +"psb" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"psl" = ( +/obj/machinery/pointdefense_control{ + id_tag = "secshuttle_pd"; + name = "shuttle laser FCS" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"psR" = ( +/obj/machinery/light, +/obj/machinery/computer/ship/engines{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable{ + icon_state = "0-8" }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) @@ -63991,41 +63806,47 @@ }, /turf/simulated/floor/tiled/steel, /area/security/hallway) -"pzi" = ( -/obj/effect/floor_decal/borderfloorblack/corner, -/obj/effect/floor_decal/industrial/danger/corner, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ +"pAK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; dir = 4 }, -/turf/simulated/floor/tiled/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Security Pilot" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"pDu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"pJz" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/borealis2/outdoors/grounds) +"pYH" = ( +/turf/simulated/wall/r_wall, /area/security/hangar) -"pFL" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 +"qeu" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "secpilotoffice"; + layer = 3.1; + name = "Office Shutters" }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"pNs" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"pNK" = ( -/obj/machinery/light{ - dir = 1 +/obj/structure/table/marble, +/obj/machinery/door/window/brigdoor/westleft{ + req_access = list(51) }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) @@ -64033,88 +63854,51 @@ /obj/structure/sign/directions/security, /turf/simulated/wall/r_wall, /area/hallway/primary/central_one) -"qoK" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/structure/handrail, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"qww" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"qCv" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"qFq" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/maintenance/medbay) -"qKg" = ( -/obj/structure/closet/crate, -/obj/item/weapon/book/manual/security_space_law, -/obj/item/weapon/storage/box/cups, -/turf/simulated/floor/tiled/dark, -/area/security/briefing_room) -"qMO" = ( +"qlk" = ( /obj/structure/bed/chair/shuttle{ - dir = 4; + dir = 8; icon_state = "shuttle_chair" }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/structure/closet/walllocker/emerglocker/east, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"rcQ" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/industrial/danger, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"qAM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ dir = 4 }, -/turf/simulated/floor/tiled/dark, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "secshut_cabinshut"; + layer = 3.1; + name = "Cabin Shutters" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"qTM" = ( +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar"; + name = "Medbay" + }, +/turf/simulated/wall/r_wall, /area/security/hangar) -"reb" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "secshuttle_docker_pump_out_external" +"raV" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 1 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"reC" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/closet/secure_closet{ - name = "confiscated goods storage"; - req_one_access = list(1) - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"rja" = ( -/obj/structure/railing, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"rus" = ( -/obj/machinery/computer/ship/helm, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"rEG" = ( -/obj/structure/catwalk, +/obj/effect/floor_decal/snow/floor/edges, /obj/structure/cable/heavyduty{ - icon_state = "1-2" + icon_state = "4-8" + }, +/obj/structure/railing{ + dir = 1 }, /obj/structure/railing{ dir = 2; @@ -64122,22 +63906,57 @@ }, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds/power) -"rHJ" = ( -/obj/machinery/light, -/obj/machinery/power/smes/buildable/point_of_interest, -/obj/structure/cable/green{ - icon_state = "0-2" - }, +"reM" = ( +/obj/machinery/suit_cycler/security, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"reY" = ( /obj/machinery/alarm{ - dir = 1; - pixel_y = -25 + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 }, -/obj/structure/cable{ - icon_state = "0-4" +/obj/machinery/camera/network/security{ + c_tag = "Security Voidsuits"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/airlock) +"rgH" = ( +/obj/machinery/light, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"rqj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"rNe" = ( +"rCG" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"rMU" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"rQm" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -64146,6 +63965,43 @@ }, /turf/simulated/floor/tiled/steel, /area/maintenance/medbay) +"rWx" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 1 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 4 + }, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"sbI" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) "sdy" = ( /obj/structure/table/rack, /obj/machinery/door/window/brigdoor/northright{ @@ -64168,70 +64024,217 @@ /obj/item/clothing/head/helmet/space/void/captain, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"shS" = ( +"suL" = ( /turf/simulated/floor/tiled/dark, -/area/security/briefing_room) -"sjR" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"sCJ" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, /area/security/hangar) -"sRf" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/structure/closet/crate/secure/phoron{ - name = "spare fuel crate"; - req_one_access = list(51) - }, -/obj/item/weapon/tank/phoron, -/obj/item/weapon/tank/phoron, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"sSn" = ( -/turf/simulated/floor/reinforced, -/area/security/hangar) -"sTn" = ( -/obj/structure/bed/chair/shuttle{ +"sCb" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + icon_state = "borderfloorcorner_black"; dir = 1 }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"sUR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/effect/floor_decal/industrial/danger/corner{ + icon_state = "dangercorner"; + dir = 8 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/steel, -/area/security/briefing_room) -"sVN" = ( -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"sEC" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) "tbF" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/sign/directions/engineering, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"tcv" = ( +"tcH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel, +/area/security/briefing_room) +"tdL" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/security/pilotroom) +"tey" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/maintenance/medbay) +"tfz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 1; + id = "secshut_cabinshut"; + layer = 3.1; + name = "Cabin Shutters" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"tgg" = ( +/obj/machinery/sleep_console, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"tor" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"tBv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"tVV" = ( +/obj/structure/catwalk, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"tXW" = ( +/obj/structure/catwalk, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 1 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"ucU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"ugG" = ( +/obj/effect/shuttle_landmark/automatic, +/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, +/area/borealis2/outdoors/grounds) +"uhU" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/obj/machinery/door/window/brigdoor/southright{ + req_one_access = list(1) + }, +/obj/item/device/gps/security, +/turf/simulated/floor/tiled/dark, +/area/security/airlock) +"unZ" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/security/airlock) +"uyz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/vending/coffee, +/obj/item/device/radio/intercom{ + broadcasting = 0; + dir = 2; + frequency = 1475; + icon_state = "intercom"; + listening = 1; + name = "Station Intercom (Security)"; + pixel_x = 0; + pixel_y = -21 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"uyG" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"uJW" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"uUw" = ( +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/sleep_console, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"uXH" = ( /obj/effect/floor_decal/snow/floor/edges{ dir = 4 }, @@ -64254,7 +64257,104 @@ }, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds/power) -"tdL" = ( +"uZO" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1380; + id_tag = "secsh_cabin"; + req_one_access = list(51,67) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"vmP" = ( +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"vsa" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"vCc" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "secshuttle_vent" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"vIP" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/machinery/door/window/brigdoor/southright{ + req_one_access = list(1) + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/suit/space/void/security/alt, +/obj/item/clothing/head/helmet/space/void/security/alt, +/obj/item/device/gps/security, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"vWG" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"vYG" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"wqT" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"wuI" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -64266,254 +64366,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/wall/r_wall, -/area/security/pilotroom) -"tjw" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"tkL" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1380; - id_tag = "secshuttle_vent" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"toS" = ( -/obj/structure/table/standard, -/obj/structure/extinguisher_cabinet{ - pixel_y = -26 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"txg" = ( -/obj/machinery/pointdefense_control{ - id_tag = "secshuttle_pd"; - name = "shuttle laser FCS" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"tSV" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/item/weapon/tank/jetpack/oxygen, -/obj/item/clothing/suit/space/void/security, -/obj/item/clothing/head/helmet/space/void/security, -/obj/machinery/door/window/brigdoor/southright{ - req_one_access = list(1) - }, -/obj/item/device/gps/security, -/turf/simulated/floor/tiled/dark, -/area/security/airlock) -"tWH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"ugG" = ( -/obj/effect/shuttle_landmark/automatic, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"ujg" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/tiled/dark, /area/security/hangar) -"umD" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"uuI" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/obj/machinery/button/remote/airlock{ - desiredstate = 1; - id = "secsh_compartment"; - name = "Compartment Access"; - pixel_x = 6; - pixel_y = -24; - specialfunctions = 4 - }, -/obj/machinery/button/remote/airlock{ - desiredstate = 1; - id = "secsh_cabin"; - name = "Cabin Lockdown"; - pixel_x = -6; - pixel_y = -24; - specialfunctions = 4 - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "secshut_cabinshut"; - name = "Cabin Blast Shutters"; - pixel_x = 0; - pixel_y = -36; - req_access = list(51) - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"uvF" = ( -/obj/item/device/geiger/wall{ - dir = 1; - pixel_y = -30 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/woodentable, -/obj/item/weapon/storage/box/donkpockets, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"uFp" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/donkpockets, -/turf/simulated/floor/tiled/dark, -/area/security/briefing_room) -"uMa" = ( -/obj/machinery/power/pointdefense{ - id_tag = "secshuttle_pd" - }, -/turf/simulated/floor/plating, -/area/shuttle/security) -"uMr" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "secshut_cabinshut"; - layer = 3.1; - name = "Cabin Shutters" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"uOq" = ( -/obj/machinery/atmospherics/unary/engine{ - icon_state = "nozzle"; - dir = 1 - }, -/turf/simulated/floor/reinforced, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/security) -"vhH" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, -/area/borealis2/outdoors/grounds) -"vkU" = ( -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"vKn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/table/woodentable, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"vPR" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/sleep_console, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"whr" = ( -/obj/machinery/sleep_console, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"woa" = ( -/obj/machinery/computer/shuttle_control/explore/security, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"wpo" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8; - icon_state = "shuttle_chair" - }, -/obj/structure/closet/medical_wall{ - pixel_x = 32; - pixel_y = 0 - }, -/obj/item/weapon/storage/firstaid/o2, -/obj/item/weapon/storage/firstaid/regular, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"wtO" = ( +"wKh" = ( /obj/effect/floor_decal/industrial/warning/dust{ icon_state = "warning_dust"; dir = 4 }, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds) -"wFq" = ( -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "secshuttle_sensor"; - master_tag = "expshuttle_docker"; - pixel_y = 28 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1380; - id_tag = "secshuttle_vent" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) "wLk" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -64522,87 +64383,128 @@ /obj/structure/window/reinforced/full, /turf/simulated/floor/plating, /area/borealis2/outdoors/grounds/traderpad) -"wLB" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/structure/catwalk, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"wTi" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +"wRM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/light/small{ + dir = 1 }, /turf/simulated/floor/tiled/steel, +/area/maintenance/medbay) +"wSH" = ( +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/structure/closet/crate/secure/phoron{ + name = "spare fuel crate"; + req_one_access = list(51) + }, +/obj/item/weapon/tank/phoron, +/obj/item/weapon/tank/phoron, +/turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"xcH" = ( +"xaY" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"xtr" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"xzS" = ( +"xsx" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"xGk" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"xXI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"ycX" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/maintenance/medbay) -"yhJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/maintenance/medbay) -"yhW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 1 - }, /turf/simulated/wall/rshull, /area/shuttle/security) +"xsR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "secshut_cabinshut"; + layer = 3.1; + name = "Cabin Shutters" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"xyb" = ( +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"xzZ" = ( +/obj/machinery/door/airlock/maintenance/sec{ + name = "Emergency Medical Access"; + req_one_access = list(1,52) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/steel, +/area/security/hangar) +"xIz" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"xVY" = ( +/obj/structure/closet/wardrobe/tactical, +/obj/machinery/camera/motion/security{ + c_tag = "Armory Tactical (Motion)" + }, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"xYD" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + icon_state = "borderfloorcorner_black"; + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + icon_state = "dangercorner"; + dir = 4 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"ydq" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + icon_state = "borderfloorcorner_black"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + icon_state = "dangercorner"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) "ylY" = ( /obj/machinery/door/airlock/glass_engineering{ name = "Engine Gas Storage" @@ -84838,8 +84740,8 @@ bNw aag aag aKZ -wLB -foN +pdr +dnx aag aag aag @@ -85086,41 +84988,41 @@ aag aag aag aag -gcF -tcv -oNm -oNm -cHV -rEG -oNm -oNm -oNm -oNm -oNm -oNm -oNm -oNm -oNm -oNm -oNm -oNm -oNm -oNm -oNm -oNm -oNm -oNm -oNm -oNm -oNm -oNm -oNm -oNm -oNm -oNm -oNm -oNm -cUZ +rWx +uXH +mSo +mSo +tXW +jFo +mSo +mSo +mSo +mSo +mSo +mSo +mSo +mSo +mSo +mSo +mSo +mSo +mSo +mSo +mSo +mSo +mSo +mSo +mSo +mSo +mSo +mSo +mSo +mSo +mSo +mSo +mSo +mSo +dVe aag aag aag @@ -85342,8 +85244,8 @@ aag aag aag aag -wLB -foN +pdr +dnx aKZ aag aag @@ -85372,7 +85274,7 @@ aag aag aag aag -gzU +raV aag aag aag @@ -85624,7 +85526,7 @@ aag aag aag aag -gzU +raV aag aag aag @@ -85876,7 +85778,7 @@ aag aag aag aag -gzU +raV aag aag aaY @@ -86128,7 +86030,7 @@ aag aag aag aag -gzU +raV aag aag btM @@ -86380,7 +86282,7 @@ aag aag aag aag -gzU +raV aag aag btM @@ -86632,7 +86534,7 @@ aag aag aag aag -gzU +raV aag aag btM @@ -86854,7 +86756,7 @@ abd abd abd abd -gep +eWi abk aag aag @@ -86884,7 +86786,7 @@ aag aag aag aag -gzU +raV aag bsy btM @@ -87136,7 +87038,7 @@ aag aag aag aag -gzU +raV aag aag btM @@ -87388,7 +87290,7 @@ aag aag aag aag -gzU +raV aag aag btM @@ -87640,7 +87542,7 @@ aag aag aag aag -gzU +raV aag aag btM @@ -87892,7 +87794,7 @@ aag aag aag aag -gzU +raV aag aag btM @@ -88143,9 +88045,9 @@ aLQ aLQ aLQ aLQ -lyT -fHx -lyT +eJf +tVV +eJf aLQ buV byP @@ -88395,9 +88297,9 @@ aQf aQf aQf aQf -cqZ -lGK -cqZ +iDg +mOq +iDg aQf aaj abk @@ -88648,7 +88550,7 @@ aag aag aag aag -gzU +raV aKZ aag aLR @@ -88860,25 +88762,25 @@ aag aag aag aag -sCJ -kGy -kGy -kGy -kGy -kGy -kGy -kGy -kGy -kGy -kGy -kGy -kGy -kGy -kGy -kGy -kGy -kGy -sCJ +dqa +pYH +pYH +pYH +pYH +pYH +pYH +pYH +pYH +pYH +pYH +pYH +pYH +pYH +pYH +pYH +pYH +pYH +dqa aag aaN aag @@ -88900,7 +88802,7 @@ aag aag aag aag -gzU +raV aag aag aLR @@ -89112,25 +89014,25 @@ aag aag aag aag -kGy -pzi -hXn -hXn -hXn -hXn -hXn -hXn -hXn -lSt -hXn -hXn -hXn -hXn -hXn -hXn -hXn -osw -kGy +pYH +leq +uyG +uyG +uyG +uyG +uyG +uyG +uyG +tor +uyG +uyG +uyG +uyG +uyG +uyG +uyG +xYD +pYH aag aag aag @@ -89364,29 +89266,29 @@ aag aag aag aag -kGy -rcQ -sSn -sSn -sSn -sSn -sSn -sSn -sSn -uMa -dNy -dNy -dNy -dNy -kDh -lEy -uOq -nXU -kGy +pYH +dnB +gxA +gxA +gxA +gxA +gxA +gxA +gxA +hNJ +nfW +nfW +nfW +nfW +inU +fus +izJ +wqT +pYH aag aag aag -mKU +vYG aHN bbg bbg @@ -89616,25 +89518,25 @@ aag aag aag aag -kGy -rcQ -nLQ -dNy -kEM -kEM -dNy -dNy -dNy -dNy -dNy +pYH +dnB +iXV +nfW +xsR +xsR +nfW +nfW +nfW +nfW +nfW aZQ -oCZ -wFq -tkL -yhW -uOq -nXU -kGy +mcj +ckz +cGh +fLb +izJ +wqT +pYH aag aag aag @@ -89868,25 +89770,25 @@ aag aag aag aag -kGy -rcQ -dNy -dNy -kRt -rHJ -dNy -cNE -maO -iOx -qMO -cNE -mbv -qoK -hVK -yhW -uOq -nXU -kGy +pYH +dnB +nfW +nfW +jSb +okK +nfW +iVr +iId +jvd +lMt +iVr +pDu +fqd +dss +hSF +izJ +wqT +pYH aag aag aag @@ -90120,25 +90022,25 @@ aag aag aag aag -kGy -rcQ -duz -rus -uuI -toS -tWH -vPR -xXI -xXI -pdm -whr -dNy -gvH -jOD -hQa -mtg -nXU -kGy +pYH +dnB +tfz +lTW +esO +fpY +xsx +uUw +rqj +rqj +hUk +tgg +nfW +diO +vCc +iGf +kCh +wqT +pYH aag aag aag @@ -90372,25 +90274,25 @@ aag aag aag aag -kGy -rcQ -duz -woa -sTn -fTN -jbi -iVh -iVh -iVh -hrD -iVh -dzT -gxs -dQc -cRW -reb -nXU -kGy +pYH +hwb +tfz +ocK +jOC +gtF +uZO +mYk +mYk +mYk +vsa +mYk +mpu +oSg +kfm +tBv +hoo +kEZ +pYH aag aag aag @@ -90398,16 +90300,16 @@ aHa aaj aaj aab -wtO -wtO -wtO -wtO -wtO -wtO -wtO -wtO -wtO -wtO +wKh +wKh +wKh +wKh +wKh +wKh +wKh +wKh +wKh +wKh byJ aHR aSm @@ -90624,25 +90526,25 @@ aag aag aag aag -kGy -rcQ -dNy -dNy -txg -iXJ -dNy -dNW -wpo -lSD -gXy -reC -dNy -oda -jAh -yhW -uOq -nXU -kGy +pYH +dnB +nfW +nfW +psl +psR +nfW +rMU +kYd +qlk +kqg +fCs +nfW +jrj +xyb +hSF +izJ +wqT +pYH aag aaN aag @@ -90660,7 +90562,7 @@ aTO aTO aTO aTO -qww +ogI aaj aSm aag @@ -90876,25 +90778,25 @@ aag aag aag aag -kGy -rcQ -uMa -dNy -uMr -uMr -dNy -oUo -dNy -dNy -dhg +pYH +dnB +hNJ +nfW +qAM +qAM +nfW +oCF +nfW +nfW +psb bbc bhm -gMc +kUK azE -sjR -uOq -nXU -kGy +jMm +izJ +wqT +pYH aag aag aag @@ -90912,7 +90814,7 @@ aUp aUp aUp aTO -qww +ogI aaj aSm aag @@ -91125,28 +91027,28 @@ akb akb akb akb -akc -akc -akb -kGy -rcQ -sSn -sSn -sSn -sSn -sSn -sSn -sSn -uMa -dhg -dNy -dNy -dNy +kNl +kNl +kNl +pYH +dnB +gxA +gxA +gxA +gxA +gxA +gxA +gxA +hNJ +psb +nfW +nfW +nfW aHU blI -uOq -nXU -kGy +izJ +wqT +pYH aIK aIK aIK @@ -91164,7 +91066,7 @@ aUp aUp aUp aTO -qww +ogI aKs aSm aag @@ -91365,40 +91267,40 @@ ame ame aot apu +ame apb -apb -apb -apb -apb -aok +ame +ame +ame +ame avx akb akA akA akA akb -gOr -gOr -ycX -fZI -jBm -oPx -oPx -oPx -oPx -oPx -oPx -oPx -oPx -lEE -oPx -oPx -oPx -oPx -oPx -oPx -kBi -kGy +tey +lXa +lXa +xzZ +ydq +jLo +jLo +jLo +jLo +jLo +jLo +jLo +jLo +vWG +jLo +jLo +jLo +jLo +jLo +jLo +sCb +pYH bhp aQh aNz @@ -91416,7 +91318,7 @@ aUp aVD aUp aTO -qww +ogI aaj aSm aag @@ -91629,28 +91531,28 @@ akA akA akA akb -gOr -qCv -ohV -iNC -umD -dEv -dEv -dEv -dEv -dEv -dEv -dEv -dEv -ujg -dEv -dEv -dEv -dEv -dEv -dEv -xtr -kGy +lXa +mgR +fxF +qTM +jHI +ucU +ucU +ucU +ucU +ucU +ucU +ucU +ucU +dpq +ucU +ucU +ucU +ucU +ucU +ucU +esC +pYH aNA aRy aIK @@ -91668,7 +91570,7 @@ aUp aUp aUp aTO -qww +ogI aaj aSm aag @@ -91881,28 +91783,28 @@ akA akA akA akb -qFq -pNs -akA -vhH +lXa +pdw +nxj +pJz aHf -kGy -kGy -kGy -vkU +pYH +pYH +dqa +suL hRF -vkU -vkU -vkU -mAp -vkU +suL +suL +suL +wuI +suL aOh -aOh -aOh -cNG -xzS -pFL -kGy +iGS +iGS +rCG +eZR +sEC +pYH aNy aNy aHT @@ -91920,7 +91822,7 @@ aUp aHV aUp aTO -qww +ogI aHR aSm aag @@ -92133,8 +92035,8 @@ akb akb akb akb -fyz -akb +lXa +pdw akb akb akb @@ -92143,9 +92045,9 @@ aGl aHf aJL aJL -hnc -gEC -hnc +idd +qeu +idd tdL aKt aHT @@ -92172,7 +92074,7 @@ aUp aVD aUp aTO -qww +ogI aaj aSm aag @@ -92384,31 +92286,31 @@ awy awy ayg awy -npC -rNe -hyq +nXz +rQm +diF aCF aDx akb aFs aGm aHf -pNK -oir -gJA -lkA -kHc -wTi -tjw +cKf +nYk +vmP +oVm +ixx +mpH +lEf aHT auQ -kcU +unZ aXN biT auQ aHT aQi -qKg +gxe aHT aRz aXS @@ -92424,7 +92326,7 @@ aUp aHV aUp aTO -qww +ogI aaj aSm aag @@ -92636,22 +92538,22 @@ akA akA akA akA -rja -gOr -lqR +nzw +lXa +otz akb aDy akb akA aGn aHf -gJA -gJA -gJA -gJA -gJA -kyZ -fuJ +vmP +vmP +vmP +vmP +vmP +djI +cRc aHT aOw aSn @@ -92659,8 +92561,8 @@ aXO aOk aWV aHT -hsi -jeI +eRz +cpE aHT aXM bpC @@ -92676,7 +92578,7 @@ aUp aVD aUp aTO -qww +ogI aKs aSm aag @@ -92897,22 +92799,22 @@ aDy aFt aGo aHf -kST -gJA -gJA -xcH -gJA -flT -uvF +reM +vmP +vmP +xaY +vmP +nNv +lXU aHT -tSV -orf +uhU +reY aXT aSq aRm aHT -shS -uFp +jci +mbr aHT aYa bpD @@ -93149,13 +93051,13 @@ akb akb aGp aHf -gEv -gJA -xGk -nIS -gJA -flT -nwR +jvP +vmP +ecm +fBS +vmP +nNv +uyz aKx aHT aIK @@ -93171,7 +93073,7 @@ bpE bkD aUr aUr -aXZ +xVY bnb aXZ aUr @@ -93393,7 +93295,7 @@ ayy ayi ayY axi -hwC +aAy akb akb aDB @@ -93401,13 +93303,13 @@ aCG asv azf aNF -gpm -gJA -gJA -drD -gJA -flT -sVN +vIP +vmP +vmP +pAK +vmP +nNv +rgH aKx aEM aJJ @@ -93645,7 +93547,7 @@ axk ayj ayZ axi -hwC +wRM aBI aBI awI @@ -93654,16 +93556,16 @@ aBI aAb aNF aJL -sRf -lcR -jlZ -vKn -keZ -gWG +wSH +uJW +jdv +fKL +xIz +sbI bLR aIM -dPn -sUR +tcH +dBj aTC aUI aSs @@ -93897,7 +93799,7 @@ axl ayk aza axi -yhJ +aAy aBI aCH aDD @@ -94191,7 +94093,7 @@ bJX aHV aKw bqs -bsD +bsC btY bvb bro @@ -94443,7 +94345,7 @@ bdI aHV aKw bqs -bsD +bsC btZ bvc bro @@ -95451,9 +95353,9 @@ bcP aHV aHV brw -bsI +bsH biz -bub +pgg bub bxG byZ @@ -95704,7 +95606,7 @@ bsB aGF brx aFz -bmU +bud bve bud bud diff --git a/maps/yw/cryogaia_shuttles.dm b/maps/yw/cryogaia_shuttles.dm index e095ba3ca4..d2713c30bd 100644 --- a/maps/yw/cryogaia_shuttles.dm +++ b/maps/yw/cryogaia_shuttles.dm @@ -41,7 +41,7 @@ /obj/machinery/computer/shuttle_control/explore/security name = "short jump console" shuttle_tag = "Security Interceptor" - req_one_access = list(access_security) //pilot) + req_one_access = list(access_pilot,access_secpilot) /obj/effect/shuttle_landmark/premade/excursion/cryogaia name = "NSB Cryogaia (Excursion Dock)" From c5e6fefcdd5cae8ee7d66e82958c70e48c7ade56 Mon Sep 17 00:00:00 2001 From: Killian <49700375+KillianKirilenko@users.noreply.github.com> Date: Mon, 4 May 2020 14:28:46 +0100 Subject: [PATCH 14/23] Update access_datum_yw.dm --- code/game/jobs/access_datum_yw.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/jobs/access_datum_yw.dm b/code/game/jobs/access_datum_yw.dm index 843a1560f9..41c6f37702 100644 --- a/code/game/jobs/access_datum_yw.dm +++ b/code/game/jobs/access_datum_yw.dm @@ -1,7 +1,7 @@ /var/const/access_secpilot = 51 /datum/access/secpilot id = access_secpilot - desc = "Security Vehicle Bay" + desc = "Security Pilot Access" region = ACCESS_REGION_SECURITY /var/const/access_blueshield = 52 From 6494e48c7a0f2a65b42395a0cc3a66c6fc60ebf6 Mon Sep 17 00:00:00 2001 From: Killian <49700375+KillianKirilenko@users.noreply.github.com> Date: Tue, 5 May 2020 11:24:07 +0100 Subject: [PATCH 15/23] small update to secpilot locker contents --- .../structures/crates_lockers/closets/secure/closets_yw.dm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/closets_yw.dm b/code/game/objects/structures/crates_lockers/closets/secure/closets_yw.dm index 7ea008cb6e..d1958b3843 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/closets_yw.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/closets_yw.dm @@ -53,6 +53,7 @@ /obj/item/weapon/material/knife/tacknife/survival, /obj/item/clothing/head/pilot/alt, /obj/item/clothing/mask/gas/half, + /obj/item/clothing/suit/storage/toggle/yw/secjacket /obj/item/clothing/under/rank/khi/sec/pilot, /obj/item/clothing/gloves/fingerless, /obj/item/weapon/cartridge/security, @@ -68,4 +69,5 @@ /obj/item/weapon/gun/energy/taser, /obj/item/weapon/cell/device/weapon, /obj/item/device/flashlight/maglight, - /obj/item/device/radio) \ No newline at end of file + /obj/item/device/radio + ) \ No newline at end of file From 19c223c940a212045afc9431b547965a0c8c336f Mon Sep 17 00:00:00 2001 From: Killian <49700375+KillianKirilenko@users.noreply.github.com> Date: Tue, 5 May 2020 11:28:20 +0100 Subject: [PATCH 16/23] forgot a comma --- .../structures/crates_lockers/closets/secure/closets_yw.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/closets_yw.dm b/code/game/objects/structures/crates_lockers/closets/secure/closets_yw.dm index d1958b3843..25f9930fad 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/closets_yw.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/closets_yw.dm @@ -53,7 +53,7 @@ /obj/item/weapon/material/knife/tacknife/survival, /obj/item/clothing/head/pilot/alt, /obj/item/clothing/mask/gas/half, - /obj/item/clothing/suit/storage/toggle/yw/secjacket + /obj/item/clothing/suit/storage/toggle/yw/secjacket, /obj/item/clothing/under/rank/khi/sec/pilot, /obj/item/clothing/gloves/fingerless, /obj/item/weapon/cartridge/security, From 912a78e70453f7aa419ba2c678a137b6557c0765 Mon Sep 17 00:00:00 2001 From: Killian <49700375+KillianKirilenko@users.noreply.github.com> Date: Tue, 5 May 2020 11:53:41 +0100 Subject: [PATCH 17/23] Revert "Merge branch 'kk-miscstuff' into kk-mapfixes" This reverts commit 0f068a09b385934b9b1f03c97e086a12612af33a, reversing changes made to 6868c0873bffc892f83523c2c4854889b9e7d200. --- code/datums/outfits/jobs/security_yw.dm | 5 --- code/game/jobs/access_datum_yw.dm | 6 --- code/game/jobs/job/security_yw.dm | 38 ------------------ code/game/jobs/jobs.dm | 1 - .../closets/secure/closets_yw.dm | 36 ----------------- .../loadout/loadout_accessories.dm | 14 +++---- .../loadout/loadout_accessories_vr.dm | 14 +++---- .../loadout/loadout_accessories_yw.dm | 9 ----- .../preference_setup/loadout/loadout_eyes.dm | 4 +- .../loadout/loadout_eyes_yw.dm | 2 +- .../preference_setup/loadout/loadout_head.dm | 10 ++--- .../preference_setup/loadout/loadout_shoes.dm | 2 +- .../preference_setup/loadout/loadout_suit.dm | 8 ++-- .../loadout/loadout_uniform.dm | 10 ++--- .../loadout/loadout_uniform_vr.dm | 28 ++++++------- .../loadout/loadout_uniform_yw.dm | 23 +---------- .../loadout/loadout_utility_vr.dm | 2 +- .../preference_setup/loadout/loadout_xeno.dm | 4 +- .../clothing/under/extrauniforms_yw.dm | 16 -------- icons/obj/closet_yw.dmi | Bin 3383 -> 2159 bytes vorestation.dme | 3 -- 21 files changed, 50 insertions(+), 185 deletions(-) delete mode 100644 code/datums/outfits/jobs/security_yw.dm delete mode 100644 code/game/jobs/job/security_yw.dm delete mode 100644 code/modules/client/preference_setup/loadout/loadout_accessories_yw.dm diff --git a/code/datums/outfits/jobs/security_yw.dm b/code/datums/outfits/jobs/security_yw.dm deleted file mode 100644 index c5a878f26e..0000000000 --- a/code/datums/outfits/jobs/security_yw.dm +++ /dev/null @@ -1,5 +0,0 @@ -/decl/hierarchy/outfit/job/security/pilot - name = OUTFIT_JOB_NAME("Security Pilot") - uniform = /obj/item/clothing/under/rank/khi/sec/pilot - id_type = /obj/item/weapon/card/id/security - pda_type = /obj/item/device/pda/security \ No newline at end of file diff --git a/code/game/jobs/access_datum_yw.dm b/code/game/jobs/access_datum_yw.dm index 41c6f37702..97d68b903b 100644 --- a/code/game/jobs/access_datum_yw.dm +++ b/code/game/jobs/access_datum_yw.dm @@ -1,9 +1,3 @@ -/var/const/access_secpilot = 51 -/datum/access/secpilot - id = access_secpilot - desc = "Security Pilot Access" - region = ACCESS_REGION_SECURITY - /var/const/access_blueshield = 52 /datum/access/blueshield id = access_blueshield diff --git a/code/game/jobs/job/security_yw.dm b/code/game/jobs/job/security_yw.dm deleted file mode 100644 index 4723e68885..0000000000 --- a/code/game/jobs/job/security_yw.dm +++ /dev/null @@ -1,38 +0,0 @@ -/datum/job/hos - disallow_jobhop = TRUE - - access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, - access_forensics_lockers, access_morgue, access_maint_tunnels, access_all_personal_lockers, - access_research, access_engine, access_mining, access_construction, access_mailsorting, - access_heads, access_hos, access_RC_announce, access_keycard_auth, access_gateway, access_external_airlocks, access_secpilot) - minimal_access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, - access_forensics_lockers, access_morgue, access_maint_tunnels, access_all_personal_lockers, - access_research, access_engine, access_mining, access_construction, access_mailsorting, - access_heads, access_hos, access_RC_announce, access_keycard_auth, access_gateway, access_external_airlocks, access_secpilot) - -/datum/job/warden - access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, access_maint_tunnels, access_morgue, access_external_airlocks, access_secpilot) - minimal_access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, access_maint_tunnels, access_external_airlocks, access_secpilot) - -/datum/job/security/pilot - title = "Security Pilot" - flag = SECPILOT - departments = list(DEPARTMENT_SECURITY) - department_flag = ENGSEC - faction = "Station" - total_positions = 2 - spawn_positions = 2 - supervisors = "the head of security" - selection_color = "#601C1C" - economic_modifier = 5 - access = list(access_security, access_eva, access_sec_doors, access_brig, access_maint_tunnels, access_morgue, access_external_airlocks, access_secpilot) - minimal_access = list(access_security, access_eva, access_sec_doors, access_brig, access_maint_tunnels, access_external_airlocks, access_secpilot) - minimal_player_age = 7 - outfit_type = /decl/hierarchy/outfit/job/security/pilot - - job_description = "Tasked with flying, operating, and sometimes even maintaining small spacecraft and personal exosuits such as the Durand or Gygax, \ - Security Pilots are responsible for transporting criminals to more permanent holding facilities, and patrolling \ - for potential threats to their workplace. They may also be expected to step in to standard Security duties if \ - there's a shortage of regular officers." - -// alt_titles = list("Mech Operator" = /datum/alt_title/sec_mech_operator) \ No newline at end of file diff --git a/code/game/jobs/jobs.dm b/code/game/jobs/jobs.dm index 431d038870..fce7e5325d 100644 --- a/code/game/jobs/jobs.dm +++ b/code/game/jobs/jobs.dm @@ -12,7 +12,6 @@ var/const/ATMOSTECH =(1<<7) var/const/AI =(1<<8) var/const/CYBORG =(1<<9) var/const/BLUESHIELD =(1<<13) //YW addition -var/const/SECPILOT =(1<<14) //YW addition var/const/INTERN =(1<<15) //VOREStation Add var/const/MEDSCI =(1<<1) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/closets_yw.dm b/code/game/objects/structures/crates_lockers/closets/secure/closets_yw.dm index 25f9930fad..e1057a1f9c 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/closets_yw.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/closets_yw.dm @@ -35,39 +35,3 @@ /obj/item/gunbox/blueshield, /obj/item/gunbox/blueshield/secondary ) - -/obj/structure/closet/secure_closet/security_pilot - name = "security pilot's locker" - req_access = list(access_secpilot) - icon = 'icons/obj/closet_yw.dmi' - icon_state = "secpilot1" - icon_closed = "secpilot" - icon_locked = "secpilot1" - icon_opened = "secpilotopen" - icon_broken = "secpilotbroken" - icon_off = "secpilotoff" - storage_capacity = 2.5 * MOB_MEDIUM - - starts_with = list( - /obj/item/weapon/storage/backpack/parachute, - /obj/item/weapon/material/knife/tacknife/survival, - /obj/item/clothing/head/pilot/alt, - /obj/item/clothing/mask/gas/half, - /obj/item/clothing/suit/storage/toggle/yw/secjacket, - /obj/item/clothing/under/rank/khi/sec/pilot, - /obj/item/clothing/gloves/fingerless, - /obj/item/weapon/cartridge/security, - /obj/item/device/radio/headset/headset_sec/alt, - /obj/item/weapon/storage/belt/security, - /obj/item/clothing/glasses/sunglasses/sechud, - /obj/item/weapon/storage/box/flare, - /obj/item/clothing/accessory/storage/webbing/combatpilot, - /obj/item/weapon/reagent_containers/food/snacks/liquidfood, - /obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, - /obj/item/clothing/head/soft/sec/corp, - /obj/item/clothing/accessory/holster/armpit, - /obj/item/weapon/gun/energy/taser, - /obj/item/weapon/cell/device/weapon, - /obj/item/device/flashlight/maglight, - /obj/item/device/radio - ) \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories.dm b/code/modules/client/preference_setup/loadout/loadout_accessories.dm index 242dc0b777..05442e5208 100644 --- a/code/modules/client/preference_setup/loadout/loadout_accessories.dm +++ b/code/modules/client/preference_setup/loadout/loadout_accessories.dm @@ -79,7 +79,7 @@ /datum/gear/accessory/holster display_name = "holster selection (Security, CD, HoP)" path = /obj/item/clothing/accessory/holster - allowed_roles = list("Colony Director", "Head of Personnel", "Security Officer", "Warden", "Head of Security","Detective","Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Colony Director", "Head of Personnel", "Security Officer", "Warden", "Head of Security","Detective","Blueshield Guard") /datum/gear/accessory/holster/New() ..() @@ -135,32 +135,32 @@ /datum/gear/accessory/brown_vest display_name = "webbing, brown" path = /obj/item/clothing/accessory/storage/brown_vest - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard") /datum/gear/accessory/black_vest display_name = "webbing, black" path = /obj/item/clothing/accessory/storage/black_vest - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard") /datum/gear/accessory/white_vest display_name = "webbing, white" path = /obj/item/clothing/accessory/storage/white_vest - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard") /datum/gear/accessory/brown_drop_pouches display_name = "drop pouches, brown" path = /obj/item/clothing/accessory/storage/brown_drop_pouches - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard") /datum/gear/accessory/black_drop_pouches display_name = "drop pouches, black" path = /obj/item/clothing/accessory/storage/black_drop_pouches - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard") /datum/gear/accessory/white_drop_pouches display_name = "drop pouches, white" path = /obj/item/clothing/accessory/storage/white_drop_pouches - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard") /datum/gear/accessory/fannypack display_name = "fannypack selection" diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm b/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm index ca65595688..8ae13a2930 100644 --- a/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm @@ -41,15 +41,15 @@ /datum/gear/accessory/holster display_name = "holster selection (Security, CD, HoP, Exploration)" - allowed_roles = list("Colony Director", "Head of Personnel", "Security Officer", "Warden", "Head of Security","Detective","Explorer","Pathfinder", "Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Colony Director", "Head of Personnel", "Security Officer", "Warden", "Head of Security","Detective","Explorer","Pathfinder", "Blueshield Guard") /datum/gear/accessory/brown_vest display_name = "webbing, brown (Eng, Sec, Med, Exploration, Miner)" - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard") /datum/gear/accessory/black_vest display_name = "webbing, black (Eng, Sec, Med, Exploration, Miner)" - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard") /datum/gear/accessory/white_vest display_name = "webbing, white (Medical)" @@ -57,11 +57,11 @@ /datum/gear/accessory/brown_drop_pouches display_name = "drop pouches, brown (Eng, Sec, Med, Exploration, Miner)" - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard") /datum/gear/accessory/black_drop_pouches display_name = "drop pouches, black (Eng, Sec, Med, Exploration, Miner)" - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard") /datum/gear/accessory/white_drop_pouches display_name = "drop pouches, white (Medical)" @@ -85,9 +85,9 @@ /datum/gear/accessory/pilotpin display_name = "pilot qualification pin" - description = "An iron pin denoting the qualification to fly USG spacecraft." + description = "An iron pin denoting the qualification to fly SCG spacecraft." path = /obj/item/clothing/accessory/solgov/specialty/pilot - allowed_roles = list("Pathfinder", "Pilot", "Field Medic","Security Pilot") //YW ADDITIONS + allowed_roles = list("Pathfinder", "Pilot", "Field Medic") /datum/gear/accessory/flops display_name = "drop straps" diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories_yw.dm b/code/modules/client/preference_setup/loadout/loadout_accessories_yw.dm deleted file mode 100644 index 3784ccd445..0000000000 --- a/code/modules/client/preference_setup/loadout/loadout_accessories_yw.dm +++ /dev/null @@ -1,9 +0,0 @@ -/datum/gear/accessory/pilot_webbing1 - path = /obj/item/clothing/accessory/storage/webbing/pilot1 - display_name = "harness and webbing (Sec, Exploration)" - allowed_roles = list("Security Officer","Detective","Head of Security","Warden","Explorer","Pathfinder","Blueshield Guard","Pilot","Security Pilot") - -/datum/gear/accessory/pilot_webbing2 - path = /obj/item/clothing/accessory/storage/webbing/pilot2 - display_name = "harness and webbing, alt. (Sec, Exploration)" - allowed_roles = list("Security Officer","Detective","Head of Security","Warden","Explorer","Pathfinder","Blueshield Guard","Pilot","Security Pilot") \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_eyes.dm b/code/modules/client/preference_setup/loadout/loadout_eyes.dm index db4843c57f..4c3b1378d2 100644 --- a/code/modules/client/preference_setup/loadout/loadout_eyes.dm +++ b/code/modules/client/preference_setup/loadout/loadout_eyes.dm @@ -36,7 +36,7 @@ /datum/gear/eyes/security display_name = "Security HUD (Security)" path = /obj/item/clothing/glasses/hud/security - allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard") /datum/gear/eyes/security/prescriptionsec display_name = "Security HUD, prescription (Security)" @@ -108,7 +108,7 @@ /datum/gear/eyes/sun display_name = "Sunglasses (Security/Command)" path = /obj/item/clothing/glasses/sunglasses - allowed_roles = list("Security Officer","Head of Security","Warden","Colony Director","Head of Personnel","Quartermaster","Internal Affairs Agent","Detective","Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Security Officer","Head of Security","Warden","Colony Director","Head of Personnel","Quartermaster","Internal Affairs Agent","Detective","Blueshield Guard") /datum/gear/eyes/sun/shades display_name = "Sunglasses, fat (Security/Command)" diff --git a/code/modules/client/preference_setup/loadout/loadout_eyes_yw.dm b/code/modules/client/preference_setup/loadout/loadout_eyes_yw.dm index 33e9858933..8dee4f7650 100644 --- a/code/modules/client/preference_setup/loadout/loadout_eyes_yw.dm +++ b/code/modules/client/preference_setup/loadout/loadout_eyes_yw.dm @@ -1,7 +1,7 @@ /datum/gear/eyes/arglasses/sec display_name = "AR-S glasses (Sec, BSG)" path = /obj/item/clothing/glasses/omnihud/sec - allowed_roles = list("Security Officer","Head of Security","Warden","Detective","Blueshield Guard","Security Pilot") + allowed_roles = list("Security Officer","Head of Security","Warden","Detective","Blueshield Guard") /datum/gear/eyes/arglasses/eng display_name = "AR-E glasses (Eng)" diff --git a/code/modules/client/preference_setup/loadout/loadout_head.dm b/code/modules/client/preference_setup/loadout/loadout_head.dm index ed110210b6..7c2a327b38 100644 --- a/code/modules/client/preference_setup/loadout/loadout_head.dm +++ b/code/modules/client/preference_setup/loadout/loadout_head.dm @@ -19,7 +19,7 @@ /datum/gear/head/beret/bsec display_name = "beret, navy (officer)" path = /obj/item/clothing/head/beret/sec/navy/officer - allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard") /datum/gear/head/beret/bsec_warden display_name = "beret, navy (warden)" @@ -34,7 +34,7 @@ /datum/gear/head/beret/csec display_name = "beret, corporate (officer)" path = /obj/item/clothing/head/beret/sec/corporate/officer - allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard") /datum/gear/head/beret/csec_warden display_name = "beret, corporate (warden)" @@ -57,7 +57,7 @@ /datum/gear/head/beret/sec display_name = "beret, red (security)" path = /obj/item/clothing/head/beret/sec - allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard") /datum/gear/head/cap display_name = "cap, black" @@ -78,7 +78,7 @@ /datum/gear/head/cap/corp display_name = "cap, corporate (Security)" path = /obj/item/clothing/head/soft/sec/corp - allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard") /datum/gear/head/cap/green display_name = "cap, green" @@ -107,7 +107,7 @@ /datum/gear/head/cap/sec display_name = "cap, security (Security)" path = /obj/item/clothing/head/soft/sec - allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard") /datum/gear/head/cap/yellow display_name = "cap, yellow" diff --git a/code/modules/client/preference_setup/loadout/loadout_shoes.dm b/code/modules/client/preference_setup/loadout/loadout_shoes.dm index 72c6cc7a97..bb6f50e9f5 100644 --- a/code/modules/client/preference_setup/loadout/loadout_shoes.dm +++ b/code/modules/client/preference_setup/loadout/loadout_shoes.dm @@ -186,7 +186,7 @@ /datum/gear/shoes/boots/winter/security display_name = "security winter boots" path = /obj/item/clothing/shoes/boots/winter/security - allowed_roles = list("Security Officer", "Head of Security", "Warden", "Detective","Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Security Officer", "Head of Security", "Warden", "Detective","Blueshield Guard") /datum/gear/shoes/boots/winter/science display_name = "science winter boots" diff --git a/code/modules/client/preference_setup/loadout/loadout_suit.dm b/code/modules/client/preference_setup/loadout/loadout_suit.dm index 103e0c7cc3..c1c242e4f6 100644 --- a/code/modules/client/preference_setup/loadout/loadout_suit.dm +++ b/code/modules/client/preference_setup/loadout/loadout_suit.dm @@ -257,7 +257,7 @@ datum/gear/suit/duster /datum/gear/suit/roles/poncho/cloak/security display_name = "cloak, security" path = /obj/item/clothing/accessory/poncho/roles/cloak/security - allowed_roles = list("Head of Security","Detective","Warden","Security Officer","Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Head of Security","Detective","Warden","Security Officer","Blueshield Guard") /datum/gear/suit/roles/poncho/cloak/service display_name = "cloak, service" @@ -340,7 +340,7 @@ datum/gear/suit/duster /datum/gear/suit/wintercoat/security display_name = "winter coat, security" path = /obj/item/clothing/suit/storage/hooded/wintercoat/security - allowed_roles = list("Security Officer", "Head of Security", "Warden", "Detective","Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Security Officer", "Head of Security", "Warden", "Detective","Blueshield Guard") /datum/gear/suit/wintercoat/medical display_name = "winter coat, medical" @@ -473,12 +473,12 @@ datum/gear/suit/duster /datum/gear/suit/snowsuit/command display_name = "snowsuit, command" path = /obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/command - allowed_roles = list("Colony Director","Research Director","Head of Personnel","Head of Security","Chief Engineer","Command Secretary","Blueshield Guard") //YW ADDITIONS + allowed_roles = list("Colony Director","Research Director","Head of Personnel","Head of Security","Chief Engineer","Command Secretary","Blueshield Guard") /datum/gear/suit/snowsuit/security display_name = "snowsuit, security" path = /obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/security - allowed_roles = list("Security Officer", "Head of Security", "Warden", "Detective","Blueshield Guard","Security Pilot") + allowed_roles = list("Security Officer", "Head of Security", "Warden", "Detective","Blueshield Guard") /datum/gear/suit/snowsuit/medical display_name = "snowsuit, medical" diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform.dm b/code/modules/client/preference_setup/loadout/loadout_uniform.dm index b5be918c11..a4451e4392 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform.dm @@ -158,7 +158,7 @@ /datum/gear/uniform/job_skirt/security display_name = "skirt, security" path = /obj/item/clothing/under/rank/security/skirt - allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer","Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer","Blueshield Guard") /datum/gear/uniform/job_skirt/head_of_security display_name = "skirt, hos" @@ -173,7 +173,7 @@ /datum/gear/uniform/job_turtle/security display_name = "turtleneck, security" path = /obj/item/clothing/under/rank/security/turtleneck - allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer", "Security Pilot") //YW ADDITIONS + allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer") /datum/gear/uniform/job_turtle/engineering display_name = "turtleneck, engineering" @@ -307,7 +307,7 @@ /datum/gear/uniform/corpsecsuit display_name = "uniform, corporate (Security)" path = /obj/item/clothing/under/rank/security/corp - allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard") /datum/gear/uniform/corpwarsuit display_name = "uniform, corporate (Warden)" @@ -333,7 +333,7 @@ /datum/gear/uniform/navysecsuit display_name = "uniform, navy blue (Security)" path = /obj/item/clothing/under/rank/security/navyblue - allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard") /datum/gear/uniform/navywarsuit display_name = "uniform, navy blue (Warden)" @@ -432,7 +432,7 @@ /datum/gear/uniform/pcrc display_name = "uniform, PCRC (Security)" path = /obj/item/clothing/under/pcrc - allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard") /datum/gear/uniform/brandsuit/grayson display_name = "outfit, grayson" diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm index 5869d2b468..4768998c8d 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm @@ -11,12 +11,12 @@ /datum/gear/uniform/job_khi/cmd display_name = "khi uniform, cmd" path = /obj/item/clothing/under/rank/khi/cmd - allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") //YW ADDITIONS + allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") /datum/gear/uniform/job_khi/sec display_name = "khi uniform, sec" path = /obj/item/clothing/under/rank/khi/sec - allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer","Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer","Blueshield Guard") /datum/gear/uniform/job_khi/med display_name = "khi uniform, med" @@ -37,7 +37,7 @@ /datum/gear/suit/job_fed/sec display_name = "fed uniform, sec" path = /obj/item/clothing/suit/storage/fluff/fedcoat - allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer","Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer","Blueshield Guard") /datum/gear/suit/job_fed/medsci display_name = "fed uniform, med/sci" @@ -54,7 +54,7 @@ /datum/gear/uniform/job_trek/cmd/tos display_name = "TOS uniform, cmd" path = /obj/item/clothing/under/rank/trek/command - allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") //YW ADDITIONS + allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") /datum/gear/uniform/job_trek/medsci/tos display_name = "TOS uniform, med/sci" @@ -64,13 +64,13 @@ /datum/gear/uniform/job_trek/eng/tos display_name = "TOS uniform, eng/sec" path = /obj/item/clothing/under/rank/trek/engsec - allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard") //TNG /datum/gear/uniform/job_trek/cmd/tng display_name = "TNG uniform, cmd" path = /obj/item/clothing/under/rank/trek/command/next - allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") //YW ADDITIONS + allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") /datum/gear/uniform/job_trek/medsci/tng display_name = "TNG uniform, med/sci" @@ -80,13 +80,13 @@ /datum/gear/uniform/job_trek/eng/tng display_name = "TNG uniform, eng/sec" path = /obj/item/clothing/under/rank/trek/engsec/next - allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard") //VOY /datum/gear/uniform/job_trek/cmd/voy display_name = "VOY uniform, cmd" path = /obj/item/clothing/under/rank/trek/command/voy - allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") //YW ADDITIONS + allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") /datum/gear/uniform/job_trek/medsci/voy display_name = "VOY uniform, med/sci" @@ -96,7 +96,7 @@ /datum/gear/uniform/job_trek/eng/voy display_name = "VOY uniform, eng/sec" path = /obj/item/clothing/under/rank/trek/engsec/voy - allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard") //DS9 @@ -106,13 +106,13 @@ allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director", "Chief Medical Officer","Medical Doctor","Chemist","Paramedic","Geneticist", "Scientist","Roboticist","Xenobiologist","Atmospheric Technician", - "Station Engineer","Warden","Detective","Security Officer", "Pathfinder", "Explorer", "Field Medic", "Blueshield Guard","Security Pilot") //YW ADDITIONS + "Station Engineer","Warden","Detective","Security Officer", "Pathfinder", "Explorer", "Field Medic", "Blueshield Guard") /datum/gear/uniform/job_trek/cmd/ds9 display_name = "DS9 uniform, cmd" path = /obj/item/clothing/under/rank/trek/command/ds9 - allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") //YW ADDITIONS + allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") /datum/gear/uniform/job_trek/medsci/ds9 display_name = "DS9 uniform, med/sci" @@ -122,14 +122,14 @@ /datum/gear/uniform/job_trek/eng/ds9 display_name = "DS9 uniform, eng/sec" path = /obj/item/clothing/under/rank/trek/engsec/ds9 - allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard") //ENT /datum/gear/uniform/job_trek/cmd/ent display_name = "ENT uniform, cmd" path = /obj/item/clothing/under/rank/trek/command/ent - allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") //YW ADDITIONS + allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") /datum/gear/uniform/job_trek/medsci/ent display_name = "ENT uniform, med/sci" @@ -139,7 +139,7 @@ /datum/gear/uniform/job_trek/eng/ent display_name = "ENT uniform, eng/sec" path = /obj/item/clothing/under/rank/trek/engsec/ent - allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard","Security Pilot") //YW ADDITIONS + allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard") /* Swimsuits */ diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform_yw.dm b/code/modules/client/preference_setup/loadout/loadout_uniform_yw.dm index b635994995..0fef98d933 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform_yw.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform_yw.dm @@ -18,25 +18,4 @@ /datum/gear/uniform/redvictdress description = "A victorian style dress, fancy!" display_name = "Victorian Dress, Red" - path = /obj/item/clothing/under/yw/victsuit/victdress/red - -/datum/gear/uniform/pilot1 - display_name = "NT Pilot Uniform" - description = "A blue and grey NanoTrasen flight suit. Warm and practical, it feels cozy. Includes harness and webbing." - path = /obj/item/clothing/under/rank/pilot1 - cost = 2 //base cost 1 + accessory 1 - allowed_roles = list("Pilot","Security Pilot") - -/datum/gear/uniform/pilot2 - display_name = "NT Pilot Uniform, Alt." - description = "A dark blue NanoTrasen flight suit. Warm and practical, several patches are scattered across it. Includes harness and webbing." - path = /obj/item/clothing/under/rank/pilot2 - cost = 2 //base cost 1 + accessory 1 - allowed_roles = list("Pilot","Security Pilot") - -/datum/gear/uniform/combatpilot - display_name = "Security Pilot Uniform" - description = "A lightweight uniform intended for vehicle and powersuit operators, designed to allow free movement and maximum comfort in hot, cramped cockpits. Comes prefitted with a harness and webbing for gear." - path = /obj/item/clothing/under/rank/khi/sec/pilot - cost = 2 //base cost 1 + accessory 1 - allowed_roles = list("Security Pilot") \ No newline at end of file + path = /obj/item/clothing/under/yw/victsuit/victdress/red \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_utility_vr.dm b/code/modules/client/preference_setup/loadout/loadout_utility_vr.dm index 7b3ed3cbbb..6e4dac4647 100644 --- a/code/modules/client/preference_setup/loadout/loadout_utility_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_utility_vr.dm @@ -44,7 +44,7 @@ /datum/gear/utility/dufflebag/sec display_name = "security Dufflebag" path = /obj/item/weapon/storage/backpack/dufflebag/sec - allowed_roles = list("Head of Security","Warden","Detective","Security Officer","Blueshield Guard","Security Pilot")//YW ADDITIONS + allowed_roles = list("Head of Security","Warden","Detective","Security Officer","Blueshield Guard") /datum/gear/utility/dufflebag/eng display_name = "engineering dufflebag" diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno.dm b/code/modules/client/preference_setup/loadout/loadout_xeno.dm index d411c5d56d..2a60cf94a9 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno.dm @@ -210,7 +210,7 @@ /datum/gear/uniform/dept/undercoat/security display_name = "security undercoat (Teshari)" path = /obj/item/clothing/under/seromi/undercoat/jobs/sec - allowed_roles = list("Head of Security","Detective","Warden","Security Officer","Security Pilot")//YW ADDITIONS + allowed_roles = list("Head of Security","Detective","Warden","Security Officer",) /datum/gear/uniform/dept/undercoat/service display_name = "service undercoat (Teshari)" @@ -299,7 +299,7 @@ /datum/gear/suit/dept/cloak/security display_name = "security cloak (Teshari)" path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/sec - allowed_roles = list("Head of Security","Detective","Warden","Security Officer","Security Pilot")//YW ADDITIONS + allowed_roles = list("Head of Security","Detective","Warden","Security Officer",) /datum/gear/suit/dept/cloak/service display_name = "service cloak (Teshari)" diff --git a/code/modules/clothing/under/extrauniforms_yw.dm b/code/modules/clothing/under/extrauniforms_yw.dm index 612bcede4e..49c9968b8f 100644 --- a/code/modules/clothing/under/extrauniforms_yw.dm +++ b/code/modules/clothing/under/extrauniforms_yw.dm @@ -19,22 +19,6 @@ item_state = "blueshield2" armor = list(melee = 15, bullet = 10, laser = 10,energy = 5, bomb = 15, bio = 0, rad = 0) -/obj/item/clothing/accessory/storage/webbing/combatpilot //redefined to change the name and keep it loaded in the event the sc files are disabled in future - name = "combat pilot harness" - desc = "Sturdy mess of black synthcotton belts and buckles." - icon_state = "pilot_webbing2" - sprite_sheets = list( - "Teshari" = 'icons/mob/species/seromi/ties.dmi' - ) - -/obj/item/clothing/under/rank/khi/sec/pilot //yes, we're inheriting from the khi version; that one has full rolldown sprites - name = "security pilot uniform" - desc = "A lightweight uniform intended for vehicle and powersuit operators, designed to allow free movement and maximum comfort in hot, cramped cockpits. Comes prefitted with a harness and webbing for gear." - armor = list(melee = 0, bullet = 10, laser = 10, energy = 0, bomb = 10, bio = 0, rad = 0) - //we probably won't get hit by melee attacks as a pilot, but logically you'd want protection against anything that might penetrate the armor - starting_accessories = list(/obj/item/clothing/accessory/storage/webbing/combatpilot) - //come prefitted with some snappy extra webbing - /obj/item/clothing/under/yw/rank/security/formal name = "security suit" desc = "A formal security suit for officers complete with nanotrasen belt buckle." diff --git a/icons/obj/closet_yw.dmi b/icons/obj/closet_yw.dmi index 19145e49db07c744fc68e03252958b7b9bedeafa..4b9b474cfe17600d0f6986a4430e9d2fc297cfe1 100644 GIT binary patch delta 1605 zcmV-L2D?fB5*AVS}Q;z`&Vi0F#rGNHGApd;m@(BP|{PFBKI4004DQ08cdlH5V6NKLBDc zFCGmIc~Ss16cl$+05C8xU|?WkLI7k#0H13BQ6V9STL6<|0HkjKAP*0XN1cQK0004W zQchCV=-lNbYme}>OZ$_lQ2F5mzM0R10rGTDqg ziU0rwSV=@dRA_$Jq2OZ4rcC%`#RjNo8i;5N%4-ORtRMd)R#apo+SZ^pQ zYQbYwYN?1FAKW(E+N$-~di{gW28>2hpkyM_u9(q5MuqT_S;MzJL%~jU07#oR!S))S}N9OQlsMTSX)u5Y8`K z>P9>OS*mHM;z}}KKqXyo*KL(#3nKVsKLFWYDyadA)(P6_N#s`;-uERyx0kBn0qD0P zI{Ta?em6STV4|rKaRA~xcZEf8K^VUqbt?eGe|hc-;RRv*L;z$&E4=kYS zEe87(-~tYy$N>oR&IvAD(|1wdnv2&KOLG5`b^Vw2ue)qLZ@#<^je*fU6Yd2kY{pK40pF9JoP+6A&+~^A3bh8MsgAVUH0JOr@+g^?FWUV8Zz2;ji0qpyv={>GaD0B;chL!Q9fuFyLH35-|? z90U^>wGuca^~q055M>Rj)UTDX8AjJ9r@tMhac@Z z1o*l>MuoOP$pX!L4t%yA@?`+B1Ym$#?ekjCG06e8-}?nouLk-$^*I1*zeWMRe{>Z9 zaGXdFSa5t|Vj_(12dLNpU%3hZn5<3Kf)-2?h4C2x?L=kD2Kd?)44^9$2E|agIc?`_k{oZ;*gZ=%U^D*E5{XWL{JHizff3&CXWq#e0)K^H=-)C6OiW^kEQmX!LGMb$^E%*&avorPR z`xX7&oMUA20A%U>y!nHxg*X6;{%+2B0dN3hd%d0vMs-zmUP zmMnmuJpi)bG}BH%Y_D7bEP!b)Ev21+8~{jQY3aX|0NCHT1b$%ve^N~V?Dyu}uPt!^ zsU^@O{rkTM@EiGOeS;GC-Bm1rEjEA-^nWh_`Y7TONClv313>-VYCKLG*2Ob(#g0MPpZ|7U;&_@f2zr>mF=1lDK&U62KUqQCo} z1K9z9{ons6W&z9=f52a^5&(ex-v20GZu$Vo59G7}!2Zr9zyj3ivycM(?J7wEP=60d zfczw=rv?D__q-EO{6Zp2fcdpOh1*c*um0bPB?*|`gD~ckFu1?_dx5v#N`T&m|1esJ zzF*zn*=EG-x1R%zhOZgL*&kaCvb~Y#LIEJz_J0ATqpfxJ5Ag;s00000NkvXXu0mjf DRC)fE delta 2824 zcmV+j3-|Qz5Vsm7iBL{Q4GJ0x0000DNk~Le0001>0001>2m=5B0K5^G9{>OX%8@0q z1NiuuvDXvyfsOA-?`4-b=L0KP#mq;CKq4-de=z&sHVODGCb z6&2QA99~=)7-=3JON&`k00001bW%=J06^y0W&i*Hx|3Q0k$*;%n}9AV$jr$vAzC5f z@Pnx&$$nx28>W{0@Iy5Lp97T@T>V_YDG~s5rNdIYO8gA~00~t|L_t(|ob8(Vn;b?7ZCH0Jvo^l}CS_)g_|VZp$xImaA(%)5>|{)BhK{_MFYzURdEzVD=y z5ucu6Oh#`J0zAc&@%|4W^+c-o7krRi!KtU6{-M*)`0$w@IScmBKIh!?&OQHv3qOkZ zo(%3e2myZV<6yn>3?pK_zhDO2VBRM#y7;0`et+tcOFs?!^Dn#nip#IO>gsDg1N+5d z|F!+s^&9;$fY-}_ZapC+R4*>L;l>4@UGTZje*pu$>5B_*UihV3z8nGg6}mw`Ji)Je zGQNfZ%Jt#`I>80b1aF0XI>Cj`1aAX<`Y-D5cP6kX1UMrEh}M&Ey}uyO7Myz8?RVUM z=YQAFyj4C19RKWd?)t`E-~85vw;_J9xQNME#2qtzKHy?chDNe0-7s&?-N)Y} zH*oyfbLZbQf9|~}V+$4o`c^x9B7aa&cW{~PJev}@IIcdwMH$g?82YhH*pE96aAHIU-1f_#AbcO0ZJVEXL z;VZxz===Tz4Nm&~!!L8AZN59fX_RU)cg$$_rwj7=hx1K6(xPt|yz$VoJe}a90e|0O zoqAu(moMLcc~gn~2VC*K(cJM7PCE6e%X#v3azkBpH(h(Bk?*DAKNjeRfUT78rRcBV zwGtrI%J)+6OPp4&cucO3$>-AcORG4QAi$V>E^WWGDi|OP7?aPX?K8mDj$#0@d@gOD z0shF51Nb-!h^0$u`=JTqfLK14wtxSonIM|arR|3%_~ST0DWB8vNrL*)s-O760VDD` z*C(WxK5)NC2wpz`=7#~`Pw9{I3kGcFb0nPai9R9ZXHh<_Cj{{a-24yjA54%P)exW; zeAezsm?T03a z0;2g`+P>}t+m{b2`nnTrUw=NR=&Mc;&F9kg#cy>WV01p0wl97!miglIxwL&gS%CQV zX>ZVQASj>9nWp)K>8hN8AD7RSsh%u1Wyu}V_H!egR<0P9eA~94vYWEXR)>8GwRUak zX;159z{>h+^~vfp&p!9;Gu8FByg{^Y+ZEHapZBC$Pw9q-V*#tCIe%)7jgF3vnN?^5 z+@~Wcmtz6ZdPX<=LOkGl*5Jj_mquSU;Rzx>qbr;7fPVd0s6XQ?l@tNpD_n0^ZDrps zJ18Bj?vw4K)}}ol>6&V zkX~ODAmD2OLjAQS=zoefs44p{U^N7&UavPn(;OckXAPv2-t#9WCPd$^LV!Py0p$8~ z6a0lI9B_Q&#*MF(=~NJZV$-HguL?d4SjPaJcRHazo1hAy$r_Ar-u&9;&EuvmpJR?c zv1Q9Iw``fMr26-+ylV-S2rH1jOo1)2dm2 zumqn2T;1z7R{|KSM({HMu&a6rhn-8~s# z-IGqe14ut`DFIq0`@sPrp8;BmfMEX-ibvl|7~sD=wRM8^=dD_66Qu9N!)kzuCRpED z+e;?Mg*T~8(B_n6f~DY%1b-*-j{*4uC+0g7tXma37=NHvy)!{}%>0|vI{ABhh4y{I z-$3e*`)q>rPZf?&tKK~aM@EEXLFS_!DwU@yP09Un-)`<$;iOYf0Vxqs&@Rz`7cejl zrAn7$U)q(4{?5`28k@)zHAb&nl=@0vQ`5y+LTAvs&N%jKy*aZaj z(*1>T{gY=e+J3}SB%;2(6HLMH-~^NTnNR3VGQr?wu94q$#!sIAb;wVi|8>gWr@cXD zOn#TKV)MDI)o3*S(`X9H=du-rs@EI;_0;GtKuWi3SN8%kx?N^B1MXrk+Ylg-&t)bM z5PwLQGSfc5R^v)!5TJB_Uv`24rThD`69fq5bD0SOgz~w}!~y=#6O_+o zCKu2Y0HJ&?Gc_szAdt^xrp8VgumOB=&P>n*y9?0$GS2{ad+ItstE&OsyVJTE(78LU zn*sNf2{t%&7oc;0AEnyOO|Y9ju)6p6H8Jen9AFpmQ9y>*$nke@b`xLDdGciq5vA^? a%l#jc!%2!XFfZEx0000 Date: Tue, 5 May 2020 11:56:29 +0100 Subject: [PATCH 18/23] minor adjustments, stand by --- maps/yw/cryogaia-05-main.dmm | 3963 ++++++++++++++++++---------------- maps/yw/cryogaia_shuttles.dm | 2 +- 2 files changed, 2138 insertions(+), 1827 deletions(-) diff --git a/maps/yw/cryogaia-05-main.dmm b/maps/yw/cryogaia-05-main.dmm index efe9dbd507..4e54cbd369 100644 --- a/maps/yw/cryogaia-05-main.dmm +++ b/maps/yw/cryogaia-05-main.dmm @@ -13673,7 +13673,6 @@ /turf/simulated/floor/plating, /area/maintenance/substation/civilian) "azE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, /obj/effect/shuttle_landmark/premade/security/cryogaia, /obj/effect/overmap/visitable/ship/landable/security, /obj/machinery/atmospherics/unary/vent_pump/high_volume{ @@ -13681,6 +13680,10 @@ frequency = 1380; id_tag = "secshuttle_docker_pump_out_internal" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + icon_state = "map-fuel"; + dir = 8 + }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) "azF" = ( @@ -17991,7 +17994,12 @@ frequency = 1380; icon_state = "door_locked"; id_tag = "secshuttle_door_ext"; - locked = 1 + locked = 1; + name = "Starboard Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + icon_state = "intact-fuel"; + dir = 8 }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) @@ -19126,9 +19134,20 @@ /area/security/lobby) "aKw" = ( /obj/structure/grille, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, /turf/simulated/floor/plating, /area/security/armoury) "aKx" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/wall, /area/security/armoury) "aKy" = ( @@ -20932,6 +20951,7 @@ c_tag = "Security Hangar East"; dir = 8 }, +/obj/effect/floor_decal/corner/red, /turf/simulated/floor/tiled/dark, /area/security/hangar) "aOj" = ( @@ -20954,6 +20974,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, +/obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark, /area/security/airlock) "aOl" = ( @@ -23246,7 +23267,17 @@ /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds) "aSn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, /turf/simulated/floor/tiled/dark, /area/security/airlock) "aSo" = ( @@ -23279,6 +23310,7 @@ layer = 3.3; pixel_x = 26 }, +/obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark, /area/security/airlock) "aSr" = ( @@ -23809,6 +23841,11 @@ icon_state = "4-8" }, /obj/effect/floor_decal/rust, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, /turf/simulated/floor/tiled/techmaint, /area/security/airlock) "aTt" = ( @@ -23928,6 +23965,11 @@ /area/security/tactical) "aTG" = ( /obj/structure/sign/warning/lethal_turrets, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/wall, /area/security/armoury) "aTH" = ( @@ -24049,6 +24091,11 @@ /area/security/brig) "aTO" = ( /obj/structure/grille, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/security/armoury) "aTP" = ( @@ -24409,9 +24456,6 @@ name = "Riot Armor" }, /obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 8 - }, /turf/simulated/floor/tiled/red, /area/security/armoury) "aUw" = ( @@ -24456,9 +24500,6 @@ name = "Riot Armor" }, /obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 4 - }, /obj/machinery/camera/network/security{ c_tag = "Armory North" }, @@ -25861,7 +25902,6 @@ pixel_y = 0 }, /obj/item/clothing/head/helmet/laserproof, -/obj/structure/window/reinforced, /obj/machinery/door/window/brigdoor/eastleft{ dir = 4 }, @@ -26484,9 +26524,6 @@ /area/security/briefing_room) "aXY" = ( /obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 1 - }, /obj/machinery/door/window/brigdoor/westright{ name = "Energy" }, @@ -27568,16 +27605,12 @@ name = "LETHALS"; req_access = list(1) }, -/obj/structure/window/reinforced{ - dir = 8 - }, /turf/simulated/floor/tiled/red, /area/security/armoury) "aZU" = ( /obj/structure/table/rack, /obj/item/weapon/storage/box/shotgunshells, /obj/item/weapon/storage/box/shotgunshells, -/obj/item/weapon/storage/box/shotgunammo, /obj/machinery/door/window/brigdoor/northright{ dir = 2; name = "LETHALS"; @@ -27586,6 +27619,9 @@ /obj/structure/window/reinforced{ dir = 4 }, +/obj/item/weapon/storage/box/shotgunammo, +/obj/item/weapon/storage/box/scattershot, +/obj/item/weapon/storage/box/scattershot, /turf/simulated/floor/tiled/red, /area/security/armoury) "aZV" = ( @@ -27929,6 +27965,11 @@ /turf/simulated/floor/tiled/dark, /area/security/armoury) "bau" = ( +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, /turf/simulated/floor/tiled/dark, /area/security/tactical) "bav" = ( @@ -28510,10 +28551,6 @@ /turf/simulated/wall, /area/security/security_processing) "bbC" = ( -/obj/machinery/camera/network/security{ - c_tag = "Warden"; - dir = 2 - }, /obj/machinery/newscaster/security_unit{ pixel_x = 0; pixel_y = 30 @@ -28532,10 +28569,6 @@ /area/security/detectives_office) "bbE" = ( /obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, /obj/item/ammo_magazine/m9mmt/rubber, /obj/item/ammo_magazine/m9mmt/rubber, /obj/item/ammo_magazine/m9mmt/rubber, @@ -29204,10 +29237,6 @@ /turf/simulated/floor/tiled/red, /area/security/armoury) "bcJ" = ( -/obj/structure/window/reinforced{ - dir = 2; - health = 1e+006 - }, /obj/machinery/door/window/brigdoor/northright{ dir = 4; name = "Non-lethals" @@ -29221,24 +29250,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/red, /area/security/armoury) -"bcK" = ( -/obj/structure/table/rack, -/obj/machinery/door/window/brigdoor/eastleft{ - dir = 1; - name = "Energy Firearms" - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/item/weapon/gun/energy/gun{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/gun/energy/gun, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/red, -/area/security/armoury) "bcL" = ( /obj/structure/table/rack, /obj/item/clothing/gloves/arm_guard/riot, @@ -29313,13 +29324,6 @@ /obj/machinery/door/window/brigdoor/southleft{ dir = 4 }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - health = 1e+006 - }, /obj/random/handgun/sec, /obj/random/handgun/sec, /obj/random/handgun/sec, @@ -29946,9 +29950,6 @@ /obj/item/ammo_magazine/m45/rubber, /obj/item/ammo_magazine/m45/rubber, /obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 8 - }, /obj/machinery/door/window/brigdoor/southright{ dir = 4 }, @@ -30017,26 +30018,23 @@ /turf/simulated/wall/r_wall, /area/security/detectives_office) "bdQ" = ( -/obj/structure/table/standard, -/obj/item/weapon/cell/device/weapon{ - pixel_x = 4; - pixel_y = 4 +/obj/structure/table/rack, +/obj/machinery/door/window/brigdoor/eastright{ + dir = 1; + name = "Energy Firearms" }, -/obj/item/weapon/cell/device/weapon{ - pixel_x = 2; +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/gun/energy/laser{ pixel_y = 2 }, -/obj/item/weapon/cell/device/weapon, -/obj/item/weapon/cell/device/weapon{ - pixel_x = -2; +/obj/item/weapon/gun/energy/laser{ pixel_y = -2 }, -/obj/machinery/recharger/wallcharger{ - dir = 1; - pixel_x = 4; - pixel_y = -30 - }, -/turf/simulated/floor/tiled/dark, +/turf/simulated/floor/tiled/red, /area/security/armoury) "bdR" = ( /obj/machinery/atmospherics/unary/vent_pump/on, @@ -31906,7 +31904,7 @@ /turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, /area/borealis2/outdoors/grounds) "bhm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, /turf/simulated/wall/rshull, /area/shuttle/security) "bhn" = ( @@ -32773,12 +32771,12 @@ /turf/simulated/floor/tiled/steel, /area/security/security_equiptment_storage) "biT" = ( -/obj/item/device/geiger/wall{ - dir = 4; - pixel_x = -30 +/obj/structure/table/bench/steel, +/obj/effect/floor_decal/corner/red{ + dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/security/airlock) +/area/security/hangar) "biU" = ( /obj/structure/grille, /obj/machinery/door/firedoor, @@ -33845,6 +33843,11 @@ }, /obj/effect/floor_decal/industrial/warning/dust, /obj/effect/floor_decal/rust, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/tiled/techmaint, /area/security/airlock) "bkx" = ( @@ -34524,7 +34527,8 @@ /turf/simulated/floor/tiled/dark, /area/security/tactical) "blI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + icon_state = "intact-fuel"; dir = 10 }, /turf/simulated/wall/rshull, @@ -38149,6 +38153,11 @@ req_access = newlist(); req_one_access = list(14,24) }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, /turf/simulated/floor/tiled, /area/engineering/workshop) "bsF" = ( @@ -38166,6 +38175,11 @@ d2 = 4; icon_state = "1-4" }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/tiled{ icon_state = "monotile" }, @@ -48526,24 +48540,27 @@ /turf/simulated/floor/tiled, /area/hallway/primary/aft) "bJX" = ( -/obj/structure/table/rack, -/obj/machinery/door/window/brigdoor/eastright{ - dir = 1; - name = "Energy Firearms" +/obj/structure/table/standard, +/obj/item/weapon/cell/device/weapon{ + pixel_x = 4; + pixel_y = 4 }, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/weapon/gun/energy/laser{ +/obj/item/weapon/cell/device/weapon{ + pixel_x = 2; pixel_y = 2 }, -/obj/item/weapon/gun/energy/laser{ +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon{ + pixel_x = -2; pixel_y = -2 }, +/obj/machinery/recharger/wallcharger{ + dir = 1; + pixel_x = 4; + pixel_y = -30 + }, /obj/machinery/light, -/turf/simulated/floor/tiled/red, +/turf/simulated/floor/tiled/dark, /area/security/armoury) "bJY" = ( /turf/simulated/wall/r_wall, @@ -62340,24 +62357,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/medbay) -"ckz" = ( -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "secshuttle_sensor"; - master_tag = "expshuttle_docker"; - pixel_y = 28 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1380; - id_tag = "secshuttle_vent" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) "ckA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -62498,6 +62497,17 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) +"ckN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + icon_state = "intact-fuel"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1; + icon_state = "map" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) "ckO" = ( /obj/machinery/alarm{ dir = 4; @@ -62687,26 +62697,9 @@ }, /turf/simulated/floor/tiled/red, /area/security/outpost) -"cpE" = ( -/obj/structure/table/standard, -/obj/item/device/flashlight, -/obj/item/device/radio, -/turf/simulated/floor/tiled/dark, -/area/security/briefing_room) -"cGh" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1380; - id_tag = "secshuttle_vent" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"cKf" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) +"czP" = ( +/turf/simulated/wall/r_wall, +/area/security/hangar) "cLv" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -62717,56 +62710,50 @@ /obj/machinery/suit_cycler/medical, /turf/simulated/floor/tiled, /area/cryogaia/station/explorer_prep) -"cRc" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/table/woodentable, -/obj/machinery/microwave, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"diF" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/railing{ +"cYO" = ( +/turf/simulated/floor/tiled/dark, +/area/security/briefing_room) +"cZX" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/donkpockets, +/turf/simulated/floor/tiled/dark, +/area/security/briefing_room) +"dmp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + icon_state = "map-fuel"; dir = 1 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"diO" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "secshuttle_vent" - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - cycle_to_external_air = 1; - frequency = 1380; - id_tag = "secshuttle_docker"; - pixel_y = 26; - req_one_access = list(1); - tag_airpump = "secshuttle_vent"; - tag_chamber_sensor = "secshuttle_sensor"; - tag_exterior_door = "secshuttle_door_ext"; - tag_exterior_sensor = "secshuttle_exterior_sensor"; - tag_interior_door = "secshuttle_door_int" - }, -/turf/simulated/floor/tiled/techfloor, +/turf/simulated/wall/rshull, /area/shuttle/security) -"djI" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +"dpN" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"dvf" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel, +/area/maintenance/medbay) +"dCX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -62775,128 +62762,59 @@ }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"dnx" = ( -/obj/effect/floor_decal/snow/floor/edges, -/obj/structure/catwalk, -/obj/structure/railing{ - dir = 2; - flags = null - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"dnB" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/industrial/danger, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"dpq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"dqa" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, -/area/security/hangar) -"dss" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"dBj" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/steel, -/area/security/briefing_room) "dDd" = ( /obj/structure/sign/directions/science, /turf/simulated/wall/r_wall, /area/hallway/primary/central_one) -"dVe" = ( -/obj/effect/floor_decal/snow/floor/edges{ +"dLC" = ( +/obj/machinery/light, +/obj/machinery/computer/ship/engines{ dir = 8 }, -/obj/effect/floor_decal/snow/floor/edges, -/obj/structure/cable/heavyduty{ - icon_state = "1-4" +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"ecm" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"esC" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"esO" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/obj/machinery/button/remote/airlock{ - desiredstate = 1; - id = "secsh_compartment"; - name = "Compartment Access"; - pixel_x = 6; - pixel_y = -24; - req_one_access = list(51,67); - specialfunctions = 4 - }, -/obj/machinery/button/remote/airlock{ - desiredstate = 1; - id = "secsh_cabin"; - name = "Cabin Lockdown"; - pixel_x = -6; - pixel_y = -24; - req_one_access = list(51,67); - specialfunctions = 4 - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "secshut_cabinshut"; - name = "Cabin Blast Shutters"; - pixel_x = 0; - pixel_y = -36; - req_access = list(51,67) - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/obj/structure/cable{ + icon_state = "0-8" }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) +"dQJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"dZv" = ( +/obj/machinery/light, +/obj/machinery/power/smes/buildable/point_of_interest, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"ebv" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/wall/r_wall, +/area/security/armoury) +"erI" = ( +/obj/structure/closet/crate, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/storage/box/cups, +/turf/simulated/floor/tiled/dark, +/area/security/briefing_room) "eti" = ( /obj/structure/sign/directions/bridge{ icon_state = "direction_bridge"; @@ -62912,104 +62830,325 @@ }, /turf/simulated/floor/tiled, /area/cryogaia/station/explorer_prep) -"eJf" = ( -/obj/effect/floor_decal/snow/floor/edges{ +"eyE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"eFW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light/small{ dir = 8 }, -/obj/structure/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"eNQ" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight, +/obj/item/device/radio, +/turf/simulated/floor/tiled/dark, +/area/security/briefing_room) "eQA" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/sign/directions/science, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"eRz" = ( -/obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/briefing_room) -"eWi" = ( -/obj/effect/floor_decal/snow/floor/edges3{ - icon_state = "gravsnow_edges"; - dir = 1 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"eZR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"fpY" = ( -/obj/structure/table/standard, -/obj/structure/extinguisher_cabinet{ - pixel_y = -26 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"fqd" = ( +"eVH" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden, /obj/structure/handrail, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"fus" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 6 +"eZz" = ( +/obj/machinery/pointdefense_control{ + id_tag = "secshuttle_pd"; + name = "shuttle laser FCS" }, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"fxF" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security Hangar Emergency Route"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"fBS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"fCs" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/closet/secure_closet{ - name = "confiscated goods storage"; - req_one_access = list(1) +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) +"fcU" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "secshuttle_docker_pump_out_internal" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"fln" = ( +/obj/machinery/shipsensors{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/security) +"fnX" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"fsq" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"fwk" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + icon_state = "borderfloorcorner_black"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + icon_state = "dangercorner"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"fCD" = ( +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "secpilotoffice"; + name = "Office Shutters"; + pixel_x = -26; + pixel_y = -24; + req_access = list(51) + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"fEK" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 4 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"fHx" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"fHC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"fIr" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security Hangar South"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) "fIL" = ( /obj/structure/sign/directions/science, /turf/simulated/wall, /area/storage/primary) -"fKL" = ( +"gaV" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/industrial/danger, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"gcS" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "secshuttle_door_ext"; + locked = 1; + name = "Rear Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + icon_state = "intact-fuel"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"geR" = ( +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"gfy" = ( +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar"; + name = "Medbay" + }, +/turf/simulated/wall/r_wall, +/area/security/hangar) +"gvW" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"gwb" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/r_wall, +/area/engineering/workshop) +"gBJ" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 1 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"gNS" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "secshuttle_vent" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"gOn" = ( +/obj/structure/table/standard, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/glass, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"gQv" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/machinery/door/window/brigdoor/southright{ + req_one_access = list(1) + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/suit/space/void/security/alt, +/obj/item/clothing/head/helmet/space/void/security/alt, +/obj/item/device/gps/security, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"gQF" = ( +/obj/machinery/suit_cycler/captain, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"gVi" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/vending/coffee, +/obj/item/device/radio/intercom{ + broadcasting = 0; + dir = 2; + frequency = 1475; + icon_state = "intercom"; + listening = 1; + name = "Station Intercom (Security)"; + pixel_x = 0; + pixel_y = -21 + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"gVt" = ( +/obj/effect/floor_decal/snow/floor/edges, +/obj/structure/catwalk, +/obj/structure/railing{ + dir = 2; + flags = null + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"hjV" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"hjZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/table/woodentable, @@ -63018,118 +63157,47 @@ layer = 3.3; pixel_x = 26 }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"fLb" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 1 - }, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"gtF" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"gxe" = ( -/obj/structure/closet/crate, -/obj/item/weapon/book/manual/security_space_law, -/obj/item/weapon/storage/box/cups, -/turf/simulated/floor/tiled/dark, -/area/security/briefing_room) -"gxA" = ( -/turf/simulated/floor/reinforced, -/area/security/hangar) -"gOn" = ( -/obj/structure/table/standard, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/glass, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"gQF" = ( -/obj/machinery/suit_cycler/captain, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"hoo" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "secshuttle_docker_pump_out_external" - }, -/obj/effect/floor_decal/industrial/warning{ +/obj/effect/floor_decal/corner/red{ dir = 6 }, -/turf/simulated/floor/tiled/techfloor, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"hpq" = ( +/turf/simulated/wall/rshull, /area/shuttle/security) -"hwb" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/industrial/danger, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security Hangar North" - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"hNJ" = ( +"hsS" = ( /obj/machinery/power/pointdefense{ id_tag = "secshuttle_pd" }, /turf/simulated/floor/plating, /area/shuttle/security) -"hRF" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "secshuttle_dock"; - pixel_x = 32; - req_one_access = list(19,43,67) +"hub" = ( +/obj/machinery/sleeper{ + dir = 8 }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"hJi" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"hRF" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; pixel_x = 0 }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, /turf/simulated/floor/tiled/dark, /area/security/hangar) -"hSF" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 1 - }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0 - }, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"hUk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"idd" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "secpilotoffice"; - layer = 3.1; - name = "Office Shutters" - }, -/obj/structure/table/marble, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.7 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"inU" = ( +"hSN" = ( /obj/machinery/airlock_sensor/airlock_exterior/shuttle{ dir = 10; frequency = 1380; @@ -63146,40 +63214,48 @@ frequency = 1380; icon_state = "door_locked"; id_tag = "secshuttle_door_ext"; - locked = 1 + locked = 1; + name = "Port Airlock" }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"ixx" = ( -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "secpilotoffice"; - name = "Office Shutters"; - pixel_x = -26; - pixel_y = -24; - req_access = list(51) +"hSY" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"izJ" = ( -/obj/machinery/atmospherics/unary/engine{ - icon_state = "nozzle"; +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"hVx" = ( +/obj/item/device/geiger/wall{ + dir = 4; + pixel_x = -30 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/security/airlock) +"hXN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/railing{ dir = 1 }, -/turf/simulated/floor/reinforced, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/security) -"iDg" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 +/obj/effect/floor_decal/industrial/warning{ + dir = 1 }, -/obj/structure/catwalk, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"ipx" = ( +/obj/structure/closet/wardrobe/tactical, +/obj/machinery/camera/motion/security{ + c_tag = "Armory Tactical (Motion)" }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) +/turf/simulated/floor/tiled/dark, +/area/security/tactical) "iGb" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -63196,50 +63272,196 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/cryogaia/station/explorer_prep) -"iGf" = ( -/obj/machinery/door/airlock/multi_tile/metal{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "secshuttle_door_ext"; - locked = 1 +"iGK" = ( +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 +/obj/structure/closet/crate/secure/phoron{ + desc = "A secure crate that contains spare canisters of phoron fuel, used by modern shuttles."; + name = "spare fuel crate"; + req_one_access = list(51,67) }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"iGS" = ( -/obj/structure/table/bench/steel, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"iId" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4; - icon_state = "shuttle_chair" - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - icon_state = "extinguisher_closed"; - pixel_x = -30 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"iVr" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"iXV" = ( -/obj/machinery/shipsensors{ +/obj/item/weapon/tank/phoron, +/obj/item/weapon/tank/phoron, +/obj/effect/floor_decal/corner/red/full{ dir = 1 }, -/turf/simulated/floor/plating, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"iGO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel, +/area/maintenance/medbay) +"iMf" = ( +/obj/structure/catwalk, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 1 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"iMQ" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1380; + id_tag = "secsh_cabin"; + name = "Cabin Access"; + req_one_access = list(51) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"jci" = ( +"iVd" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 1 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 4 + }, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"jea" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/voidcraft{ + frequency = 1380; + id_tag = "secsh_compartment"; + name = "Passenger Compartment"; + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"jAj" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 1 + }, +/obj/effect/floor_decal/snow/floor/edges, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 2; + flags = null + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"jLC" = ( +/obj/machinery/sleep_console, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"jNH" = ( +/obj/machinery/door/airlock/maintenance/sec{ + name = "Emergency Medical Access"; + req_one_access = list(1,52) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/steel, +/area/security/hangar) +"jPi" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, /turf/simulated/floor/tiled/dark, -/area/security/briefing_room) -"jdv" = ( +/area/security/hangar) +"jQM" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1380; + id_tag = "secshuttle_door_int"; + name = "Airlock Access"; + req_one_access = list(1) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"jRG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/r_wall, +/area/security/armoury) +"jWp" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"jXl" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"knc" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/industrial/danger, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"koz" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "secshuttle_dock"; + pixel_x = 32; + req_one_access = list(19,43,67) + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"kEx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -63251,102 +63473,67 @@ c_tag = "Pilot's Office"; dir = 8 }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"jrj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1; - icon_state = "map" +/obj/item/weapon/paper{ + info = "So, you're part of the new Security Pilot detail huh? Welcome aboard. Keep this paper handy, but make sure you leave it where other Pilot-Officers can see. Some words of advice; always land on the port side of whatever you're coming at because the gun coverage is better on the interceptor's starboard side, no thanks that sensor antenna. Plus that starboard side is where your hookup line to the local fuel depot is, whenever they finish towing that thing into position. Don't try to land her in the expedition hangar though! The final approach software's dumb as a box of rocks and it miscalculates where you're supposed to land. See you starside! -K.H."; + name = "Message to New Security Pilots" }, -/obj/structure/handrail, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"jvd" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4; - icon_state = "shuttle_chair" - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/obj/structure/closet/walllocker/emerglocker/west, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"jvP" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/southleft{ - req_one_access = list(1) - }, -/obj/item/weapon/tank/jetpack/oxygen, -/obj/item/clothing/suit/space/void/security/alt, -/obj/item/clothing/head/helmet/space/void/security/alt, -/obj/item/device/gps/security, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"jFo" = ( -/obj/structure/catwalk, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/railing{ - dir = 2; - flags = null - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"jHI" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"jLo" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"jMm" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"jOC" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"jSb" = ( -/obj/machinery/computer/ship/sensors{ - dir = 4 - }, -/obj/machinery/power/terminal, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"kfm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ +/obj/effect/floor_decal/corner/red{ dir = 6 }, -/turf/simulated/floor/tiled/techfloor, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"kOa" = ( +/obj/structure/table/rack/shelf, +/obj/item/clothing/shoes/magboots, +/obj/item/device/suit_cooling_unit, +/obj/item/weapon/tank/oxygen, +/obj/item/clothing/suit/space/void/medical, +/obj/item/clothing/head/helmet/space/void/medical, +/turf/simulated/floor/tiled, +/area/cryogaia/station/explorer_prep) +"lhB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/wall/rshull, /area/shuttle/security) -"kqg" = ( +"luH" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/borealis2/outdoors/grounds) +"lAq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/bridge) +"lKE" = ( +/obj/effect/floor_decal/snow/floor/edges3{ + icon_state = "gravsnow_edges"; + dir = 1 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"lNv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"lXR" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"lYP" = ( /obj/structure/bed/chair/shuttle{ dir = 8; icon_state = "shuttle_chair" @@ -63363,153 +63550,28 @@ }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"kCh" = ( +"lZI" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"kEZ" = ( -/obj/effect/floor_decal/borderfloorblack{ dir = 1 }, -/obj/effect/floor_decal/industrial/danger{ +/turf/simulated/floor/tiled/dark, +/area/security/airlock) +"mbE" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + icon_state = "borderfloorcorner_black"; dir = 1 }, +/obj/effect/floor_decal/industrial/danger/corner{ + icon_state = "dangercorner"; + dir = 8 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security Hangar South"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"kNl" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"kOa" = ( -/obj/structure/table/rack/shelf, -/obj/item/clothing/shoes/magboots, -/obj/item/device/suit_cooling_unit, -/obj/item/weapon/tank/oxygen, -/obj/item/clothing/suit/space/void/medical, -/obj/item/clothing/head/helmet/space/void/medical, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_prep) -"kUK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "secshuttle_docker_pump_out_internal" - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"kYd" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8; - icon_state = "shuttle_chair" - }, -/obj/structure/closet/medical_wall{ - pixel_x = 32; + dir = 9; pixel_y = 0 }, -/obj/item/weapon/storage/firstaid/o2, -/obj/item/weapon/storage/firstaid/regular, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"leq" = ( -/obj/effect/floor_decal/borderfloorblack/corner, -/obj/effect/floor_decal/industrial/danger/corner, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, /turf/simulated/floor/tiled/dark, /area/security/hangar) -"lAq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridge) -"lEf" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"lMt" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4; - icon_state = "shuttle_chair" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"lTW" = ( -/obj/machinery/computer/ship/helm, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"lXa" = ( -/turf/simulated/floor/tiled/steel, -/area/maintenance/medbay) -"lXU" = ( -/obj/item/device/geiger/wall{ - dir = 1; - pixel_y = -30 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/woodentable, -/obj/item/weapon/storage/box/donkpockets, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"mbr" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/donkpockets, -/turf/simulated/floor/tiled/dark, -/area/security/briefing_room) -"mcj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"mgR" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) "mjD" = ( /obj/machinery/photocopier, /turf/simulated/floor/tiled/dark, @@ -63521,29 +63583,22 @@ /obj/effect/floor_decal/snow/floor/edges, /turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, /area/borealis2/outdoors/grounds) -"mpu" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ - frequency = 1380; - id_tag = "secshuttle_door_int"; - req_one_access = list(1) +"mtD" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4; + icon_state = "shuttle_chair" }, -/obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"mpH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"myq" = ( +/obj/effect/floor_decal/borderfloorblack{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/industrial/danger{ dir = 4 }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) +/turf/simulated/floor/tiled/dark, +/area/security/hangar) "mBp" = ( /obj/structure/table/marble, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -63562,51 +63617,156 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"mOq" = ( +"mEv" = ( +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"mIU" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4; + icon_state = "shuttle_chair" + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"mOf" = ( /obj/structure/catwalk, /obj/structure/cable/heavyduty{ icon_state = "4-8" }, /obj/structure/railing{ - icon_state = "railing0"; - dir = 4 + dir = 8 }, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds/power) -"mSo" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 +"mOp" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/security/hangar) +"mSb" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + icon_state = "map-fuel"; + dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"mWX" = ( +/obj/structure/catwalk, /obj/structure/cable/heavyduty{ icon_state = "1-2" }, /obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 + dir = 2; + flags = null }, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds/power) -"mYk" = ( +"mWZ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 1; + id = "secshut_cabinshut"; + layer = 3.1; + name = "Cabin Shutters" + }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"nfW" = ( -/turf/simulated/wall/rshull, +"ncl" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/corner/red/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"ndP" = ( +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "secshuttle_sensor"; + master_tag = "expshuttle_docker"; + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "secshuttle_vent" + }, +/turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"nxj" = ( -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"nzw" = ( -/obj/structure/railing, -/obj/effect/floor_decal/industrial/warning, +"nkg" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1; + name = "co-pilot's chair" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"nso" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 8 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security Hangar Emergency Route"; + dir = 1 + }, /turf/simulated/floor/plating, /area/maintenance/medbay) +"nIw" = ( +/obj/structure/grille, +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/security/armoury) +"nJd" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "secshut_cabinshut"; + layer = 3.1; + name = "Cabin Shutters" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"nKa" = ( +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) "nKF" = ( /obj/structure/sign/directions/security{ icon_state = "direction_sec"; @@ -63614,172 +63774,136 @@ }, /turf/simulated/wall/r_wall, /area/hallway/primary/central_one) -"nNv" = ( +"nLJ" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"nOn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"nXz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"nYk" = ( -/obj/machinery/newscaster/security_unit{ - pixel_x = -30 +/obj/effect/floor_decal/corner/red{ + dir = 9 }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"ocK" = ( -/obj/machinery/computer/shuttle_control/explore/security, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"ogI" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"okK" = ( -/obj/machinery/light, -/obj/machinery/power/smes/buildable/point_of_interest, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"otz" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/railing{ +"nQu" = ( +/obj/machinery/suit_cycler/security, +/obj/effect/floor_decal/corner/red/full{ dir = 1 }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"oiS" = ( /obj/effect/floor_decal/industrial/warning{ - dir = 1 + dir = 10 }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "secshuttle_docker_pump_out_external" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"osn" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/industrial/danger, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security Hangar North" + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) "ovS" = ( /obj/machinery/door/airlock/glass_external/freezable{ req_access = list(48) }, /turf/simulated/floor/plating, /area/borealis2/outdoors/grounds/traderpad) -"oCF" = ( -/obj/effect/floor_decal/industrial/danger{ - dir = 4 +"oQh" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/voidcraft{ - frequency = 1380; - id_tag = "secsh_compartment"; - req_one_access = list(1) +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/steel, +/area/security/briefing_room) "oRX" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/sign/directions/cargo, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"oSg" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ +"oTu" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/structure/window/reinforced{ dir = 4; - frequency = 1380; - id_tag = "secshuttle_docker_pump_out_internal" + health = 1e+006 }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"oVm" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/obj/machinery/door/window/brigdoor/southright{ + req_one_access = list(1) }, -/obj/effect/landmark/start{ - name = "Security Pilot" - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) +/obj/item/device/gps/security, +/turf/simulated/floor/tiled/dark, +/area/security/airlock) "pcP" = ( /obj/structure/sign/directions/engineering, /turf/simulated/wall/r_wall, /area/hallway/primary/central_one) -"pdr" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 +"pgL" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"psH" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/structure/catwalk, /obj/structure/railing{ - icon_state = "railing0"; dir = 1 }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"pdw" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/obj/structure/railing{ - dir = 1 - }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"pgg" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor/tiled{ - icon_state = "monotile" - }, -/area/engineering/workshop) -"psb" = ( +"puQ" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"psl" = ( -/obj/machinery/pointdefense_control{ - id_tag = "secshuttle_pd"; - name = "shuttle laser FCS" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"psR" = ( -/obj/machinery/light, -/obj/machinery/computer/ship/engines{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) +/turf/simulated/wall, +/area/borealis2/outdoors/grounds) "pxX" = ( /obj/structure/cable/green{ d1 = 4; @@ -63806,7 +63930,41 @@ }, /turf/simulated/floor/tiled/steel, /area/security/hallway) -"pAK" = ( +"pzJ" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 4 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"pEH" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"pFr" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"pKD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"pLE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 @@ -63822,169 +63980,113 @@ }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"pDu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" - }, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"pJz" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, -/area/borealis2/outdoors/grounds) -"pYH" = ( -/turf/simulated/wall/r_wall, -/area/security/hangar) -"qeu" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "secpilotoffice"; - layer = 3.1; - name = "Office Shutters" - }, -/obj/structure/table/marble, -/obj/machinery/door/window/brigdoor/westleft{ - req_access = list(51) - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"qfY" = ( -/obj/structure/sign/directions/security, -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_one) -"qlk" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8; - icon_state = "shuttle_chair" - }, +"pOL" = ( /obj/machinery/light{ dir = 4; - icon_state = "tube1" + icon_state = "tube1"; + pixel_x = 0 }, -/obj/structure/closet/walllocker/emerglocker/east, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"qAM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "secshut_cabinshut"; - layer = 3.1; - name = "Cabin Shutters" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"qTM" = ( -/obj/structure/sign/redcross{ - desc = "The Star of Life, a symbol of Medical Aid."; - icon_state = "lifestar"; - name = "Medbay" - }, -/turf/simulated/wall/r_wall, -/area/security/hangar) -"raV" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ +/obj/machinery/power/apc{ dir = 2; - flags = null + name = "south bump"; + pixel_y = -28 }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"reM" = ( -/obj/machinery/suit_cycler/security, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"reY" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security Voidsuits"; - dir = 8 +/obj/structure/cable/green, +/obj/effect/floor_decal/corner/red{ + dir = 6 }, /turf/simulated/floor/tiled/dark, -/area/security/airlock) -"rgH" = ( -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"rqj" = ( +/area/security/hangar) +"pRu" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"pUc" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/secure_closet{ + name = "confiscated goods storage"; + req_one_access = list(1) + }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"rCG" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" +"qdr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + icon_state = "intact-fuel"; + dir = 6 + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"qfy" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 }, /turf/simulated/floor/tiled/dark, /area/security/hangar) -"rMU" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 +"qfY" = ( +/obj/structure/sign/directions/security, +/turf/simulated/wall/r_wall, +/area/hallway/primary/central_one) +"qmg" = ( +/obj/structure/cable{ + icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"rQm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 +"qtY" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/structure/window/reinforced{ + dir = 8 }, +/obj/machinery/door/window/brigdoor/southleft{ + req_one_access = list(1) + }, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/suit/space/void/security/alt, +/obj/item/clothing/head/helmet/space/void/security/alt, +/obj/item/device/gps/security, /turf/simulated/floor/tiled/steel, -/area/maintenance/medbay) -"rWx" = ( -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/structure/railing{ +/area/security/pilotroom) +"qEm" = ( +/obj/effect/floor_decal/industrial/warning/dust{ dir = 1 }, /turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"sbI" = ( +/area/borealis2/outdoors/grounds) +"qZz" = ( +/obj/machinery/atmospherics/unary/engine{ + icon_state = "nozzle"; + dir = 1 + }, +/turf/simulated/floor/reinforced, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/security) +"rfw" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"rnh" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -64000,8 +64102,91 @@ d2 = 8; icon_state = "2-8" }, +/obj/effect/floor_decal/corner/red/full{ + dir = 4 + }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) +"rpz" = ( +/obj/machinery/newscaster/security_unit{ + pixel_x = -30 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"rsy" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "secpilotoffice"; + layer = 3.1; + name = "Office Shutters" + }, +/obj/structure/table/marble, +/obj/machinery/door/window/brigdoor/westleft{ + req_access = list(51) + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"ruW" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + icon_state = "map-fuel"; + dir = 1 + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"rxV" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/steel, +/area/maintenance/medbay) +"rLZ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/tiled{ + icon_state = "monotile" + }, +/area/engineering/workshop) +"rQv" = ( +/obj/machinery/computer/ship/sensors{ + dir = 4 + }, +/obj/machinery/power/terminal, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"sao" = ( +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"scv" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/obj/effect/floor_decal/snow/floor/edges, +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) "sdy" = ( /obj/structure/table/rack, /obj/machinery/door/window/brigdoor/northright{ @@ -64024,45 +64209,7 @@ /obj/item/clothing/head/helmet/space/void/captain, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"suL" = ( -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"sCb" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - icon_state = "borderfloorcorner_black"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger/corner{ - icon_state = "dangercorner"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"sEC" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"tbF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/sign/directions/engineering, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"tcH" = ( +"srp" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -64072,6 +64219,89 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/steel, /area/security/briefing_room) +"ssz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/maintenance/medbay) +"sFD" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8; + icon_state = "shuttle_chair" + }, +/obj/structure/closet/medical_wall{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/storage/firstaid/regular, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"sPM" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/wall/r_wall, +/area/security/armoury) +"sTs" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "secshuttle_vent" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"sTy" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"sUn" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/red/full, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"sWe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"tbF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/directions/engineering, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"tdv" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) "tdL" = ( /obj/structure/cable/green{ d1 = 4; @@ -64086,155 +64316,58 @@ }, /turf/simulated/wall/r_wall, /area/security/pilotroom) -"tey" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/maintenance/medbay) -"tfz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 1; - id = "secshut_cabinshut"; - layer = 3.1; - name = "Cabin Shutters" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"tgg" = ( -/obj/machinery/sleep_console, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"tor" = ( -/obj/effect/floor_decal/borderfloorblack{ +"tjT" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + icon_state = "borderfloorcorner_black"; dir = 4 }, -/obj/effect/floor_decal/industrial/danger{ +/obj/effect/floor_decal/industrial/danger/corner{ + icon_state = "dangercorner"; dir = 4 }, /obj/machinery/light{ - dir = 8 + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 }, /turf/simulated/floor/tiled/dark, /area/security/hangar) -"tBv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 +"tlE" = ( +/turf/simulated/floor/reinforced, +/area/security/hangar) +"trf" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 }, -/obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"tVV" = ( -/obj/structure/catwalk, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ +"tsl" = ( +/obj/structure/bed/chair/office/dark{ dir = 8 }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"tXW" = ( -/obj/structure/catwalk, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" +/obj/effect/landmark/start{ + name = "Security Pilot" }, -/obj/structure/railing{ - icon_state = "railing0"; +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"txj" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"ucU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"ugG" = ( -/obj/effect/shuttle_landmark/automatic, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"uhU" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 +/obj/structure/railing{ + dir = 1 }, -/obj/item/weapon/tank/jetpack/oxygen, -/obj/item/clothing/suit/space/void/security, -/obj/item/clothing/head/helmet/space/void/security, -/obj/machinery/door/window/brigdoor/southright{ - req_one_access = list(1) - }, -/obj/item/device/gps/security, -/turf/simulated/floor/tiled/dark, -/area/security/airlock) -"unZ" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/dark, -/area/security/airlock) -"uyz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/vending/coffee, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - frequency = 1475; - icon_state = "intercom"; - listening = 1; - name = "Station Intercom (Security)"; - pixel_x = 0; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"uyG" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"uJW" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"uUw" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/sleep_console, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"uXH" = ( +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"tDR" = ( /obj/effect/floor_decal/snow/floor/edges{ dir = 4 }, @@ -64257,19 +64390,154 @@ }, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds/power) -"uZO" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ - frequency = 1380; - id_tag = "secsh_cabin"; - req_one_access = list(51,67) +"tRk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"tUv" = ( +/obj/structure/table/standard, +/obj/structure/extinguisher_cabinet{ + pixel_y = -26 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"vmP" = ( +"ugG" = ( +/obj/effect/shuttle_landmark/automatic, +/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, +/area/borealis2/outdoors/grounds) +"ukd" = ( +/obj/machinery/light, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"vsa" = ( +"unu" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4; + icon_state = "shuttle_chair" + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/structure/closet/walllocker/emerglocker/west, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"uxd" = ( +/obj/structure/grille, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/security/armoury) +"uAA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/wall, +/area/security/armoury) +"uAH" = ( +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/sleep_console, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"uEL" = ( +/obj/item/device/geiger/wall{ + dir = 1; + pixel_y = -30 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/donkpockets, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"uNF" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1; + name = "pilot's chair" + }, +/obj/machinery/button/remote/airlock{ + desiredstate = 1; + id = "secsh_compartment"; + name = "Compartment Access"; + pixel_x = 6; + pixel_y = -24; + req_one_access = list(51,67); + specialfunctions = 4 + }, +/obj/machinery/button/remote/airlock{ + desiredstate = 1; + id = "secsh_cabin"; + name = "Cabin Lockdown"; + pixel_x = -6; + pixel_y = -24; + req_one_access = list(51,67); + specialfunctions = 4 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "secshut_cabinshut"; + name = "Cabin Blast Shutters"; + pixel_x = 0; + pixel_y = -36; + req_access = newlist(); + req_one_access = list(51,67) + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"uXJ" = ( +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/briefing_room) +"vde" = ( +/turf/simulated/floor/tiled/steel, +/area/maintenance/medbay) +"vnp" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -64277,104 +64545,153 @@ }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"vCc" = ( +"vpq" = ( +/obj/machinery/computer/shuttle_control/explore/security, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"vsI" = ( +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security Voidsuits"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/airlock) +"vte" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8; frequency = 1380; - id_tag = "secshuttle_vent" + id_tag = "secshuttle_docker_pump_out_internal" }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"vIP" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/machinery/door/window/brigdoor/southright{ - req_one_access = list(1) - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/weapon/tank/jetpack/oxygen, -/obj/item/clothing/suit/space/void/security/alt, -/obj/item/clothing/head/helmet/space/void/security/alt, -/obj/item/device/gps/security, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"vWG" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"vYG" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"wqT" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"wuI" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; pixel_x = 0 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"vBE" = ( +/obj/machinery/computer/ship/helm, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"vEz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1; + icon_state = "map" + }, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"vHH" = ( +/obj/structure/catwalk, +/obj/structure/cable/heavyduty{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"wKh" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; +/obj/structure/railing{ + icon_state = "railing0"; dir = 4 }, /turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"vQT" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "secshuttle_vent" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + cycle_to_external_air = 1; + frequency = 1380; + id_tag = "secshuttle_docker"; + pixel_y = 26; + req_one_access = list(1); + tag_airpump = "secshuttle_vent"; + tag_chamber_sensor = "secshuttle_sensor"; + tag_exterior_door = "secshuttle_door_ext"; + tag_exterior_sensor = "secshuttle_exterior_sensor"; + tag_interior_door = "secshuttle_door_int" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"vWy" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "secshuttle_docker_pump_out_external" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"vXI" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/wall/r_wall, +/area/security/armoury) +"waD" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/wall, /area/borealis2/outdoors/grounds) +"wfQ" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8; + icon_state = "shuttle_chair" + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/structure/closet/walllocker/emerglocker/east, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"wnX" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "secpilotoffice"; + layer = 3.1; + name = "Office Shutters" + }, +/obj/structure/table/marble, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.7 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"wzH" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/maintenance/medbay) +"wEz" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) "wLk" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -64383,46 +64700,91 @@ /obj/structure/window/reinforced/full, /turf/simulated/floor/plating, /area/borealis2/outdoors/grounds/traderpad) -"wRM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/maintenance/medbay) -"wSH" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/structure/closet/crate/secure/phoron{ - name = "spare fuel crate"; - req_one_access = list(51) - }, -/obj/item/weapon/tank/phoron, -/obj/item/weapon/tank/phoron, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"xaY" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ +"wNT" = ( +/obj/effect/floor_decal/corner/red{ dir = 4 }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"xsx" = ( +"wRL" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/wall/rshull, /area/shuttle/security) -"xsR" = ( +"wYb" = ( +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"wZQ" = ( +/obj/effect/floor_decal/borderfloorblack/corner, +/obj/effect/floor_decal/industrial/danger/corner, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"xfI" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"xix" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"xiY" = ( +/obj/structure/railing, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"xlw" = ( +/obj/structure/table/rack, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 1; + name = "Energy Firearms" + }, +/obj/item/weapon/gun/energy/gun{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/gun/energy/gun, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/red, +/area/security/armoury) +"xwe" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"xHo" = ( +/obj/structure/table/bench/steel, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"xSf" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ @@ -64438,22 +64800,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"xyb" = ( -/obj/structure/handrail{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"xzZ" = ( -/obj/machinery/door/airlock/maintenance/sec{ - name = "Emergency Medical Access"; - req_one_access = list(1,52) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel, -/area/security/hangar) -"xIz" = ( +"xWn" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 25 }, @@ -64464,47 +64811,11 @@ icon_state = "map-scrubbers"; dir = 4 }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"xVY" = ( -/obj/structure/closet/wardrobe/tactical, -/obj/machinery/camera/motion/security{ - c_tag = "Armory Tactical (Motion)" - }, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) -"xYD" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - icon_state = "borderfloorcorner_black"; - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger/corner{ - icon_state = "dangercorner"; - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"ydq" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - icon_state = "borderfloorcorner_black"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger/corner{ - icon_state = "dangercorner"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) "ylY" = ( /obj/machinery/door/airlock/glass_engineering{ name = "Engine Gas Storage" @@ -84740,8 +85051,8 @@ bNw aag aag aKZ -pdr -dnx +gBJ +gVt aag aag aag @@ -84988,41 +85299,41 @@ aag aag aag aag -rWx -uXH -mSo -mSo -tXW -jFo -mSo -mSo -mSo -mSo -mSo -mSo -mSo -mSo -mSo -mSo -mSo -mSo -mSo -mSo -mSo -mSo -mSo -mSo -mSo -mSo -mSo -mSo -mSo -mSo -mSo -mSo -mSo -mSo -dVe +iVd +tDR +fEK +fEK +iMf +mWX +fEK +fEK +fEK +fEK +fEK +fEK +fEK +fEK +fEK +fEK +fEK +fEK +fEK +fEK +fEK +fEK +fEK +fEK +fEK +fEK +fEK +fEK +fEK +fEK +fEK +fEK +fEK +fEK +scv aag aag aag @@ -85244,8 +85555,8 @@ aag aag aag aag -pdr -dnx +gBJ +gVt aKZ aag aag @@ -85274,7 +85585,7 @@ aag aag aag aag -raV +jAj aag aag aag @@ -85526,7 +85837,7 @@ aag aag aag aag -raV +jAj aag aag aag @@ -85778,7 +86089,7 @@ aag aag aag aag -raV +jAj aag aag aaY @@ -86030,7 +86341,7 @@ aag aag aag aag -raV +jAj aag aag btM @@ -86282,7 +86593,7 @@ aag aag aag aag -raV +jAj aag aag btM @@ -86534,7 +86845,7 @@ aag aag aag aag -raV +jAj aag aag btM @@ -86756,7 +87067,7 @@ abd abd abd abd -eWi +lKE abk aag aag @@ -86786,7 +87097,7 @@ aag aag aag aag -raV +jAj aag bsy btM @@ -87038,7 +87349,7 @@ aag aag aag aag -raV +jAj aag aag btM @@ -87290,7 +87601,7 @@ aag aag aag aag -raV +jAj aag aag btM @@ -87542,7 +87853,7 @@ aag aag aag aag -raV +jAj aag aag btM @@ -87794,7 +88105,7 @@ aag aag aag aag -raV +jAj aag aag btM @@ -88045,9 +88356,9 @@ aLQ aLQ aLQ aLQ -eJf -tVV -eJf +nLJ +mOf +nLJ aLQ buV byP @@ -88297,9 +88608,9 @@ aQf aQf aQf aQf -iDg -mOq -iDg +fnX +vHH +fnX aQf aaj abk @@ -88550,7 +88861,7 @@ aag aag aag aag -raV +jAj aKZ aag aLR @@ -88762,25 +89073,25 @@ aag aag aag aag -dqa -pYH -pYH -pYH -pYH -pYH -pYH -pYH -pYH -pYH -pYH -pYH -pYH -pYH -pYH -pYH -pYH -pYH -dqa +mOp +czP +czP +czP +czP +czP +czP +czP +czP +czP +czP +czP +czP +czP +czP +czP +czP +czP +mOp aag aaN aag @@ -88802,7 +89113,7 @@ aag aag aag aag -raV +jAj aag aag aLR @@ -89014,25 +89325,25 @@ aag aag aag aag -pYH -leq -uyG -uyG -uyG -uyG -uyG -uyG -uyG -tor -uyG -uyG -uyG -uyG -uyG -uyG -uyG -xYD -pYH +czP +wZQ +myq +myq +myq +myq +myq +myq +myq +qfy +myq +myq +myq +myq +myq +myq +myq +tjT +czP aag aag aag @@ -89266,29 +89577,29 @@ aag aag aag aag -pYH -dnB -gxA -gxA -gxA -gxA -gxA -gxA -gxA -hNJ -nfW -nfW -nfW -nfW -inU -fus -izJ -wqT -pYH +czP +gaV +tlE +tlE +tlE +tlE +tlE +tlE +tlE +hsS +hpq +hpq +hpq +hpq +hSN +qdr +qZz +xwe +czP aag aag aag -vYG +sTy aHN bbg bbg @@ -89518,25 +89829,25 @@ aag aag aag aag -pYH -dnB -iXV -nfW -xsR -xsR -nfW -nfW -nfW -nfW -nfW +czP +gaV +fln +hpq +xSf +xSf +hpq +hpq +hpq +hpq +hpq aZQ -mcj -ckz -cGh -fLb -izJ -wqT -pYH +dQJ +ndP +gNS +dmp +qZz +xwe +czP aag aag aag @@ -89770,25 +90081,25 @@ aag aag aag aag -pYH -dnB -nfW -nfW -jSb -okK -nfW -iVr -iId -jvd -lMt -iVr -pDu -fqd -dss -hSF -izJ -wqT -pYH +czP +gaV +hpq +hpq +rQv +dZv +hpq +hub +mIU +unu +mtD +hub +lhB +eVH +pKD +ruW +qZz +xwe +czP aag aag aag @@ -90022,25 +90333,25 @@ aag aag aag aag -pYH -dnB -tfz -lTW -esO -fpY -xsx -uUw -rqj -rqj -hUk -tgg -nfW -diO -vCc -iGf -kCh -wqT -pYH +czP +gaV +mWZ +vBE +uNF +tUv +pRu +uAH +hSY +hSY +pFr +jLC +hpq +vQT +sTs +gcS +oiS +xwe +czP aag aag aag @@ -90274,25 +90585,25 @@ aag aag aag aag -pYH -hwb -tfz -ocK -jOC -gtF -uZO -mYk -mYk -mYk -vsa -mYk -mpu -oSg -kfm -tBv -hoo -kEZ -pYH +czP +osn +mWZ +vpq +nkg +qmg +iMQ +sao +sao +sao +vnp +sao +jQM +fcU +fcU +ckN +vWy +fIr +czP aag aag aag @@ -90300,16 +90611,16 @@ aHa aaj aaj aab -wKh -wKh -wKh -wKh -wKh -wKh -wKh -wKh -wKh -wKh +pzJ +pzJ +pzJ +pzJ +pzJ +pzJ +pzJ +pzJ +pzJ +pzJ byJ aHR aSm @@ -90526,32 +90837,32 @@ aag aag aag aag -pYH -dnB -nfW -nfW -psl -psR -nfW -rMU -kYd -qlk -kqg -fCs -nfW -jrj -xyb -hSF -izJ -wqT -pYH +czP +gaV +hpq +hpq +eZz +dLC +hpq +trf +sFD +wfQ +lYP +pUc +hpq +vEz +mEv +mSb +qZz +xwe +czP aag aaN aag aHa aaj aaj -aab +waD aTO aTO aTO @@ -90561,8 +90872,8 @@ aTO aTO aTO aTO -aTO -ogI +nIw +qEm aaj aSm aag @@ -90778,32 +91089,32 @@ aag aag aag aag -pYH -dnB -hNJ -nfW -qAM -qAM -nfW -oCF -nfW -nfW -psb +czP +gaV +hsS +hpq +nJd +nJd +hpq +jea +hpq +hpq +wRL bbc bhm -kUK +vte azE -jMm -izJ -wqT -pYH +xfI +qZz +xwe +czP aag aag aag aHa aaj aRg -aab +puQ aUp aUp aUp @@ -90813,8 +91124,8 @@ aUp aUp aUp aUp -aTO -ogI +uxd +qEm aaj aSm aag @@ -91027,28 +91338,28 @@ akb akb akb akb -kNl -kNl -kNl -pYH -dnB -gxA -gxA -gxA -gxA -gxA -gxA -gxA -hNJ -psb -nfW -nfW -nfW +fHx +fHx +fHx +czP +knc +tlE +tlE +tlE +tlE +tlE +tlE +tlE +hsS +wRL +hpq +hpq +hpq aHU blI -izJ -wqT -pYH +qZz +xwe +czP aIK aIK aIK @@ -91065,8 +91376,8 @@ aUp aUp aUp aUp -aTO -ogI +uxd +qEm aKs aSm aag @@ -91279,28 +91590,28 @@ akA akA akA akb -tey -lXa -lXa -xzZ -ydq -jLo -jLo -jLo -jLo -jLo -jLo -jLo -jLo -vWG -jLo -jLo -jLo -jLo -jLo -jLo -sCb -pYH +wzH +vde +dvf +jNH +fwk +hjV +hjV +hjV +hjV +hjV +hjV +hjV +hjV +jXl +hjV +hjV +hjV +hjV +hjV +hjV +mbE +czP bhp aQh aNz @@ -91317,8 +91628,8 @@ aHV aUp aVD aUp -aTO -ogI +uxd +qEm aaj aSm aag @@ -91531,35 +91842,35 @@ akA akA akA akb -lXa -mgR -fxF -qTM -jHI -ucU -ucU -ucU -ucU -ucU -ucU -ucU -ucU -dpq -ucU -ucU -ucU -ucU -ucU -ucU -esC -pYH +vde +pEH +nso +gfy +fsq +lNv +lNv +lNv +lNv +lNv +lNv +lNv +lNv +rfw +lNv +lNv +lNv +lNv +lNv +lNv +tRk +czP aNA aRy aIK aRt aTs bkw -aKx +uAA aUp aUp aUp @@ -91569,8 +91880,8 @@ aUp aUp aUp aUp -aTO -ogI +uxd +qEm aaj aSm aag @@ -91783,28 +92094,28 @@ akA akA akA akb -lXa -pdw -nxj -pJz +vde +txj +geR +luH aHf -pYH -pYH -dqa -suL +czP +czP +mOp +koz hRF -suL -suL -suL -wuI -suL +jPi +jPi +jPi +dpN +wYb aOh -iGS -iGS -rCG -eZR -sEC -pYH +biT +xHo +lXR +eyE +pOL +czP aNy aNy aHT @@ -91821,8 +92132,8 @@ aUp aUp aHV aUp -aTO -ogI +uxd +qEm aHR aSm aag @@ -92035,8 +92346,8 @@ akb akb akb akb -lXa -pdw +vde +txj akb akb akb @@ -92045,12 +92356,12 @@ aGl aHf aJL aJL -idd -qeu -idd +wnX +rsy +wnX tdL aKt -aHT +aIK aIK aIK aSG @@ -92073,8 +92384,8 @@ aUp aUp aVD aUp -aTO -ogI +uxd +qEm aaj aSm aag @@ -92286,31 +92597,31 @@ awy awy ayg awy -nXz -rQm -diF +eFW +rxV +hXN aCF aDx akb aFs aGm aHf -cKf -nYk -vmP -oVm -ixx -mpH -lEf -aHT +ncl +rpz +tdv +tsl +fCD +nOn +sUn +aIK auQ -unZ +aSn aXN -biT +hVx auQ -aHT +aIK aQi -gxe +erI aHT aRz aXS @@ -92325,8 +92636,8 @@ aUp aUp aHV aUp -aTO -ogI +uxd +qEm aaj aSm aag @@ -92538,31 +92849,31 @@ akA akA akA akA -nzw -lXa -otz +xiY +vde +psH akb aDy akb akA aGn aHf -vmP -vmP -vmP -vmP -vmP -djI -cRc -aHT +wEz +nKa +nKa +nKa +nKa +jWp +xix +aIK aOw -aSn +lZI aXO aOk aWV -aHT -eRz -cpE +aIK +uXJ +eNQ aHT aXM bpC @@ -92577,8 +92888,8 @@ aUp aUp aVD aUp -aTO -ogI +uxd +qEm aKs aSm aag @@ -92799,22 +93110,22 @@ aDy aFt aGo aHf -reM -vmP -vmP -xaY -vmP -nNv -lXU -aHT -uhU -reY +nQu +wNT +nKa +gvW +nKa +dCX +uEL +aIK +oTu +vsI aXT aSq aRm -aHT -jci -mbr +aIK +cYO +cZX aHT aYa bpD @@ -92829,9 +93140,9 @@ aUr aHV aHV aHV -aHV -aHV -aHV +vXI +jRG +sPM bro bsz btU @@ -93051,20 +93362,20 @@ akb akb aGp aHf -jvP -vmP -ecm -fBS -vmP -nNv -uyz -aKx -aHT +qtY +pgL +fHC +sWe +nKa +dCX +gVi +aHV +aIK aIK aMO aIK -aHT -aHT +aIK +aIK aWX aUH aHT @@ -93073,7 +93384,7 @@ bpE bkD aUr aUr -xVY +ipx bnb aXZ aUr @@ -93303,14 +93614,14 @@ aCG asv azf aNF -vIP -vmP -vmP -pAK -vmP -nNv -rgH -aKx +gQv +pgL +nKa +pLE +nKa +dCX +ukd +aHV aEM aJJ aYR @@ -93333,7 +93644,7 @@ aUr aZT aLV aLV -bdJ +xlw aHV aKw bqs @@ -93547,7 +93858,7 @@ axk ayj ayZ axi -wRM +ssz aBI aBI awI @@ -93556,16 +93867,16 @@ aBI aAb aNF aJL -wSH -uJW -jdv -fKL -xIz -sbI +iGK +hJi +kEx +hjZ +xWn +rnh bLR aIM -tcH -dBj +srp +oQh aTC aUI aSs @@ -93799,7 +94110,7 @@ axl ayk aza axi -aAy +iGO aBI aCH aDD @@ -93837,7 +94148,7 @@ aUr aZS aLV aLV -bcK +bdJ aHV aKw bqs @@ -94595,8 +94906,8 @@ bpi bpj gOn aHV -aHV -bqs +ebv +gwb bsE bro brs @@ -95355,7 +95666,7 @@ aHV brw bsH biz -pgg +rLZ bub bxG byZ diff --git a/maps/yw/cryogaia_shuttles.dm b/maps/yw/cryogaia_shuttles.dm index d2713c30bd..9effdebd76 100644 --- a/maps/yw/cryogaia_shuttles.dm +++ b/maps/yw/cryogaia_shuttles.dm @@ -41,7 +41,7 @@ /obj/machinery/computer/shuttle_control/explore/security name = "short jump console" shuttle_tag = "Security Interceptor" - req_one_access = list(access_pilot,access_secpilot) + req_one_access = list(access_secpilot) /obj/effect/shuttle_landmark/premade/excursion/cryogaia name = "NSB Cryogaia (Excursion Dock)" From 92690dbf49c12506e3e42efbe997f73d5c2654b9 Mon Sep 17 00:00:00 2001 From: Killian <49700375+KillianKirilenko@users.noreply.github.com> Date: Tue, 5 May 2020 12:00:40 +0100 Subject: [PATCH 19/23] Revert "Revert "Merge branch 'kk-miscstuff' into kk-mapfixes"" This reverts commit 912a78e70453f7aa419ba2c678a137b6557c0765. --- code/datums/outfits/jobs/security_yw.dm | 5 +++ code/game/jobs/access_datum_yw.dm | 6 +++ code/game/jobs/job/security_yw.dm | 38 ++++++++++++++++++ code/game/jobs/jobs.dm | 1 + .../closets/secure/closets_yw.dm | 36 +++++++++++++++++ .../loadout/loadout_accessories.dm | 14 +++---- .../loadout/loadout_accessories_vr.dm | 14 +++---- .../loadout/loadout_accessories_yw.dm | 9 +++++ .../preference_setup/loadout/loadout_eyes.dm | 4 +- .../loadout/loadout_eyes_yw.dm | 2 +- .../preference_setup/loadout/loadout_head.dm | 10 ++--- .../preference_setup/loadout/loadout_shoes.dm | 2 +- .../preference_setup/loadout/loadout_suit.dm | 8 ++-- .../loadout/loadout_uniform.dm | 10 ++--- .../loadout/loadout_uniform_vr.dm | 28 ++++++------- .../loadout/loadout_uniform_yw.dm | 23 ++++++++++- .../loadout/loadout_utility_vr.dm | 2 +- .../preference_setup/loadout/loadout_xeno.dm | 4 +- .../clothing/under/extrauniforms_yw.dm | 16 ++++++++ icons/obj/closet_yw.dmi | Bin 2159 -> 3383 bytes vorestation.dme | 3 ++ 21 files changed, 185 insertions(+), 50 deletions(-) create mode 100644 code/datums/outfits/jobs/security_yw.dm create mode 100644 code/game/jobs/job/security_yw.dm create mode 100644 code/modules/client/preference_setup/loadout/loadout_accessories_yw.dm diff --git a/code/datums/outfits/jobs/security_yw.dm b/code/datums/outfits/jobs/security_yw.dm new file mode 100644 index 0000000000..c5a878f26e --- /dev/null +++ b/code/datums/outfits/jobs/security_yw.dm @@ -0,0 +1,5 @@ +/decl/hierarchy/outfit/job/security/pilot + name = OUTFIT_JOB_NAME("Security Pilot") + uniform = /obj/item/clothing/under/rank/khi/sec/pilot + id_type = /obj/item/weapon/card/id/security + pda_type = /obj/item/device/pda/security \ No newline at end of file diff --git a/code/game/jobs/access_datum_yw.dm b/code/game/jobs/access_datum_yw.dm index 97d68b903b..41c6f37702 100644 --- a/code/game/jobs/access_datum_yw.dm +++ b/code/game/jobs/access_datum_yw.dm @@ -1,3 +1,9 @@ +/var/const/access_secpilot = 51 +/datum/access/secpilot + id = access_secpilot + desc = "Security Pilot Access" + region = ACCESS_REGION_SECURITY + /var/const/access_blueshield = 52 /datum/access/blueshield id = access_blueshield diff --git a/code/game/jobs/job/security_yw.dm b/code/game/jobs/job/security_yw.dm new file mode 100644 index 0000000000..4723e68885 --- /dev/null +++ b/code/game/jobs/job/security_yw.dm @@ -0,0 +1,38 @@ +/datum/job/hos + disallow_jobhop = TRUE + + access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, + access_forensics_lockers, access_morgue, access_maint_tunnels, access_all_personal_lockers, + access_research, access_engine, access_mining, access_construction, access_mailsorting, + access_heads, access_hos, access_RC_announce, access_keycard_auth, access_gateway, access_external_airlocks, access_secpilot) + minimal_access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, + access_forensics_lockers, access_morgue, access_maint_tunnels, access_all_personal_lockers, + access_research, access_engine, access_mining, access_construction, access_mailsorting, + access_heads, access_hos, access_RC_announce, access_keycard_auth, access_gateway, access_external_airlocks, access_secpilot) + +/datum/job/warden + access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, access_maint_tunnels, access_morgue, access_external_airlocks, access_secpilot) + minimal_access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, access_maint_tunnels, access_external_airlocks, access_secpilot) + +/datum/job/security/pilot + title = "Security Pilot" + flag = SECPILOT + departments = list(DEPARTMENT_SECURITY) + department_flag = ENGSEC + faction = "Station" + total_positions = 2 + spawn_positions = 2 + supervisors = "the head of security" + selection_color = "#601C1C" + economic_modifier = 5 + access = list(access_security, access_eva, access_sec_doors, access_brig, access_maint_tunnels, access_morgue, access_external_airlocks, access_secpilot) + minimal_access = list(access_security, access_eva, access_sec_doors, access_brig, access_maint_tunnels, access_external_airlocks, access_secpilot) + minimal_player_age = 7 + outfit_type = /decl/hierarchy/outfit/job/security/pilot + + job_description = "Tasked with flying, operating, and sometimes even maintaining small spacecraft and personal exosuits such as the Durand or Gygax, \ + Security Pilots are responsible for transporting criminals to more permanent holding facilities, and patrolling \ + for potential threats to their workplace. They may also be expected to step in to standard Security duties if \ + there's a shortage of regular officers." + +// alt_titles = list("Mech Operator" = /datum/alt_title/sec_mech_operator) \ No newline at end of file diff --git a/code/game/jobs/jobs.dm b/code/game/jobs/jobs.dm index fce7e5325d..431d038870 100644 --- a/code/game/jobs/jobs.dm +++ b/code/game/jobs/jobs.dm @@ -12,6 +12,7 @@ var/const/ATMOSTECH =(1<<7) var/const/AI =(1<<8) var/const/CYBORG =(1<<9) var/const/BLUESHIELD =(1<<13) //YW addition +var/const/SECPILOT =(1<<14) //YW addition var/const/INTERN =(1<<15) //VOREStation Add var/const/MEDSCI =(1<<1) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/closets_yw.dm b/code/game/objects/structures/crates_lockers/closets/secure/closets_yw.dm index e1057a1f9c..25f9930fad 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/closets_yw.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/closets_yw.dm @@ -35,3 +35,39 @@ /obj/item/gunbox/blueshield, /obj/item/gunbox/blueshield/secondary ) + +/obj/structure/closet/secure_closet/security_pilot + name = "security pilot's locker" + req_access = list(access_secpilot) + icon = 'icons/obj/closet_yw.dmi' + icon_state = "secpilot1" + icon_closed = "secpilot" + icon_locked = "secpilot1" + icon_opened = "secpilotopen" + icon_broken = "secpilotbroken" + icon_off = "secpilotoff" + storage_capacity = 2.5 * MOB_MEDIUM + + starts_with = list( + /obj/item/weapon/storage/backpack/parachute, + /obj/item/weapon/material/knife/tacknife/survival, + /obj/item/clothing/head/pilot/alt, + /obj/item/clothing/mask/gas/half, + /obj/item/clothing/suit/storage/toggle/yw/secjacket, + /obj/item/clothing/under/rank/khi/sec/pilot, + /obj/item/clothing/gloves/fingerless, + /obj/item/weapon/cartridge/security, + /obj/item/device/radio/headset/headset_sec/alt, + /obj/item/weapon/storage/belt/security, + /obj/item/clothing/glasses/sunglasses/sechud, + /obj/item/weapon/storage/box/flare, + /obj/item/clothing/accessory/storage/webbing/combatpilot, + /obj/item/weapon/reagent_containers/food/snacks/liquidfood, + /obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, + /obj/item/clothing/head/soft/sec/corp, + /obj/item/clothing/accessory/holster/armpit, + /obj/item/weapon/gun/energy/taser, + /obj/item/weapon/cell/device/weapon, + /obj/item/device/flashlight/maglight, + /obj/item/device/radio + ) \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories.dm b/code/modules/client/preference_setup/loadout/loadout_accessories.dm index 05442e5208..242dc0b777 100644 --- a/code/modules/client/preference_setup/loadout/loadout_accessories.dm +++ b/code/modules/client/preference_setup/loadout/loadout_accessories.dm @@ -79,7 +79,7 @@ /datum/gear/accessory/holster display_name = "holster selection (Security, CD, HoP)" path = /obj/item/clothing/accessory/holster - allowed_roles = list("Colony Director", "Head of Personnel", "Security Officer", "Warden", "Head of Security","Detective","Blueshield Guard") + allowed_roles = list("Colony Director", "Head of Personnel", "Security Officer", "Warden", "Head of Security","Detective","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/accessory/holster/New() ..() @@ -135,32 +135,32 @@ /datum/gear/accessory/brown_vest display_name = "webbing, brown" path = /obj/item/clothing/accessory/storage/brown_vest - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/accessory/black_vest display_name = "webbing, black" path = /obj/item/clothing/accessory/storage/black_vest - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/accessory/white_vest display_name = "webbing, white" path = /obj/item/clothing/accessory/storage/white_vest - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/accessory/brown_drop_pouches display_name = "drop pouches, brown" path = /obj/item/clothing/accessory/storage/brown_drop_pouches - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/accessory/black_drop_pouches display_name = "drop pouches, black" path = /obj/item/clothing/accessory/storage/black_drop_pouches - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/accessory/white_drop_pouches display_name = "drop pouches, white" path = /obj/item/clothing/accessory/storage/white_drop_pouches - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/accessory/fannypack display_name = "fannypack selection" diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm b/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm index 8ae13a2930..ca65595688 100644 --- a/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm @@ -41,15 +41,15 @@ /datum/gear/accessory/holster display_name = "holster selection (Security, CD, HoP, Exploration)" - allowed_roles = list("Colony Director", "Head of Personnel", "Security Officer", "Warden", "Head of Security","Detective","Explorer","Pathfinder", "Blueshield Guard") + allowed_roles = list("Colony Director", "Head of Personnel", "Security Officer", "Warden", "Head of Security","Detective","Explorer","Pathfinder", "Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/accessory/brown_vest display_name = "webbing, brown (Eng, Sec, Med, Exploration, Miner)" - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/accessory/black_vest display_name = "webbing, black (Eng, Sec, Med, Exploration, Miner)" - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/accessory/white_vest display_name = "webbing, white (Medical)" @@ -57,11 +57,11 @@ /datum/gear/accessory/brown_drop_pouches display_name = "drop pouches, brown (Eng, Sec, Med, Exploration, Miner)" - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/accessory/black_drop_pouches display_name = "drop pouches, black (Eng, Sec, Med, Exploration, Miner)" - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard") + allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner", "Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/accessory/white_drop_pouches display_name = "drop pouches, white (Medical)" @@ -85,9 +85,9 @@ /datum/gear/accessory/pilotpin display_name = "pilot qualification pin" - description = "An iron pin denoting the qualification to fly SCG spacecraft." + description = "An iron pin denoting the qualification to fly USG spacecraft." path = /obj/item/clothing/accessory/solgov/specialty/pilot - allowed_roles = list("Pathfinder", "Pilot", "Field Medic") + allowed_roles = list("Pathfinder", "Pilot", "Field Medic","Security Pilot") //YW ADDITIONS /datum/gear/accessory/flops display_name = "drop straps" diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories_yw.dm b/code/modules/client/preference_setup/loadout/loadout_accessories_yw.dm new file mode 100644 index 0000000000..3784ccd445 --- /dev/null +++ b/code/modules/client/preference_setup/loadout/loadout_accessories_yw.dm @@ -0,0 +1,9 @@ +/datum/gear/accessory/pilot_webbing1 + path = /obj/item/clothing/accessory/storage/webbing/pilot1 + display_name = "harness and webbing (Sec, Exploration)" + allowed_roles = list("Security Officer","Detective","Head of Security","Warden","Explorer","Pathfinder","Blueshield Guard","Pilot","Security Pilot") + +/datum/gear/accessory/pilot_webbing2 + path = /obj/item/clothing/accessory/storage/webbing/pilot2 + display_name = "harness and webbing, alt. (Sec, Exploration)" + allowed_roles = list("Security Officer","Detective","Head of Security","Warden","Explorer","Pathfinder","Blueshield Guard","Pilot","Security Pilot") \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_eyes.dm b/code/modules/client/preference_setup/loadout/loadout_eyes.dm index 4c3b1378d2..db4843c57f 100644 --- a/code/modules/client/preference_setup/loadout/loadout_eyes.dm +++ b/code/modules/client/preference_setup/loadout/loadout_eyes.dm @@ -36,7 +36,7 @@ /datum/gear/eyes/security display_name = "Security HUD (Security)" path = /obj/item/clothing/glasses/hud/security - allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard") + allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/eyes/security/prescriptionsec display_name = "Security HUD, prescription (Security)" @@ -108,7 +108,7 @@ /datum/gear/eyes/sun display_name = "Sunglasses (Security/Command)" path = /obj/item/clothing/glasses/sunglasses - allowed_roles = list("Security Officer","Head of Security","Warden","Colony Director","Head of Personnel","Quartermaster","Internal Affairs Agent","Detective","Blueshield Guard") + allowed_roles = list("Security Officer","Head of Security","Warden","Colony Director","Head of Personnel","Quartermaster","Internal Affairs Agent","Detective","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/eyes/sun/shades display_name = "Sunglasses, fat (Security/Command)" diff --git a/code/modules/client/preference_setup/loadout/loadout_eyes_yw.dm b/code/modules/client/preference_setup/loadout/loadout_eyes_yw.dm index 8dee4f7650..33e9858933 100644 --- a/code/modules/client/preference_setup/loadout/loadout_eyes_yw.dm +++ b/code/modules/client/preference_setup/loadout/loadout_eyes_yw.dm @@ -1,7 +1,7 @@ /datum/gear/eyes/arglasses/sec display_name = "AR-S glasses (Sec, BSG)" path = /obj/item/clothing/glasses/omnihud/sec - allowed_roles = list("Security Officer","Head of Security","Warden","Detective","Blueshield Guard") + allowed_roles = list("Security Officer","Head of Security","Warden","Detective","Blueshield Guard","Security Pilot") /datum/gear/eyes/arglasses/eng display_name = "AR-E glasses (Eng)" diff --git a/code/modules/client/preference_setup/loadout/loadout_head.dm b/code/modules/client/preference_setup/loadout/loadout_head.dm index 7c2a327b38..ed110210b6 100644 --- a/code/modules/client/preference_setup/loadout/loadout_head.dm +++ b/code/modules/client/preference_setup/loadout/loadout_head.dm @@ -19,7 +19,7 @@ /datum/gear/head/beret/bsec display_name = "beret, navy (officer)" path = /obj/item/clothing/head/beret/sec/navy/officer - allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard") + allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/head/beret/bsec_warden display_name = "beret, navy (warden)" @@ -34,7 +34,7 @@ /datum/gear/head/beret/csec display_name = "beret, corporate (officer)" path = /obj/item/clothing/head/beret/sec/corporate/officer - allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard") + allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/head/beret/csec_warden display_name = "beret, corporate (warden)" @@ -57,7 +57,7 @@ /datum/gear/head/beret/sec display_name = "beret, red (security)" path = /obj/item/clothing/head/beret/sec - allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard") + allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/head/cap display_name = "cap, black" @@ -78,7 +78,7 @@ /datum/gear/head/cap/corp display_name = "cap, corporate (Security)" path = /obj/item/clothing/head/soft/sec/corp - allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard") + allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/head/cap/green display_name = "cap, green" @@ -107,7 +107,7 @@ /datum/gear/head/cap/sec display_name = "cap, security (Security)" path = /obj/item/clothing/head/soft/sec - allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard") + allowed_roles = list("Security Officer","Head of Security","Warden", "Detective","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/head/cap/yellow display_name = "cap, yellow" diff --git a/code/modules/client/preference_setup/loadout/loadout_shoes.dm b/code/modules/client/preference_setup/loadout/loadout_shoes.dm index bb6f50e9f5..72c6cc7a97 100644 --- a/code/modules/client/preference_setup/loadout/loadout_shoes.dm +++ b/code/modules/client/preference_setup/loadout/loadout_shoes.dm @@ -186,7 +186,7 @@ /datum/gear/shoes/boots/winter/security display_name = "security winter boots" path = /obj/item/clothing/shoes/boots/winter/security - allowed_roles = list("Security Officer", "Head of Security", "Warden", "Detective","Blueshield Guard") + allowed_roles = list("Security Officer", "Head of Security", "Warden", "Detective","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/shoes/boots/winter/science display_name = "science winter boots" diff --git a/code/modules/client/preference_setup/loadout/loadout_suit.dm b/code/modules/client/preference_setup/loadout/loadout_suit.dm index c1c242e4f6..103e0c7cc3 100644 --- a/code/modules/client/preference_setup/loadout/loadout_suit.dm +++ b/code/modules/client/preference_setup/loadout/loadout_suit.dm @@ -257,7 +257,7 @@ datum/gear/suit/duster /datum/gear/suit/roles/poncho/cloak/security display_name = "cloak, security" path = /obj/item/clothing/accessory/poncho/roles/cloak/security - allowed_roles = list("Head of Security","Detective","Warden","Security Officer","Blueshield Guard") + allowed_roles = list("Head of Security","Detective","Warden","Security Officer","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/suit/roles/poncho/cloak/service display_name = "cloak, service" @@ -340,7 +340,7 @@ datum/gear/suit/duster /datum/gear/suit/wintercoat/security display_name = "winter coat, security" path = /obj/item/clothing/suit/storage/hooded/wintercoat/security - allowed_roles = list("Security Officer", "Head of Security", "Warden", "Detective","Blueshield Guard") + allowed_roles = list("Security Officer", "Head of Security", "Warden", "Detective","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/suit/wintercoat/medical display_name = "winter coat, medical" @@ -473,12 +473,12 @@ datum/gear/suit/duster /datum/gear/suit/snowsuit/command display_name = "snowsuit, command" path = /obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/command - allowed_roles = list("Colony Director","Research Director","Head of Personnel","Head of Security","Chief Engineer","Command Secretary","Blueshield Guard") + allowed_roles = list("Colony Director","Research Director","Head of Personnel","Head of Security","Chief Engineer","Command Secretary","Blueshield Guard") //YW ADDITIONS /datum/gear/suit/snowsuit/security display_name = "snowsuit, security" path = /obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit/security - allowed_roles = list("Security Officer", "Head of Security", "Warden", "Detective","Blueshield Guard") + allowed_roles = list("Security Officer", "Head of Security", "Warden", "Detective","Blueshield Guard","Security Pilot") /datum/gear/suit/snowsuit/medical display_name = "snowsuit, medical" diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform.dm b/code/modules/client/preference_setup/loadout/loadout_uniform.dm index a4451e4392..b5be918c11 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform.dm @@ -158,7 +158,7 @@ /datum/gear/uniform/job_skirt/security display_name = "skirt, security" path = /obj/item/clothing/under/rank/security/skirt - allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer","Blueshield Guard") + allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/uniform/job_skirt/head_of_security display_name = "skirt, hos" @@ -173,7 +173,7 @@ /datum/gear/uniform/job_turtle/security display_name = "turtleneck, security" path = /obj/item/clothing/under/rank/security/turtleneck - allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer") + allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer", "Security Pilot") //YW ADDITIONS /datum/gear/uniform/job_turtle/engineering display_name = "turtleneck, engineering" @@ -307,7 +307,7 @@ /datum/gear/uniform/corpsecsuit display_name = "uniform, corporate (Security)" path = /obj/item/clothing/under/rank/security/corp - allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard") + allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/uniform/corpwarsuit display_name = "uniform, corporate (Warden)" @@ -333,7 +333,7 @@ /datum/gear/uniform/navysecsuit display_name = "uniform, navy blue (Security)" path = /obj/item/clothing/under/rank/security/navyblue - allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard") + allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/uniform/navywarsuit display_name = "uniform, navy blue (Warden)" @@ -432,7 +432,7 @@ /datum/gear/uniform/pcrc display_name = "uniform, PCRC (Security)" path = /obj/item/clothing/under/pcrc - allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard") + allowed_roles = list("Security Officer","Head of Security","Warden","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/uniform/brandsuit/grayson display_name = "outfit, grayson" diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm index 4768998c8d..5869d2b468 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm @@ -11,12 +11,12 @@ /datum/gear/uniform/job_khi/cmd display_name = "khi uniform, cmd" path = /obj/item/clothing/under/rank/khi/cmd - allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") + allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") //YW ADDITIONS /datum/gear/uniform/job_khi/sec display_name = "khi uniform, sec" path = /obj/item/clothing/under/rank/khi/sec - allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer","Blueshield Guard") + allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/uniform/job_khi/med display_name = "khi uniform, med" @@ -37,7 +37,7 @@ /datum/gear/suit/job_fed/sec display_name = "fed uniform, sec" path = /obj/item/clothing/suit/storage/fluff/fedcoat - allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer","Blueshield Guard") + allowed_roles = list("Head of Security", "Warden", "Detective", "Security Officer","Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/suit/job_fed/medsci display_name = "fed uniform, med/sci" @@ -54,7 +54,7 @@ /datum/gear/uniform/job_trek/cmd/tos display_name = "TOS uniform, cmd" path = /obj/item/clothing/under/rank/trek/command - allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") + allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") //YW ADDITIONS /datum/gear/uniform/job_trek/medsci/tos display_name = "TOS uniform, med/sci" @@ -64,13 +64,13 @@ /datum/gear/uniform/job_trek/eng/tos display_name = "TOS uniform, eng/sec" path = /obj/item/clothing/under/rank/trek/engsec - allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard") + allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard","Security Pilot") //YW ADDITIONS //TNG /datum/gear/uniform/job_trek/cmd/tng display_name = "TNG uniform, cmd" path = /obj/item/clothing/under/rank/trek/command/next - allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") + allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") //YW ADDITIONS /datum/gear/uniform/job_trek/medsci/tng display_name = "TNG uniform, med/sci" @@ -80,13 +80,13 @@ /datum/gear/uniform/job_trek/eng/tng display_name = "TNG uniform, eng/sec" path = /obj/item/clothing/under/rank/trek/engsec/next - allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard") + allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard","Security Pilot") //YW ADDITIONS //VOY /datum/gear/uniform/job_trek/cmd/voy display_name = "VOY uniform, cmd" path = /obj/item/clothing/under/rank/trek/command/voy - allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") + allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") //YW ADDITIONS /datum/gear/uniform/job_trek/medsci/voy display_name = "VOY uniform, med/sci" @@ -96,7 +96,7 @@ /datum/gear/uniform/job_trek/eng/voy display_name = "VOY uniform, eng/sec" path = /obj/item/clothing/under/rank/trek/engsec/voy - allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard") + allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard","Security Pilot") //YW ADDITIONS //DS9 @@ -106,13 +106,13 @@ allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director", "Chief Medical Officer","Medical Doctor","Chemist","Paramedic","Geneticist", "Scientist","Roboticist","Xenobiologist","Atmospheric Technician", - "Station Engineer","Warden","Detective","Security Officer", "Pathfinder", "Explorer", "Field Medic", "Blueshield Guard") + "Station Engineer","Warden","Detective","Security Officer", "Pathfinder", "Explorer", "Field Medic", "Blueshield Guard","Security Pilot") //YW ADDITIONS /datum/gear/uniform/job_trek/cmd/ds9 display_name = "DS9 uniform, cmd" path = /obj/item/clothing/under/rank/trek/command/ds9 - allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") + allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") //YW ADDITIONS /datum/gear/uniform/job_trek/medsci/ds9 display_name = "DS9 uniform, med/sci" @@ -122,14 +122,14 @@ /datum/gear/uniform/job_trek/eng/ds9 display_name = "DS9 uniform, eng/sec" path = /obj/item/clothing/under/rank/trek/engsec/ds9 - allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard") + allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard","Security Pilot") //YW ADDITIONS //ENT /datum/gear/uniform/job_trek/cmd/ent display_name = "ENT uniform, cmd" path = /obj/item/clothing/under/rank/trek/command/ent - allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") + allowed_roles = list("Head of Security","Colony Director","Head of Personnel","Chief Engineer","Research Director","Chief Medical Officer","Blueshield Guard") //YW ADDITIONS /datum/gear/uniform/job_trek/medsci/ent display_name = "ENT uniform, med/sci" @@ -139,7 +139,7 @@ /datum/gear/uniform/job_trek/eng/ent display_name = "ENT uniform, eng/sec" path = /obj/item/clothing/under/rank/trek/engsec/ent - allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard") + allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security","Blueshield Guard","Security Pilot") //YW ADDITIONS /* Swimsuits */ diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform_yw.dm b/code/modules/client/preference_setup/loadout/loadout_uniform_yw.dm index 0fef98d933..b635994995 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform_yw.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform_yw.dm @@ -18,4 +18,25 @@ /datum/gear/uniform/redvictdress description = "A victorian style dress, fancy!" display_name = "Victorian Dress, Red" - path = /obj/item/clothing/under/yw/victsuit/victdress/red \ No newline at end of file + path = /obj/item/clothing/under/yw/victsuit/victdress/red + +/datum/gear/uniform/pilot1 + display_name = "NT Pilot Uniform" + description = "A blue and grey NanoTrasen flight suit. Warm and practical, it feels cozy. Includes harness and webbing." + path = /obj/item/clothing/under/rank/pilot1 + cost = 2 //base cost 1 + accessory 1 + allowed_roles = list("Pilot","Security Pilot") + +/datum/gear/uniform/pilot2 + display_name = "NT Pilot Uniform, Alt." + description = "A dark blue NanoTrasen flight suit. Warm and practical, several patches are scattered across it. Includes harness and webbing." + path = /obj/item/clothing/under/rank/pilot2 + cost = 2 //base cost 1 + accessory 1 + allowed_roles = list("Pilot","Security Pilot") + +/datum/gear/uniform/combatpilot + display_name = "Security Pilot Uniform" + description = "A lightweight uniform intended for vehicle and powersuit operators, designed to allow free movement and maximum comfort in hot, cramped cockpits. Comes prefitted with a harness and webbing for gear." + path = /obj/item/clothing/under/rank/khi/sec/pilot + cost = 2 //base cost 1 + accessory 1 + allowed_roles = list("Security Pilot") \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_utility_vr.dm b/code/modules/client/preference_setup/loadout/loadout_utility_vr.dm index 6e4dac4647..7b3ed3cbbb 100644 --- a/code/modules/client/preference_setup/loadout/loadout_utility_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_utility_vr.dm @@ -44,7 +44,7 @@ /datum/gear/utility/dufflebag/sec display_name = "security Dufflebag" path = /obj/item/weapon/storage/backpack/dufflebag/sec - allowed_roles = list("Head of Security","Warden","Detective","Security Officer","Blueshield Guard") + allowed_roles = list("Head of Security","Warden","Detective","Security Officer","Blueshield Guard","Security Pilot")//YW ADDITIONS /datum/gear/utility/dufflebag/eng display_name = "engineering dufflebag" diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno.dm b/code/modules/client/preference_setup/loadout/loadout_xeno.dm index 2a60cf94a9..d411c5d56d 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno.dm @@ -210,7 +210,7 @@ /datum/gear/uniform/dept/undercoat/security display_name = "security undercoat (Teshari)" path = /obj/item/clothing/under/seromi/undercoat/jobs/sec - allowed_roles = list("Head of Security","Detective","Warden","Security Officer",) + allowed_roles = list("Head of Security","Detective","Warden","Security Officer","Security Pilot")//YW ADDITIONS /datum/gear/uniform/dept/undercoat/service display_name = "service undercoat (Teshari)" @@ -299,7 +299,7 @@ /datum/gear/suit/dept/cloak/security display_name = "security cloak (Teshari)" path = /obj/item/clothing/suit/storage/seromi/cloak/jobs/sec - allowed_roles = list("Head of Security","Detective","Warden","Security Officer",) + allowed_roles = list("Head of Security","Detective","Warden","Security Officer","Security Pilot")//YW ADDITIONS /datum/gear/suit/dept/cloak/service display_name = "service cloak (Teshari)" diff --git a/code/modules/clothing/under/extrauniforms_yw.dm b/code/modules/clothing/under/extrauniforms_yw.dm index 49c9968b8f..612bcede4e 100644 --- a/code/modules/clothing/under/extrauniforms_yw.dm +++ b/code/modules/clothing/under/extrauniforms_yw.dm @@ -19,6 +19,22 @@ item_state = "blueshield2" armor = list(melee = 15, bullet = 10, laser = 10,energy = 5, bomb = 15, bio = 0, rad = 0) +/obj/item/clothing/accessory/storage/webbing/combatpilot //redefined to change the name and keep it loaded in the event the sc files are disabled in future + name = "combat pilot harness" + desc = "Sturdy mess of black synthcotton belts and buckles." + icon_state = "pilot_webbing2" + sprite_sheets = list( + "Teshari" = 'icons/mob/species/seromi/ties.dmi' + ) + +/obj/item/clothing/under/rank/khi/sec/pilot //yes, we're inheriting from the khi version; that one has full rolldown sprites + name = "security pilot uniform" + desc = "A lightweight uniform intended for vehicle and powersuit operators, designed to allow free movement and maximum comfort in hot, cramped cockpits. Comes prefitted with a harness and webbing for gear." + armor = list(melee = 0, bullet = 10, laser = 10, energy = 0, bomb = 10, bio = 0, rad = 0) + //we probably won't get hit by melee attacks as a pilot, but logically you'd want protection against anything that might penetrate the armor + starting_accessories = list(/obj/item/clothing/accessory/storage/webbing/combatpilot) + //come prefitted with some snappy extra webbing + /obj/item/clothing/under/yw/rank/security/formal name = "security suit" desc = "A formal security suit for officers complete with nanotrasen belt buckle." diff --git a/icons/obj/closet_yw.dmi b/icons/obj/closet_yw.dmi index 4b9b474cfe17600d0f6986a4430e9d2fc297cfe1..19145e49db07c744fc68e03252958b7b9bedeafa 100644 GIT binary patch delta 2824 zcmV+j3-|Qz5Vsm7iBL{Q4GJ0x0000DNk~Le0001>0001>2m=5B0K5^G9{>OX%8@0q z1NiuuvDXvyfsOA-?`4-b=L0KP#mq;CKq4-de=z&sHVODGCb z6&2QA99~=)7-=3JON&`k00001bW%=J06^y0W&i*Hx|3Q0k$*;%n}9AV$jr$vAzC5f z@Pnx&$$nx28>W{0@Iy5Lp97T@T>V_YDG~s5rNdIYO8gA~00~t|L_t(|ob8(Vn;b?7ZCH0Jvo^l}CS_)g_|VZp$xImaA(%)5>|{)BhK{_MFYzURdEzVD=y z5ucu6Oh#`J0zAc&@%|4W^+c-o7krRi!KtU6{-M*)`0$w@IScmBKIh!?&OQHv3qOkZ zo(%3e2myZV<6yn>3?pK_zhDO2VBRM#y7;0`et+tcOFs?!^Dn#nip#IO>gsDg1N+5d z|F!+s^&9;$fY-}_ZapC+R4*>L;l>4@UGTZje*pu$>5B_*UihV3z8nGg6}mw`Ji)Je zGQNfZ%Jt#`I>80b1aF0XI>Cj`1aAX<`Y-D5cP6kX1UMrEh}M&Ey}uyO7Myz8?RVUM z=YQAFyj4C19RKWd?)t`E-~85vw;_J9xQNME#2qtzKHy?chDNe0-7s&?-N)Y} zH*oyfbLZbQf9|~}V+$4o`c^x9B7aa&cW{~PJev}@IIcdwMH$g?82YhH*pE96aAHIU-1f_#AbcO0ZJVEXL z;VZxz===Tz4Nm&~!!L8AZN59fX_RU)cg$$_rwj7=hx1K6(xPt|yz$VoJe}a90e|0O zoqAu(moMLcc~gn~2VC*K(cJM7PCE6e%X#v3azkBpH(h(Bk?*DAKNjeRfUT78rRcBV zwGtrI%J)+6OPp4&cucO3$>-AcORG4QAi$V>E^WWGDi|OP7?aPX?K8mDj$#0@d@gOD z0shF51Nb-!h^0$u`=JTqfLK14wtxSonIM|arR|3%_~ST0DWB8vNrL*)s-O760VDD` z*C(WxK5)NC2wpz`=7#~`Pw9{I3kGcFb0nPai9R9ZXHh<_Cj{{a-24yjA54%P)exW; zeAezsm?T03a z0;2g`+P>}t+m{b2`nnTrUw=NR=&Mc;&F9kg#cy>WV01p0wl97!miglIxwL&gS%CQV zX>ZVQASj>9nWp)K>8hN8AD7RSsh%u1Wyu}V_H!egR<0P9eA~94vYWEXR)>8GwRUak zX;159z{>h+^~vfp&p!9;Gu8FByg{^Y+ZEHapZBC$Pw9q-V*#tCIe%)7jgF3vnN?^5 z+@~Wcmtz6ZdPX<=LOkGl*5Jj_mquSU;Rzx>qbr;7fPVd0s6XQ?l@tNpD_n0^ZDrps zJ18Bj?vw4K)}}ol>6&V zkX~ODAmD2OLjAQS=zoefs44p{U^N7&UavPn(;OckXAPv2-t#9WCPd$^LV!Py0p$8~ z6a0lI9B_Q&#*MF(=~NJZV$-HguL?d4SjPaJcRHazo1hAy$r_Ar-u&9;&EuvmpJR?c zv1Q9Iw``fMr26-+ylV-S2rH1jOo1)2dm2 zumqn2T;1z7R{|KSM({HMu&a6rhn-8~s# z-IGqe14ut`DFIq0`@sPrp8;BmfMEX-ibvl|7~sD=wRM8^=dD_66Qu9N!)kzuCRpED z+e;?Mg*T~8(B_n6f~DY%1b-*-j{*4uC+0g7tXma37=NHvy)!{}%>0|vI{ABhh4y{I z-$3e*`)q>rPZf?&tKK~aM@EEXLFS_!DwU@yP09Un-)`<$;iOYf0Vxqs&@Rz`7cejl zrAn7$U)q(4{?5`28k@)zHAb&nl=@0vQ`5y+LTAvs&N%jKy*aZaj z(*1>T{gY=e+J3}SB%;2(6HLMH-~^NTnNR3VGQr?wu94q$#!sIAb;wVi|8>gWr@cXD zOn#TKV)MDI)o3*S(`X9H=du-rs@EI;_0;GtKuWi3SN8%kx?N^B1MXrk+Ylg-&t)bM z5PwLQGSfc5R^v)!5TJB_Uv`24rThD`69fq5bD0SOgz~w}!~y=#6O_+o zCKu2Y0HJ&?Gc_szAdt^xrp8VgumOB=&P>n*y9?0$GS2{ad+ItstE&OsyVJTE(78LU zn*sNf2{t%&7oc;0AEnyOO|Y9ju)6p6H8Jen9AFpmQ9y>*$nke@b`xLDdGciq5vA^? a%l#jc!%2!XFfZEx0000?fB5*AVS}Q;z`&Vi0F#rGNHGApd;m@(BP|{PFBKI4004DQ08cdlH5V6NKLBDc zFCGmIc~Ss16cl$+05C8xU|?WkLI7k#0H13BQ6V9STL6<|0HkjKAP*0XN1cQK0004W zQchCV=-lNbYme}>OZ$_lQ2F5mzM0R10rGTDqg ziU0rwSV=@dRA_$Jq2OZ4rcC%`#RjNo8i;5N%4-ORtRMd)R#apo+SZ^pQ zYQbYwYN?1FAKW(E+N$-~di{gW28>2hpkyM_u9(q5MuqT_S;MzJL%~jU07#oR!S))S}N9OQlsMTSX)u5Y8`K z>P9>OS*mHM;z}}KKqXyo*KL(#3nKVsKLFWYDyadA)(P6_N#s`;-uERyx0kBn0qD0P zI{Ta?em6STV4|rKaRA~xcZEf8K^VUqbt?eGe|hc-;RRv*L;z$&E4=kYS zEe87(-~tYy$N>oR&IvAD(|1wdnv2&KOLG5`b^Vw2ue)qLZ@#<^je*fU6Yd2kY{pK40pF9JoP+6A&+~^A3bh8MsgAVUH0JOr@+g^?FWUV8Zz2;ji0qpyv={>GaD0B;chL!Q9fuFyLH35-|? z90U^>wGuca^~q055M>Rj)UTDX8AjJ9r@tMhac@Z z1o*l>MuoOP$pX!L4t%yA@?`+B1Ym$#?ekjCG06e8-}?nouLk-$^*I1*zeWMRe{>Z9 zaGXdFSa5t|Vj_(12dLNpU%3hZn5<3Kf)-2?h4C2x?L=kD2Kd?)44^9$2E|agIc?`_k{oZ;*gZ=%U^D*E5{XWL{JHizff3&CXWq#e0)K^H=-)C6OiW^kEQmX!LGMb$^E%*&avorPR z`xX7&oMUA20A%U>y!nHxg*X6;{%+2B0dN3hd%d0vMs-zmUP zmMnmuJpi)bG}BH%Y_D7bEP!b)Ev21+8~{jQY3aX|0NCHT1b$%ve^N~V?Dyu}uPt!^ zsU^@O{rkTM@EiGOeS;GC-Bm1rEjEA-^nWh_`Y7TONClv313>-VYCKLG*2Ob(#g0MPpZ|7U;&_@f2zr>mF=1lDK&U62KUqQCo} z1K9z9{ons6W&z9=f52a^5&(ex-v20GZu$Vo59G7}!2Zr9zyj3ivycM(?J7wEP=60d zfczw=rv?D__q-EO{6Zp2fcdpOh1*c*um0bPB?*|`gD~ckFu1?_dx5v#N`T&m|1esJ zzF*zn*=EG-x1R%zhOZgL*&kaCvb~Y#LIEJz_J0ATqpfxJ5Ag;s00000NkvXXu0mjf DRC)fE diff --git a/vorestation.dme b/vorestation.dme index 1062700425..4423a8418a 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -381,6 +381,7 @@ #include "code\datums\outfits\jobs\misc.dm" #include "code\datums\outfits\jobs\science.dm" #include "code\datums\outfits\jobs\security.dm" +#include "code\datums\outfits\jobs\security_yw.dm" #include "code\datums\outfits\jobs\special_vr.dm" #include "code\datums\outfits\jobs\YW.dm" #include "code\datums\outfits\military\fleet.dm" @@ -751,6 +752,7 @@ #include "code\game\jobs\job\science_vr.dm" #include "code\game\jobs\job\security.dm" #include "code\game\jobs\job\security_vr.dm" +#include "code\game\jobs\job\security_yw.dm" #include "code\game\jobs\job\silicon.dm" #include "code\game\jobs\job\silicon_vr.dm" #include "code\game\jobs\job\special_vr.dm" @@ -1761,6 +1763,7 @@ #include "code\modules\client\preference_setup\loadout\loadout.dm" #include "code\modules\client\preference_setup\loadout\loadout_accessories.dm" #include "code\modules\client\preference_setup\loadout\loadout_accessories_vr.dm" +#include "code\modules\client\preference_setup\loadout\loadout_accessories_yw.dm" #include "code\modules\client\preference_setup\loadout\loadout_cosmetics.dm" #include "code\modules\client\preference_setup\loadout\loadout_ears.dm" #include "code\modules\client\preference_setup\loadout\loadout_eyes.dm" From 70ef0ee26144ca23da7e00bcbf0ee411e2c739b2 Mon Sep 17 00:00:00 2001 From: Killian <49700375+KillianKirilenko@users.noreply.github.com> Date: Tue, 5 May 2020 12:32:54 +0100 Subject: [PATCH 20/23] secint pt4 - finishing touches --- icons/mob/hud_jobs_vr.dmi | Bin 4064 -> 4092 bytes maps/yw/cryogaia-05-main.dmm | 4060 +++++++++++++++++----------------- 2 files changed, 2040 insertions(+), 2020 deletions(-) diff --git a/icons/mob/hud_jobs_vr.dmi b/icons/mob/hud_jobs_vr.dmi index 708094caadcf2ef9528b2ea8f88ff10a9cbfe689..9aa01e9ea59ed88747347cd2f1502b97a9c5cd16 100644 GIT binary patch delta 3436 zcmZuxc{tPy7v^WiGD4PVFiGMnlp#gJ%n&lx$sS^gB1YD-gkMADPK1#Vu9<8lYi^dz zV1_J_bXA({vd3g??0nrnzMkiMp6~qgzUQ2O&Uw#y-ck8&`4lByo0orB0m#6>KpYMS zu63|@czAe2ZLRHiuv6@7JUl?zqZB}j*ZEN)pave)cd?nsU(cBvN~Ukcw-0f8;yL7M zGi&++J%HLo)bUGU8lOz09hhb(A9OJMr!3mt%%7I zvGhfb^qk($eU#cXTR`hmML_F}>B|Ho7Pzk->-owLdc@L2H)63!a8RMnyNj1?M|rPR z7xB(}#w>0h-T}1g`g)UQYsg;^eM2gQRxS!SJ~7wi?C+bmJFBdri0jodgya#<>W~X_ z^9v3g%sMUArE`j2HM9+>E!wWpj`cEJN`Zg#!%IM%{UhUyGCtu>=?ga5uko|c;9CuJ ztG?tZRj1Ina7TuCSbJEBe@$md!PoRHn=SC6;PoVNtrMM;Vgmc|@w?+2F5$1C-4AAf7xDBpw9_2{0N&EHB7Sv@J4aOuGQ@jnGB zHzs+B!xGG?3ty+6d&GQ&gQAXvDEfJ#H`G1XY@SUqs{~wA-}d!+Rrvz7)iQYxckT}K zA2iQR4X)P*(L#d}P&o#+M?r`P+R%?_L|?6c0C3v1?juHnO$g=^$3VkKXrz7YfC-7r zmCIv#)mL`{t+0H=F~CkmLFWgM$NWprgcJ$=kpeApol~o{a-aXEGG`-o@TG7-E&Ny_ ziQ|R;-hBO}bC3F9(ZsLLE>Hk-Z&%6_EC7fZ$`s@J(+!13DQPaOJZ5Iq1F}j<=D*+& z0k>PbYS}P56B-)0QNAX-Ra=to?|ba*qo@2*;6Jnbj0nyeWaGjX)-?TKwV&88L--wc zd@n4>7gaO5E;KL(#L=~`@&(;m{Zm;tCzkt!=$hx)^xn@OJuPj-{IK1(ITd*g#Nmd4 z%prQ%-}mcPP8t1x97FEU7nWKpXAgN_fVdbM-RK}xj6r2D;%gHeNWDLlK@i->Nl}U z0=byB{Hfb=-PvLDA(i~Z8;NPit@f$gTXIC{8UmP8p9yILQ<}5))Unr@DkZ5aN1=qKelW(Z=oqUZe*+Y8tkP z8mA`n??=qtLDEj|h9m7H|M%Cb_)U<<<w0WJ-!IG7g&g&A6=&M~=_?thD>pw^Ul{3~D`g^ZCMiv(}WIl0oz24ED z#vy#3-_u1WtEXthVymXN?jy{~x`d$2T&Ee!!n48*=4G|OaQslTv52(HuRV+L9ByQJ zGsKYZJ(U7+xeI%DPjUusdS3VtDzFJ&hk4G7c?rNtzKC>clKHQXM@k2y1U*QO)DLJb z$RIxGfWhmif$(Ds)UHHlLq%KYgOR{h*r{{kP#2>_(#4)GnCIx?=i*PFAFCgS6#xYi ziMFJFAhHpOZcfnq5}94s?yaa>A8~HGtG`fob>DA+{!8vyq-hFJJ;p~vIPtS$XV&$9 zjG{bVWuU48Qp^%TNwP89ZO?GmMOZ#rPMR}^G+@dyln?b>8xQIuD7!B2NHpnA$HD9L z-IrHFd4H9(G*6ynfz8I9e}fEWY_~8m_iaR5=9z%SezA+;ai00Dd;$;h8O(p?l#f;* zC!x2(>&m&L+dY99^IDgPR#-LafaIyWHdWcbu9tC|kr2_i7@@j;jT7ofZ!K_gcS^`A7HVu7SOrtW=Nk z$?Ui9EMMs#Kvpm(b?gOiql3b4X=~}-{%7>lM1hab3+K`&tS86-DUt5M&_`DS8F-Rr zV2dTRZ8Th=?)soOYjo_ZrSeAxFf@&T)VoQ9ziAGzK0>;YFgE~3*A>@m2vz>{hLCD@ z6A$A{30-v6%GYcN$xtW(7}4a{M!98CFW_ zKT1O?3Kf)J0ew$Y2C?(t>@#(+v^K0g?Ok7vu`D@X6pfjBe(CmaHU1^U(@FBw?CgYK z(nj*zjc%QUpoDW^B{hAE_vs4b9P#_!)f-RU+}GESYR6o;LylgytBrDrY%QxDx>d5j zR_Re$*;}s!Zuq4WYtz#Ri)ea@$8XJ?uix4n4X5UA#g8xZMemq_QzNAT_QA90Y^*SO0WmxV#tWP ziTw~;UiB0HZiJ1A=Gl9XCKrgSZ(t)k!)xFolMgeoZLt2KC0T!SMo|p2dN_<%f}JG_ zslnOAe+~{l4^%bM7x zWb2ZsO=ep&mT(iH8%~oR88-1c>#I++nj)q)MuL~VBHW{vpoXK$D9`3;g$&Im`Z^+g zq&>Z-A@oOtI(ln)V+Caa7|x4TFjm_!L1QHq4ZE9u6@68@A{`*rLw60Kt-sfXoc3d< z-}l<60Jm;841D--d~ck(_aY1_n>`8cJsY<22~3|G`k#N`aTVaikC)~Cvi=oy0jeKn zP=KDiUM74C%z0J)baMlmEUMijOMl6%ykFJWp!R3a)FlH0H8lf+QkK8JznWTeAEgXL zEylvb6=Ja`XDk3GK^(2ygw!b@SOYqszCaNPM!D6ImP(|6Mit>xrU#ze6Fx&<7+?>~ zxRMw&S;6gqXnN%kX$e==4nU&qI9vB-2b|DMJUU@%P4k*H{0aAuD@V#Pw9m z=hEe(z~M2$y;pav7>x;nh;MdA z-tgH6{Y~|%uP`-X4sf5u;~%6i(lo2ETZ1Uvzv$^j;)=$7 ws3^pEbCgmY9ct`sN{~^kmH%J)e`Q#^6$~21^_1cnJO6JJXJTz!ZbXRv54ib6S^xk5 delta 3439 zcmZXWc{J2tAIGO*$V`?n%}7GlEQ9nz8H}O~g(xDEVF-n>#@NPpghZD7M79w>MV2sR z&x~w^Y{^*4*t2EJPM-Qb&vTyNInU>x&-Vo}=ic+apFL5QXuRYhvr?(6U{yMu z?&0Bq#bUExv}}SvphG@p#^xZ*H1iG!1b!KC{icteqc_3J#ly#i=new;rzcq^W`pI) zu4rqM$(*gA`dv@IgXOB){p}L1(qr#kHiI`8*OC{f72a|LGRa@u!A7EU^B4244?eZD zTjihVzdxZLU0*fmem)nl9U#9$CtmhYN=H9&!IelFuc3%9Ms5Ij3LwWs|9u4c~W-^(RQpaxXhGL~3lk>zNY7 zWfi{+4cCH!iJKhKNl+O`$^C%`^@}H~ zlsqa}xKNfMs~cHTvF>i9GU_#KD%jQX>O)lNTk|eHlF?}?<%|0}H)7lcYh?vH$XT$n zmufA<8vja4m*ZUD&dbFOhE{k$hyryhBwt$4g)Rp;NQ4r(aOz(47MGo~&!7=FtHIzOv0U4s39F}DU4&G)@Bei!uft`93(jAfcItcuZ$j_U-jY)N znVDB2e_|{aa?mBIo}M(TB9$D8>4rReLaJC!HB+c0wUi?-LZ*k~9idQY)0~VDo>jf8 zU6kO=O`$ug(F||ssu@WD-NqULDQ#G2h%V{{qPMLbc?}+`Mmn$CuWs03daT1`C;#Ks zh+Y0ZdsiiK?zbEKcH}=>UxfA#pJmxW>N0Ac--*=lSpjhn*o8KQCL0Q>;CDB8RTt0;eL2)xJR388Fd`0x&CwrX;pltYymGP(BJ&r%Q;3o z8dr!CT<{@UU8te`C9GNQVl~u@xdkm^JFVE=Td$%uc`z4D)YI??SgLSRc+Wo?_rvJp zfNH?bx3^R2q-RmhDCk4aCN}2YI7p2M!>{GJdY?r#eB zrBdAjAIWSs|4fx7YuF>cy33m)*)-p0eG2b$C`rIoU3~v*X^+hSUKfkiJ8A%7p1yi2 z$|o?u$mG=N3W`3U;s_Tow@~?=3RdJ^jJ2m+>g!+pHol5mQs1a3$aK3aR}&*n<^aF5 zhaAUdd1AyO<@n&TzxEutfWN66rI*{zn5jLnevcPK{$&;ajZo{JZ?Hb=uM>H=uk(kg z!$rKk(?V|Eo#(ws^AEnHh%ew~XXjO4ypH=LYkGgVR~SM$s&G-|GyA--*c7zf0GA^82)w&np|Z>tR)>*@ zOPJrHR8aL!#R88o!{JiE{im#2=htg8hh4YM#7D-Z^5Fg73l`>JQ1R>*a4^vqaO-K=EH_*wkY4DQp7sC-K@X7 zsSw+`4O}+(kYXIlREXeK%r)s9%&#&eN#g;?Lr9B0tb+(#*5s5=l^9=p%ENR2WB!i{ zJ$AX)Bi-{sSB3C=j7H;()#a^?a4mPAA7ME;IsNsbjh`Q0DcOFgWiIVBaU$(rWytZt z2|V}Xh39=R(&tL*5{)Bl!)*jFoxE9xKB#XSWipXMpEfcbI`W>A)s?zUVctO}abkAt zfJ4_Nw^F=yvH&zxtGGME&==tk5G+{CyqevI$Cb5FH?qv04=t|SgmY0YrRzv=l^=$u zz+}4RuUrvC-)7yG_aK@Azuuf2xF4mUBa+1a2(DJvy05zhE#G;tQQGQgu4j=)uYXX0 zAsyJ<8G#;8mLr?)h38mi4GLV#l4?Sxtk)GPbHw5j3~|>M8?!NT7&(S49Cp|#ET z23{7ZcD2y>-Y7|NywW!D)w<>XItB8NJ2T5#lNSjp#-;p>59^xX`T0XXaOc$Sp{ORo z1cL{i>#$Wzt1W-8(IytFN&7RIm9*loCLBlOP#t`-l)Tk>PPDjjYUK&_r9cUX>a*FE z6_=mF(q@^#D`1$KQVB_VMu;$8$0*RYALBMQ7TjEvH(mzI6lXrG4xk{I!?omtpZBys zWHz{V+1}|A?Mki>8gzmjd+FWx1Ld{-=UQ^A{Tf(EL6C`_c&2e~vNn_~=TQ<^;$FkWN63y>BXNk{%Muu>;F z(@KAjJx)M}Jbkq5euUiNN%BnPpu0SW&BOD!$}==RAf5f3p#-t*l{E@R&Xk`H`?0_~ z$puf@TqRLQlQrCBj=qJ-fOQ)s?OP38_MM9aB9se5+H^?dp zeLGuS7@;~L6hMPlakV2$If)ST>mJ2_-rB$YCv@{Hry}uyX7lvGrd>U;y4snfpmrm? z{dEEVhW|KgFX&FlPYPqTBgQ$;M&WZOYh-;OI%3+rN>@eWMqVSb%Dos$@OZ^Ha`t;X zewh^{o#=uCzVE`oI20G!VN6{n0aMw$zNkH7hD%{*?x<2Qx5$_HWGzajaAY{s+Lc1j zdY}(1A=z$4zXH91&Ec5q_-m|Mr?ID}kni+>Vh{;{lu~YG&PnoB!;EOl(w-Vs7pLt| zI{XTV*iUuhOROTtBQh9V%ZXQJoB%`h6A578&7FYtn+8Pw$VGwf#|i9amMZJVm}u7? zsOw1^h#^5t&h*Yb<5T3$COb~5sOP8GTK{Yd=*{uVaVP}^y>pE5)~US~;pVE&=Q>Q2 z_WjUq(pPb{^@FmK>-h@7&F_GDnpZM#U!cs_N14`FifqOR>sUw_%43)XoD}~dtBlh zwNKhQGd*dYv=(;-<-+HM#3krBjbvgwI%I7tde7t5<<_Cp5?_aT7}^Pv87&rnWakO} zj|=?H-q*5L$q>q-ZAH5;qd7a?spzBtmL*JV13ylH$iZ)V19y4jAv+dgN_jlsgJCAh z)lV#tf-i!}6Kq6kJaSqwx3Z2(AJsSQlu3wCx|kX)#P$#3f6J_9A+P1?`(xDuj2T?) zGF4}s<-OP#_(^!v`3R&7ZBK5{HKB(6!PI2ox$pn}mhVz^%32x6KdC9{*ZcnYp*!u@ zDBu9J{LM5p6N3HCc3c8h?uQg4Qf0pEUv>O;wb1~Kr6#aH(U#zn48FwgEIK0dw=md= zkuzG JE53lI{0o|ZN;Uuh diff --git a/maps/yw/cryogaia-05-main.dmm b/maps/yw/cryogaia-05-main.dmm index 4e54cbd369..68ced8e5c4 100644 --- a/maps/yw/cryogaia-05-main.dmm +++ b/maps/yw/cryogaia-05-main.dmm @@ -19105,7 +19105,8 @@ /area/borealis2/outdoors/grounds) "aKt" = ( /obj/machinery/door/airlock/glass_security{ - name = "Security Pilot Officer Office" + name = "Security Pilot Officer Office"; + req_one_access = list(51,52) }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/steel, @@ -49566,7 +49567,8 @@ /area/security/lobby) "bLR" = ( /obj/machinery/door/airlock/glass_security{ - name = "Security Pilot Officer Office" + name = "Security Pilot Officer Office"; + req_one_access = list(51,52) }, /obj/structure/cable/green{ d1 = 1; @@ -62497,17 +62499,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/primary/central_one) -"ckN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - icon_state = "intact-fuel"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1; - icon_state = "map" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) "ckO" = ( /obj/machinery/alarm{ dir = 4; @@ -62697,417 +62688,17 @@ }, /turf/simulated/floor/tiled/red, /area/security/outpost) -"czP" = ( -/turf/simulated/wall/r_wall, -/area/security/hangar) -"cLv" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/sign/directions/security, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"cLZ" = ( -/obj/machinery/suit_cycler/medical, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_prep) -"cYO" = ( -/turf/simulated/floor/tiled/dark, -/area/security/briefing_room) -"cZX" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/donkpockets, -/turf/simulated/floor/tiled/dark, -/area/security/briefing_room) -"dmp" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - icon_state = "map-fuel"; - dir = 1 - }, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"dpN" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"dvf" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel, -/area/maintenance/medbay) -"dCX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"dDd" = ( -/obj/structure/sign/directions/science, -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_one) -"dLC" = ( -/obj/machinery/light, -/obj/machinery/computer/ship/engines{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"dQJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5; - icon_state = "intact" - }, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"dZv" = ( -/obj/machinery/light, -/obj/machinery/power/smes/buildable/point_of_interest, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"ebv" = ( -/obj/structure/cable/green{ - icon_state = "2-8" - }, -/turf/simulated/wall/r_wall, -/area/security/armoury) -"erI" = ( -/obj/structure/closet/crate, -/obj/item/weapon/book/manual/security_space_law, -/obj/item/weapon/storage/box/cups, -/turf/simulated/floor/tiled/dark, -/area/security/briefing_room) -"eti" = ( -/obj/structure/sign/directions/bridge{ - icon_state = "direction_bridge"; - dir = 4 - }, -/turf/simulated/wall, -/area/maintenance/substation/civilian) -"ety" = ( -/obj/machinery/door/window/brigdoor/northright{ - name = "SAR Voidsuits"; - req_access = newlist(); - req_one_access = list(68) - }, -/turf/simulated/floor/tiled, -/area/cryogaia/station/explorer_prep) -"eyE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/corner/red, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"eFW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"eNQ" = ( -/obj/structure/table/standard, -/obj/item/device/flashlight, -/obj/item/device/radio, -/turf/simulated/floor/tiled/dark, -/area/security/briefing_room) -"eQA" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/sign/directions/science, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"eVH" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/structure/handrail, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"eZz" = ( -/obj/machinery/pointdefense_control{ - id_tag = "secshuttle_pd"; - name = "shuttle laser FCS" - }, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"fcU" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; +"cpp" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ frequency = 1380; - id_tag = "secshuttle_docker_pump_out_internal" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"fln" = ( -/obj/machinery/shipsensors{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/shuttle/security) -"fnX" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"fsq" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/corner/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"fwk" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - icon_state = "borderfloorcorner_black"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger/corner{ - icon_state = "dangercorner"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"fCD" = ( -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "secpilotoffice"; - name = "Office Shutters"; - pixel_x = -26; - pixel_y = -24; - req_access = list(51) - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"fEK" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"fHx" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"fHC" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"fIr" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security Hangar South"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"fIL" = ( -/obj/structure/sign/directions/science, -/turf/simulated/wall, -/area/storage/primary) -"gaV" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/industrial/danger, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"gcS" = ( -/obj/machinery/door/airlock/multi_tile/metal{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "secshuttle_door_ext"; - locked = 1; - name = "Rear Airlock" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - icon_state = "intact-fuel"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"geR" = ( -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"gfy" = ( -/obj/structure/sign/redcross{ - desc = "The Star of Life, a symbol of Medical Aid."; - icon_state = "lifestar"; - name = "Medbay" - }, -/turf/simulated/wall/r_wall, -/area/security/hangar) -"gvW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"gwb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/r_wall, -/area/engineering/workshop) -"gBJ" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/structure/catwalk, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"gNS" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1380; - id_tag = "secshuttle_vent" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"gOn" = ( -/obj/structure/table/standard, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/glass, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/security/armoury) -"gQv" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/machinery/door/window/brigdoor/southright{ + id_tag = "secshuttle_door_int"; + name = "Airlock Access"; req_one_access = list(1) }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/weapon/tank/jetpack/oxygen, -/obj/item/clothing/suit/space/void/security/alt, -/obj/item/clothing/head/helmet/space/void/security/alt, -/obj/item/device/gps/security, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"gQF" = ( -/obj/machinery/suit_cycler/captain, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"gVi" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"crg" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -63129,55 +62720,502 @@ }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"gVt" = ( -/obj/effect/floor_decal/snow/floor/edges, +"csz" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "secpilotoffice"; + layer = 3.1; + name = "Office Shutters" + }, +/obj/structure/table/marble, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"cuv" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"cwD" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/voidcraft{ + frequency = 1380; + id_tag = "secsh_compartment"; + name = "Passenger Compartment"; + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"cGu" = ( +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"cLv" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/directions/security, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"cLZ" = ( +/obj/machinery/suit_cycler/medical, +/turf/simulated/floor/tiled, +/area/cryogaia/station/explorer_prep) +"cNr" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"cOF" = ( +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "secshuttle_sensor"; + master_tag = "expshuttle_docker"; + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "secshuttle_vent" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"cRD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"cSk" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"cVZ" = ( +/obj/machinery/computer/shuttle_control/explore/security, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"doX" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8; + icon_state = "shuttle_chair" + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/structure/closet/walllocker/emerglocker/east, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"dzO" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + icon_state = "map-fuel"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"dDd" = ( +/obj/structure/sign/directions/science, +/turf/simulated/wall/r_wall, +/area/hallway/primary/central_one) +"dQb" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1380; + id_tag = "secsh_cabin"; + name = "Cabin Access"; + req_one_access = list(51) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"dQu" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/wall, +/area/security/armoury) +"dVw" = ( +/turf/simulated/floor/tiled/steel, +/area/maintenance/medbay) +"dWP" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/wall/r_wall, +/area/security/armoury) +"eie" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/wall/r_wall, +/area/security/armoury) +"eiF" = ( /obj/structure/catwalk, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"eks" = ( +/obj/machinery/computer/ship/sensors{ + dir = 4; + req_one_access = list(51) + }, +/obj/machinery/power/terminal, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"emj" = ( +/obj/structure/catwalk, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, /obj/structure/railing{ dir = 2; flags = null }, /turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"hjV" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 +/area/borealis2/outdoors/grounds/power) +"emo" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1; + name = "pilot's chair" }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 +/obj/machinery/button/remote/airlock{ + desiredstate = 1; + id = "secsh_compartment"; + name = "Compartment Access"; + pixel_x = 6; + pixel_y = -24; + req_one_access = list(51); + specialfunctions = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"hjZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/table/woodentable, -/obj/machinery/firealarm{ +/obj/machinery/button/remote/airlock{ + desiredstate = 1; + id = "secsh_cabin"; + name = "Cabin Lockdown"; + pixel_x = -6; + pixel_y = -24; + req_one_access = list(51); + specialfunctions = 4 + }, +/obj/machinery/button/remote/blast_door{ dir = 4; - layer = 3.3; - pixel_x = 26 + id = "secshut_cabinshut"; + name = "Cabin Blast Shutters"; + pixel_x = 0; + pixel_y = -36; + req_one_access = list(51) }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"hpq" = ( -/turf/simulated/wall/rshull, -/area/shuttle/security) -"hsS" = ( -/obj/machinery/power/pointdefense{ - id_tag = "secshuttle_pd" - }, -/turf/simulated/floor/plating, -/area/shuttle/security) -"hub" = ( -/obj/machinery/sleeper{ - dir = 8 +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"hJi" = ( +"eti" = ( +/obj/structure/sign/directions/bridge{ + icon_state = "direction_bridge"; + dir = 4 + }, +/turf/simulated/wall, +/area/maintenance/substation/civilian) +"ety" = ( +/obj/machinery/door/window/brigdoor/northright{ + name = "SAR Voidsuits"; + req_access = newlist(); + req_one_access = list(68) + }, +/turf/simulated/floor/tiled, +/area/cryogaia/station/explorer_prep) +"ewj" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/borealis2/outdoors/grounds) +"ewH" = ( +/obj/machinery/light, +/obj/machinery/power/smes/buildable/point_of_interest{ + req_one_access = list(51) + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"eQA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/directions/science, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"fat" = ( +/obj/item/device/geiger/wall{ + dir = 4; + pixel_x = -30 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/security/airlock) +"fii" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/security/hangar) +"fkp" = ( +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"frT" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1; + name = "co-pilot's chair" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"fww" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"fyx" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"fCJ" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/industrial/danger, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"fIL" = ( +/obj/structure/sign/directions/science, +/turf/simulated/wall, +/area/storage/primary) +"fLP" = ( +/obj/structure/grille, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/security/armoury) +"fMp" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/tiled{ + icon_state = "monotile" + }, +/area/engineering/workshop) +"fUD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"gai" = ( +/obj/machinery/light, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"gcR" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"gfu" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel, +/area/security/briefing_room) +"gqk" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "secshuttle_docker_pump_out_internal" + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"gtK" = ( +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"gEr" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/corner/red/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"gEz" = ( +/obj/structure/closet/crate, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/storage/box/cups, +/turf/simulated/floor/tiled/dark, +/area/security/briefing_room) +"gOn" = ( +/obj/structure/table/standard, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/glass, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"gQF" = ( +/obj/machinery/suit_cycler/captain, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"gTQ" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight, +/obj/item/device/radio, +/turf/simulated/floor/tiled/dark, +/area/security/briefing_room) +"gVY" = ( +/obj/effect/floor_decal/borderfloorblack/corner, +/obj/effect/floor_decal/industrial/danger/corner, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"hge" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 8 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security Hangar Emergency Route"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"hoH" = ( +/turf/simulated/floor/tiled/dark, +/area/security/briefing_room) +"hug" = ( /obj/machinery/computer/secure_data{ dir = 8 }, @@ -63186,6 +63224,12 @@ }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) +"hLS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) "hRF" = ( /obj/machinery/light{ dir = 4; @@ -63197,29 +63241,54 @@ }, /turf/simulated/floor/tiled/dark, /area/security/hangar) -"hSN" = ( -/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ - dir = 10; - frequency = 1380; - id_tag = "secshuttle_exterior_sensor"; - master_tag = "secshuttle_docker"; - pixel_x = 0; - pixel_y = 28 +"hXG" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 }, /obj/effect/floor_decal/industrial/danger{ - icon_state = "danger"; - dir = 8 + dir = 4 }, -/obj/machinery/door/airlock/voidcraft{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "secshuttle_door_ext"; - locked = 1; - name = "Port Airlock" +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"ilB" = ( +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 }, -/turf/simulated/floor/tiled/techfloor, +/turf/simulated/floor/tiled/dark, +/area/security/briefing_room) +"ioE" = ( +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"iqo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Security Pilot" + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"irz" = ( +/turf/simulated/floor/reinforced, +/area/security/hangar) +"iwp" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/rshull, /area/shuttle/security) -"hSY" = ( +"iCz" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -63227,35 +63296,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"hVx" = ( -/obj/item/device/geiger/wall{ - dir = 4; - pixel_x = -30 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/security/airlock) -"hXN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"ipx" = ( -/obj/structure/closet/wardrobe/tactical, -/obj/machinery/camera/motion/security{ - c_tag = "Armory Tactical (Motion)" - }, -/turf/simulated/floor/tiled/dark, -/area/security/tactical) "iGb" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -63272,89 +63312,168 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/cryogaia/station/explorer_prep) -"iGK" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 +"iGt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" }, -/obj/structure/closet/crate/secure/phoron{ - desc = "A secure crate that contains spare canisters of phoron fuel, used by modern shuttles."; - name = "spare fuel crate"; - req_one_access = list(51,67) +/turf/simulated/wall/rshull, +/area/shuttle/security) +"iPS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" }, -/obj/item/weapon/tank/phoron, -/obj/item/weapon/tank/phoron, -/obj/effect/floor_decal/corner/red/full{ - dir = 1 +/turf/simulated/wall/rshull, +/area/shuttle/security) +"jdu" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 4 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"jio" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"jpD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + icon_state = "intact-fuel"; + dir = 6 + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"jxU" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"iGO" = ( +"jAq" = ( +/turf/simulated/wall/r_wall, +/area/security/hangar) +"jDo" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"jEw" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/industrial/danger, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/camera/network/security{ + c_tag = "Security Hangar North" }, -/obj/effect/floor_decal/corner/blue{ +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"jLo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/airlock) +"jSJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"jXr" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "secshuttle_docker_pump_out_external" + }, +/obj/effect/floor_decal/industrial/warning{ dir = 6 }, -/turf/simulated/floor/tiled/steel, -/area/maintenance/medbay) -"iMf" = ( -/obj/structure/catwalk, -/obj/structure/cable/heavyduty{ +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"jYk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; icon_state = "1-2" }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 +/turf/simulated/wall/r_wall, +/area/engineering/workshop) +"kfm" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"iMQ" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ - frequency = 1380; - id_tag = "secsh_cabin"; - name = "Cabin Access"; - req_one_access = list(51) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"iVd" = ( -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"jea" = ( -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/voidcraft{ - frequency = 1380; - id_tag = "secsh_compartment"; - name = "Passenger Compartment"; +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/obj/machinery/door/window/brigdoor/southright{ req_one_access = list(1) }, +/obj/item/device/gps/security, +/turf/simulated/floor/tiled/dark, +/area/security/airlock) +"kfp" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"kmr" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "secshut_cabinshut"; + layer = 3.1; + name = "Cabin Shutters" + }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"jAj" = ( +"kmT" = ( +/obj/structure/table/standard, +/obj/structure/extinguisher_cabinet{ + pixel_y = -26 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"knz" = ( /obj/effect/floor_decal/snow/floor/edges{ dir = 1 }, @@ -63371,117 +63490,73 @@ }, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds/power) -"jLC" = ( -/obj/machinery/sleep_console, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"jNH" = ( -/obj/machinery/door/airlock/maintenance/sec{ - name = "Emergency Medical Access"; - req_one_access = list(1,52) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel, -/area/security/hangar) -"jPi" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"jQM" = ( -/obj/machinery/door/airlock/voidcraft/vertical{ +"kol" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; frequency = 1380; - id_tag = "secshuttle_door_int"; - name = "Airlock Access"; - req_one_access = list(1) + id_tag = "secshuttle_vent" }, -/obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"jRG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/r_wall, -/area/security/armoury) -"jWp" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +"kxN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 + }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"jXl" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 8 - }, +"kEB" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"knc" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/industrial/danger, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/corner/blue{ - dir = 4 - }, /turf/simulated/floor/tiled/dark, /area/security/hangar) -"koz" = ( -/obj/effect/floor_decal/corner/red{ - dir = 6 +"kHh" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ +/turf/simulated/wall, +/area/borealis2/outdoors/grounds) +"kIl" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/wall/r_wall, +/area/security/armoury) +"kIo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; frequency = 1380; - id_tag = "secshuttle_dock"; - pixel_x = 32; - req_one_access = list(19,43,67) + id_tag = "secshuttle_docker_pump_out_external" }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"kEx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"kMB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/table/woodentable, -/obj/machinery/camera/network/security{ - c_tag = "Pilot's Office"; - dir = 8 - }, -/obj/item/weapon/paper{ - info = "So, you're part of the new Security Pilot detail huh? Welcome aboard. Keep this paper handy, but make sure you leave it where other Pilot-Officers can see. Some words of advice; always land on the port side of whatever you're coming at because the gun coverage is better on the interceptor's starboard side, no thanks that sensor antenna. Plus that starboard side is where your hookup line to the local fuel depot is, whenever they finish towing that thing into position. Don't try to land her in the expedition hangar though! The final approach software's dumb as a box of rocks and it miscalculates where you're supposed to land. See you starside! -K.H."; - name = "Message to New Security Pilots" - }, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) "kOa" = ( /obj/structure/table/rack/shelf, /obj/item/clothing/shoes/magboots, @@ -63491,17 +63566,56 @@ /obj/item/clothing/head/helmet/space/void/medical, /turf/simulated/floor/tiled, /area/cryogaia/station/explorer_prep) -"lhB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact" +"kPo" = ( +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar"; + name = "Medbay" }, +/turf/simulated/wall/r_wall, +/area/security/hangar) +"ldV" = ( +/obj/structure/grille, +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/security/armoury) +"lfW" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "secshuttle_vent" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"lgd" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel, /turf/simulated/wall/rshull, /area/shuttle/security) -"luH" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, -/area/borealis2/outdoors/grounds) +"lya" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) "lAq" = ( /obj/structure/cable{ d1 = 4; @@ -63514,64 +63628,52 @@ }, /turf/simulated/floor/plating, /area/maintenance/bridge) -"lKE" = ( -/obj/effect/floor_decal/snow/floor/edges3{ - icon_state = "gravsnow_edges"; +"lCH" = ( +/obj/machinery/shipsensors{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/security) +"lKr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1; + icon_state = "map" + }, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"lVO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"mfS" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 1 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 4 + }, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/structure/railing{ dir = 1 }, /turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"lNv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"lXR" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"lYP" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8; - icon_state = "shuttle_chair" - }, -/obj/structure/fuel_port{ - dir = 4; - pixel_x = 24; - pixel_y = 0 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"lZI" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/airlock) -"mbE" = ( -/obj/effect/floor_decal/borderfloorblack/corner{ - icon_state = "borderfloorcorner_black"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/danger/corner{ - icon_state = "dangercorner"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) +/area/borealis2/outdoors/grounds/power) "mjD" = ( /obj/machinery/photocopier, /turf/simulated/floor/tiled/dark, @@ -63583,22 +63685,6 @@ /obj/effect/floor_decal/snow/floor/edges, /turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, /area/borealis2/outdoors/grounds) -"mtD" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4; - icon_state = "shuttle_chair" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"myq" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) "mBp" = ( /obj/structure/table/marble, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -63617,40 +63703,114 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"mEv" = ( -/obj/structure/handrail{ +"mCa" = ( +/obj/machinery/light/small{ dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"mIU" = ( +/turf/simulated/floor/tiled/steel, +/area/maintenance/medbay) +"mEg" = ( /obj/structure/bed/chair/shuttle{ dir = 4; icon_state = "shuttle_chair" }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - icon_state = "extinguisher_closed"; +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"mLn" = ( +/obj/machinery/newscaster/security_unit{ pixel_x = -30 }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"mNy" = ( +/obj/structure/table/rack, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 1; + name = "Energy Firearms" + }, +/obj/item/weapon/gun/energy/gun{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/gun/energy/gun, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/red, +/area/security/armoury) +"mOW" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel, +/area/maintenance/medbay) +"mPr" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "secshuttle_vent" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + cycle_to_external_air = 1; + frequency = 1380; + id_tag = "secshuttle_docker"; + pixel_y = 26; + req_one_access = list(1); + tag_airpump = "secshuttle_vent"; + tag_chamber_sensor = "secshuttle_sensor"; + tag_exterior_door = "secshuttle_door_ext"; + tag_exterior_sensor = "secshuttle_exterior_sensor"; + tag_interior_door = "secshuttle_door_int" + }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"mOf" = ( -/obj/structure/catwalk, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ +"mQz" = ( +/obj/effect/floor_decal/borderfloorblack{ dir = 8 }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"mOp" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, /area/security/hangar) -"mSb" = ( +"nkp" = ( +/obj/machinery/pointdefense_control{ + id_tag = "secshuttle_pd"; + name = "shuttle laser FCS"; + req_one_access = list(51) + }, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"nmS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall, +/area/borealis2/outdoors/grounds) +"nIo" = ( +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"nKF" = ( +/obj/structure/sign/directions/security{ + icon_state = "direction_sec"; + dir = 8 + }, +/turf/simulated/wall/r_wall, +/area/hallway/primary/central_one) +"nVM" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; @@ -63662,171 +63822,40 @@ icon_state = "map-fuel"; dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9; - icon_state = "intact" - }, /turf/simulated/wall/rshull, /area/shuttle/security) -"mWX" = ( -/obj/structure/catwalk, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/railing{ - dir = 2; - flags = null - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"mWZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 1; - id = "secshut_cabinshut"; - layer = 3.1; - name = "Cabin Shutters" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"ncl" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"ndP" = ( -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "secshuttle_sensor"; - master_tag = "expshuttle_docker"; - pixel_y = 28 - }, -/obj/machinery/light{ +"nXM" = ( +/obj/machinery/light, +/obj/machinery/computer/ship/engines{ dir = 8; - icon_state = "tube1" + req_one_access = list(51) }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - frequency = 1380; - id_tag = "secshuttle_vent" +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = newlist(); + req_one_access = list(51) + }, +/obj/structure/cable{ + icon_state = "0-8" }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"nkg" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1; - name = "co-pilot's chair" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"nso" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security Hangar Emergency Route"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"nIw" = ( -/obj/structure/grille, -/obj/structure/cable/green, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/security/armoury) -"nJd" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 4; - id = "secshut_cabinshut"; - layer = 3.1; - name = "Cabin Shutters" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"nKa" = ( -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"nKF" = ( -/obj/structure/sign/directions/security{ - icon_state = "direction_sec"; - dir = 8 - }, -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_one) -"nLJ" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/structure/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"nOn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; +"oeD" = ( +/obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"nQu" = ( -/obj/machinery/suit_cycler/security, -/obj/effect/floor_decal/corner/red/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"oiS" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "secshuttle_docker_pump_out_external" - }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"osn" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/industrial/danger, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security Hangar North" +"omp" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/donkpockets, +/turf/simulated/floor/tiled/dark, +/area/security/briefing_room) +"omx" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 }, /turf/simulated/floor/tiled/dark, /area/security/hangar) @@ -63836,57 +63865,28 @@ }, /turf/simulated/floor/plating, /area/borealis2/outdoors/grounds/traderpad) -"oQh" = ( +"owi" = ( +/obj/item/device/geiger/wall{ + dir = 1; + pixel_y = -30 + }, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/steel, -/area/security/briefing_room) -"oRX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/sign/directions/cargo, -/turf/simulated/floor/plating, -/area/hallway/primary/central_one) -"oTu" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/obj/item/weapon/tank/jetpack/oxygen, -/obj/item/clothing/suit/space/void/security, -/obj/item/clothing/head/helmet/space/void/security, -/obj/machinery/door/window/brigdoor/southright{ - req_one_access = list(1) - }, -/obj/item/device/gps/security, -/turf/simulated/floor/tiled/dark, -/area/security/airlock) -"pcP" = ( -/obj/structure/sign/directions/engineering, -/turf/simulated/wall/r_wall, -/area/hallway/primary/central_one) -"pgL" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/donkpockets, /obj/effect/floor_decal/corner/red{ - dir = 5 + dir = 10 }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"psH" = ( +"oyi" = ( /obj/structure/cable{ - icon_state = "4-8" + d1 = 1; + d2 = 4; + icon_state = "1-4" }, /obj/structure/railing{ dir = 1 @@ -63896,14 +63896,71 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"puQ" = ( +"oHa" = ( +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/camera/network/security{ + c_tag = "Security Voidsuits"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/airlock) +"oRX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/directions/cargo, +/turf/simulated/floor/plating, +/area/hallway/primary/central_one) +"oVX" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + icon_state = "borderfloorcorner_black"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + icon_state = "dangercorner"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"pbq" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8; + icon_state = "shuttle_chair" + }, +/obj/structure/fuel_port{ + dir = 4; + pixel_x = 24; + pixel_y = 0 + }, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/turf/simulated/wall, -/area/borealis2/outdoors/grounds) +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"pcP" = ( +/obj/structure/sign/directions/engineering, +/turf/simulated/wall/r_wall, +/area/hallway/primary/central_one) +"piA" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/industrial/danger, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) "pxX" = ( /obj/structure/cable/green{ d1 = 4; @@ -63930,14 +63987,50 @@ }, /turf/simulated/floor/tiled/steel, /area/security/hallway) -"pzJ" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 4 +"pye" = ( +/obj/machinery/light, +/obj/effect/floor_decal/corner/red/full, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"pyX" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "secshuttle_dock"; + pixel_x = 32; + req_one_access = list(19,43,67) + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"pWK" = ( +/obj/effect/floor_decal/snow/floor/edges3{ + icon_state = "gravsnow_edges"; + dir = 1 }, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds) -"pEH" = ( +"qaj" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 4 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"qcr" = ( /obj/structure/railing{ dir = 1 }, @@ -63949,231 +64042,78 @@ }, /turf/simulated/floor/plating, /area/maintenance/medbay) -"pFr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"pKD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"pLE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Security Pilot" - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"pOL" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable/green, -/obj/effect/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"pRu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"pUc" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/structure/closet/secure_closet{ - name = "confiscated goods storage"; - req_one_access = list(1) - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"qdr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - icon_state = "intact-fuel"; - dir = 6 - }, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"qfy" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) "qfY" = ( /obj/structure/sign/directions/security, /turf/simulated/wall/r_wall, /area/hallway/primary/central_one) -"qmg" = ( -/obj/structure/cable{ - icon_state = "4-8" +"qgy" = ( +/turf/simulated/wall/rshull, +/area/shuttle/security) +"qws" = ( +/obj/machinery/power/pointdefense{ + id_tag = "secshuttle_pd" + }, +/turf/simulated/floor/plating, +/area/shuttle/security) +"qwS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + icon_state = "intact-fuel"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1; + icon_state = "map" }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"qtY" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath, -/obj/item/clothing/shoes/magboots, -/obj/structure/window/reinforced{ +"qIb" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/effect/floor_decal/steeldecal/steel_decals9{ dir = 8 }, -/obj/machinery/door/window/brigdoor/southleft{ - req_one_access = list(1) +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/corner/red{ + dir = 5 }, -/obj/item/weapon/tank/jetpack/oxygen, -/obj/item/clothing/suit/space/void/security/alt, -/obj/item/clothing/head/helmet/space/void/security/alt, -/obj/item/device/gps/security, +/obj/structure/closet/secure_closet/security_pilot, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"qEm" = ( -/obj/effect/floor_decal/industrial/warning/dust{ +"qJB" = ( +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"raA" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/structure/railing{ + icon_state = "railing0"; dir = 1 }, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds) -"qZz" = ( -/obj/machinery/atmospherics/unary/engine{ - icon_state = "nozzle"; - dir = 1 +"rgm" = ( +/obj/structure/closet/wardrobe/tactical, +/obj/machinery/camera/motion/security{ + c_tag = "Armory Tactical (Motion)" }, -/turf/simulated/floor/reinforced, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/security) -"rfw" = ( +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"rji" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + d1 = 2; + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/tiled/dark, /area/security/hangar) -"rnh" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/corner/red/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"rpz" = ( -/obj/machinery/newscaster/security_unit{ - pixel_x = -30 - }, +"rkV" = ( /obj/effect/floor_decal/corner/red{ dir = 9 }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"rsy" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "secpilotoffice"; - layer = 3.1; - name = "Office Shutters" - }, -/obj/structure/table/marble, -/obj/machinery/door/window/brigdoor/westleft{ - req_access = list(51) - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"ruW" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - icon_state = "map-fuel"; - dir = 1 - }, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"rxV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel, -/area/maintenance/medbay) -"rLZ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/simulated/floor/tiled{ - icon_state = "monotile" - }, -/area/engineering/workshop) -"rQv" = ( -/obj/machinery/computer/ship/sensors{ - dir = 4 - }, -/obj/machinery/power/terminal, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"sao" = ( -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"scv" = ( +"rrE" = ( /obj/effect/floor_decal/snow/floor/edges{ dir = 8 }, @@ -64187,6 +64127,87 @@ }, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds/power) +"rrK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/steel, +/area/maintenance/medbay) +"rvG" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/corner/red/full{ + dir = 8 + }, +/obj/structure/closet/secure_closet/security_pilot, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"rJE" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4; + icon_state = "shuttle_chair" + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/structure/closet/walllocker/emerglocker/west, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"rMq" = ( +/obj/effect/floor_decal/snow/floor/edges, +/obj/structure/catwalk, +/obj/structure/railing{ + dir = 2; + flags = null + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"rPX" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + icon_state = "borderfloorcorner_black"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + icon_state = "dangercorner"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"rVI" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"rVT" = ( +/obj/machinery/computer/ship/helm{ + req_one_access = list(51) + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) "sdy" = ( /obj/structure/table/rack, /obj/machinery/door/window/brigdoor/northright{ @@ -64209,99 +64230,139 @@ /obj/item/clothing/head/helmet/space/void/captain, /turf/simulated/floor/wood, /area/crew_quarters/captain) -"srp" = ( +"shU" = ( +/obj/structure/table/bench/steel, +/obj/effect/floor_decal/corner/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"slf" = ( +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "secpilotoffice"; + name = "Office Shutters"; + pixel_x = -26; + pixel_y = -24; + req_access = list(51) + }, +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"spT" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "secshuttle_docker_pump_out_internal" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"ste" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"sDF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + icon_state = "map-fuel"; + dir = 1 + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"sFG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 1; + id = "secshut_cabinshut"; + layer = 3.1; + name = "Cabin Shutters" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"sJx" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"sOY" = ( +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel, -/area/security/briefing_room) -"ssz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/maintenance/medbay) -"sFD" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8; - icon_state = "shuttle_chair" - }, -/obj/structure/closet/medical_wall{ - pixel_x = 32; - pixel_y = 0 - }, -/obj/item/weapon/storage/firstaid/o2, -/obj/item/weapon/storage/firstaid/regular, +/obj/machinery/sleep_console, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"sPM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/wall/r_wall, -/area/security/armoury) -"sTs" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; +"tbC" = ( +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 10; frequency = 1380; - id_tag = "secshuttle_vent" + id_tag = "secshuttle_exterior_sensor"; + master_tag = "secshuttle_docker"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/effect/floor_decal/industrial/danger{ + icon_state = "danger"; + dir = 8 + }, +/obj/machinery/door/airlock/voidcraft{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "secshuttle_door_ext"; + locked = 1; + name = "Port Airlock" }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"sTy" = ( -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds) -"sUn" = ( -/obj/machinery/light, -/obj/effect/floor_decal/corner/red/full, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"sWe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) "tbF" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/sign/directions/engineering, /turf/simulated/floor/plating, /area/hallway/primary/central_one) -"tdv" = ( -/obj/effect/floor_decal/corner/red{ - dir = 9 +"tcm" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) "tdL" = ( /obj/structure/cable/green{ d1 = 4; @@ -64316,7 +64377,33 @@ }, /turf/simulated/wall/r_wall, /area/security/pilotroom) -"tjT" = ( +"tgo" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/closet/secure_closet{ + name = "confiscated goods storage"; + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"tqc" = ( +/obj/structure/railing, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/maintenance/medbay) +"tKK" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8; + icon_state = "shuttle_chair" + }, +/obj/structure/closet/medical_wall{ + pixel_x = 32; + pixel_y = 0 + }, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/storage/firstaid/regular, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"tVB" = ( /obj/effect/floor_decal/borderfloorblack/corner{ icon_state = "borderfloorcorner_black"; dir = 4 @@ -64334,10 +64421,120 @@ }, /turf/simulated/floor/tiled/dark, /area/security/hangar) -"tlE" = ( -/turf/simulated/floor/reinforced, +"tWc" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, /area/security/hangar) -"trf" = ( +"tWD" = ( +/obj/machinery/door/airlock/maintenance/sec{ + name = "Emergency Medical Access"; + req_one_access = list(1,52) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/steel, +/area/security/hangar) +"tZc" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"uds" = ( +/obj/machinery/alarm{ + frequency = 1441; + pixel_y = 22 + }, +/obj/structure/closet/crate/secure/phoron{ + desc = "A secure crate that contains spare canisters of phoron fuel, used by modern shuttles."; + name = "spare fuel crate"; + req_one_access = list(51,67) + }, +/obj/item/weapon/tank/phoron, +/obj/item/weapon/tank/phoron, +/obj/effect/floor_decal/corner/red/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"ugG" = ( +/obj/effect/shuttle_landmark/automatic, +/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, +/area/borealis2/outdoors/grounds) +"uAK" = ( +/obj/structure/catwalk, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 1 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"uCI" = ( +/obj/structure/catwalk, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"uFD" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4; + icon_state = "shuttle_chair" + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"uOr" = ( +/obj/machinery/suit_cycler/security{ + departments = list("Security EVA","Security"); + name = "Security Pilot suit cycler"; + req_access = newlist(); + req_one_access = list(1,51) + }, +/obj/effect/floor_decal/corner/red/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"uYz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/steel, +/area/security/briefing_room) +"vdJ" = ( /obj/machinery/firealarm{ dir = 2; layer = 3.3; @@ -64346,28 +64543,64 @@ }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"tsl" = ( -/obj/structure/bed/chair/office/dark{ +"vgo" = ( +/obj/machinery/atmospherics/unary/engine{ + icon_state = "nozzle"; + dir = 1 + }, +/turf/simulated/floor/reinforced, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/security) +"vjx" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/light{ dir = 8 }, -/obj/effect/landmark/start{ - name = "Security Pilot" +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"vkc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/corner/red{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 }, /turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"txj" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/plating, /area/maintenance/medbay) -"tDR" = ( +"vrr" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/rshull, +/area/shuttle/security) +"vrJ" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "secshuttle_door_ext"; + locked = 1; + name = "Rear Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + icon_state = "intact-fuel"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"vsl" = ( /obj/effect/floor_decal/snow/floor/edges{ dir = 4 }, @@ -64390,306 +64623,102 @@ }, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds/power) -"tRk" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +"vJO" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/machinery/door/window/brigdoor/southright{ + req_access = newlist(); + req_one_access = list(51) + }, +/obj/machinery/light{ dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"tUv" = ( -/obj/structure/table/standard, -/obj/structure/extinguisher_cabinet{ - pixel_y = -26 +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/suit/space/void/security/alt, +/obj/item/clothing/head/helmet/space/void/security/alt, +/obj/item/device/gps/security, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"vSR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"ugG" = ( -/obj/effect/shuttle_landmark/automatic, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, -/area/borealis2/outdoors/grounds) -"ukd" = ( -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/red{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"unu" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4; - icon_state = "shuttle_chair" - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/obj/structure/closet/walllocker/emerglocker/west, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"uxd" = ( -/obj/structure/grille, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/security/armoury) -"uAA" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/wall, -/area/security/armoury) -"uAH" = ( -/obj/machinery/alarm{ - frequency = 1441; - pixel_y = 22 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +"vXr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"vXO" = ( /obj/machinery/sleep_console, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"uEL" = ( -/obj/item/device/geiger/wall{ - dir = 1; - pixel_y = -30 - }, +"wdF" = ( /obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/woodentable, -/obj/item/weapon/storage/box/donkpockets, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"uNF" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1; - name = "pilot's chair" - }, -/obj/machinery/button/remote/airlock{ - desiredstate = 1; - id = "secsh_compartment"; - name = "Compartment Access"; - pixel_x = 6; - pixel_y = -24; - req_one_access = list(51,67); - specialfunctions = 4 - }, -/obj/machinery/button/remote/airlock{ - desiredstate = 1; - id = "secsh_cabin"; - name = "Cabin Lockdown"; - pixel_x = -6; - pixel_y = -24; - req_one_access = list(51,67); - specialfunctions = 4 - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "secshut_cabinshut"; - name = "Cabin Blast Shutters"; - pixel_x = 0; - pixel_y = -36; - req_access = newlist(); - req_one_access = list(51,67) - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"uXJ" = ( -/obj/machinery/light/small{ - icon_state = "bulb1"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/briefing_room) -"vde" = ( -/turf/simulated/floor/tiled/steel, -/area/maintenance/medbay) -"vnp" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"vpq" = ( -/obj/machinery/computer/shuttle_control/explore/security, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"vsI" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security Voidsuits"; - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/airlock) -"vte" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "secshuttle_docker_pump_out_internal" - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"vBE" = ( -/obj/machinery/computer/ship/helm, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"vEz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1; - icon_state = "map" - }, -/obj/structure/handrail, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"vHH" = ( -/obj/structure/catwalk, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) -"vQT" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "secshuttle_vent" - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - cycle_to_external_air = 1; - frequency = 1380; - id_tag = "secshuttle_docker"; - pixel_y = 26; - req_one_access = list(1); - tag_airpump = "secshuttle_vent"; - tag_chamber_sensor = "secshuttle_sensor"; - tag_exterior_door = "secshuttle_door_ext"; - tag_exterior_sensor = "secshuttle_exterior_sensor"; - tag_interior_door = "secshuttle_door_int" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"vWy" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "secshuttle_docker_pump_out_external" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"vXI" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /turf/simulated/wall/r_wall, /area/security/armoury) -"waD" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/wall, -/area/borealis2/outdoors/grounds) -"wfQ" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8; - icon_state = "shuttle_chair" - }, -/obj/machinery/light{ +"wnZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/woodentable, +/obj/machinery/firealarm{ dir = 4; - icon_state = "tube1" + layer = 3.3; + pixel_x = 26 }, -/obj/structure/closet/walllocker/emerglocker/east, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/security) -"wnX" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "secpilotoffice"; - layer = 3.1; - name = "Office Shutters" - }, -/obj/structure/table/marble, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.7 +/obj/effect/floor_decal/corner/red{ + dir = 6 }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"wzH" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/maintenance/medbay) -"wEz" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/effect/floor_decal/steeldecal/steel_decals9{ +"wwp" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/structure/window/reinforced{ dir = 8 }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/corner/red{ - dir = 5 +/obj/machinery/door/window/brigdoor/southleft{ + req_access = newlist(); + req_one_access = list(51) }, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/suit/space/void/security/alt, +/obj/item/clothing/head/helmet/space/void/security/alt, +/obj/item/device/gps/security, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"wEj" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds) +"wII" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) "wLk" = ( @@ -64700,72 +64729,28 @@ /obj/structure/window/reinforced/full, /turf/simulated/floor/plating, /area/borealis2/outdoors/grounds/traderpad) -"wNT" = ( -/obj/effect/floor_decal/corner/red{ +"wNx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, /turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"wRL" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"wYb" = ( -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"wZQ" = ( -/obj/effect/floor_decal/borderfloorblack/corner, -/obj/effect/floor_decal/industrial/danger/corner, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"xfI" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel, -/turf/simulated/wall/rshull, -/area/shuttle/security) -"xix" = ( +/area/maintenance/medbay) +"xch" = ( /obj/structure/cable/green{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 2; + icon_state = "1-2" }, -/obj/structure/table/woodentable, -/obj/machinery/microwave, -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel, -/area/security/pilotroom) -"xiY" = ( -/obj/structure/railing, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/medbay) -"xlw" = ( -/obj/structure/table/rack, -/obj/machinery/door/window/brigdoor/eastleft{ - dir = 1; - name = "Energy Firearms" - }, -/obj/item/weapon/gun/energy/gun{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/gun/energy/gun, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/red, -/area/security/armoury) -"xwe" = ( +/obj/effect/floor_decal/corner/red, +/turf/simulated/floor/tiled/dark, +/area/security/hangar) +"xvq" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, @@ -64775,16 +64760,55 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/security/hangar) -"xHo" = ( -/obj/structure/table/bench/steel, -/obj/effect/floor_decal/corner/red{ - dir = 4 +/obj/machinery/camera/network/security{ + c_tag = "Security Hangar South"; + dir = 1 }, /turf/simulated/floor/tiled/dark, /area/security/hangar) -"xSf" = ( +"xFE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/table/woodentable, +/obj/machinery/camera/network/security{ + c_tag = "Pilot's Office"; + dir = 8 + }, +/obj/item/weapon/paper{ + info = "So, you're part of the new Security Pilot detail huh? Welcome aboard. Keep this paper handy, but make sure you leave it where other Pilot-Officers can see. Some words of advice; your gun coverage is better starboard side, no thanks that sensor antenna, so keep that in mind when you're coming up close to something. Plus that starboard side is where your hookup line to the local fuel depot is, whenever they finish towing that thing into position. Don't try to land her in the expedition hangar though! The final approach software's dumb as a box of rocks and it miscalculates where you're supposed to land. See you starside! -K.H."; + name = "Message to New Security Pilots" + }, +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"xMK" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/security) +"xQM" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "secpilotoffice"; + layer = 3.1; + name = "Office Shutters" + }, +/obj/structure/table/marble, +/obj/machinery/door/window/brigdoor/westleft{ + layer = 3; + req_access = list(51) + }, +/turf/simulated/floor/tiled/steel, +/area/security/pilotroom) +"xTO" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ @@ -64800,19 +64824,15 @@ }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) -"xWn" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 +"xYs" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - icon_state = "map-scrubbers"; - dir = 4 +/obj/effect/landmark/start{ + name = "Security Pilot" }, /obj/effect/floor_decal/corner/red{ - dir = 6 + dir = 9 }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) @@ -85051,8 +85071,8 @@ bNw aag aag aKZ -gBJ -gVt +raA +rMq aag aag aag @@ -85299,41 +85319,41 @@ aag aag aag aag -iVd -tDR -fEK -fEK -iMf -mWX -fEK -fEK -fEK -fEK -fEK -fEK -fEK -fEK -fEK -fEK -fEK -fEK -fEK -fEK -fEK -fEK -fEK -fEK -fEK -fEK -fEK -fEK -fEK -fEK -fEK -fEK -fEK -fEK -scv +mfS +vsl +qaj +qaj +uAK +emj +qaj +qaj +qaj +qaj +qaj +qaj +qaj +qaj +qaj +qaj +qaj +qaj +qaj +qaj +qaj +qaj +qaj +qaj +qaj +qaj +qaj +qaj +qaj +qaj +qaj +qaj +qaj +qaj +rrE aag aag aag @@ -85555,8 +85575,8 @@ aag aag aag aag -gBJ -gVt +raA +rMq aKZ aag aag @@ -85585,7 +85605,7 @@ aag aag aag aag -jAj +knz aag aag aag @@ -85837,7 +85857,7 @@ aag aag aag aag -jAj +knz aag aag aag @@ -86089,7 +86109,7 @@ aag aag aag aag -jAj +knz aag aag aaY @@ -86341,7 +86361,7 @@ aag aag aag aag -jAj +knz aag aag btM @@ -86593,7 +86613,7 @@ aag aag aag aag -jAj +knz aag aag btM @@ -86845,7 +86865,7 @@ aag aag aag aag -jAj +knz aag aag btM @@ -87067,7 +87087,7 @@ abd abd abd abd -lKE +pWK abk aag aag @@ -87097,7 +87117,7 @@ aag aag aag aag -jAj +knz aag bsy btM @@ -87349,7 +87369,7 @@ aag aag aag aag -jAj +knz aag aag btM @@ -87601,7 +87621,7 @@ aag aag aag aag -jAj +knz aag aag btM @@ -87853,7 +87873,7 @@ aag aag aag aag -jAj +knz aag aag btM @@ -88105,7 +88125,7 @@ aag aag aag aag -jAj +knz aag aag btM @@ -88356,9 +88376,9 @@ aLQ aLQ aLQ aLQ -nLJ -mOf -nLJ +kfp +eiF +kfp aLQ buV byP @@ -88608,9 +88628,9 @@ aQf aQf aQf aQf -fnX -vHH -fnX +tZc +uCI +tZc aQf aaj abk @@ -88861,7 +88881,7 @@ aag aag aag aag -jAj +knz aKZ aag aLR @@ -89073,25 +89093,25 @@ aag aag aag aag -mOp -czP -czP -czP -czP -czP -czP -czP -czP -czP -czP -czP -czP -czP -czP -czP -czP -czP -mOp +fii +jAq +jAq +jAq +jAq +jAq +jAq +jAq +jAq +jAq +jAq +jAq +jAq +jAq +jAq +jAq +jAq +jAq +fii aag aaN aag @@ -89113,7 +89133,7 @@ aag aag aag aag -jAj +knz aag aag aLR @@ -89325,25 +89345,25 @@ aag aag aag aag -czP -wZQ -myq -myq -myq -myq -myq -myq -myq -qfy -myq -myq -myq -myq -myq -myq -myq -tjT -czP +jAq +gVY +hXG +hXG +hXG +hXG +hXG +hXG +hXG +vjx +hXG +hXG +hXG +hXG +hXG +hXG +hXG +tVB +jAq aag aag aag @@ -89577,29 +89597,29 @@ aag aag aag aag -czP -gaV -tlE -tlE -tlE -tlE -tlE -tlE -tlE -hsS -hpq -hpq -hpq -hpq -hSN -qdr -qZz -xwe -czP +jAq +piA +irz +irz +irz +irz +irz +irz +irz +qws +qgy +qgy +qgy +qgy +tbC +jpD +vgo +tWc +jAq aag aag aag -sTy +wEj aHN bbg bbg @@ -89829,25 +89849,25 @@ aag aag aag aag -czP -gaV -fln -hpq -xSf -xSf -hpq -hpq -hpq -hpq -hpq +jAq +piA +lCH +qgy +xTO +xTO +qgy +qgy +qgy +qgy +qgy aZQ -dQJ -ndP -gNS -dmp -qZz -xwe -czP +iPS +cOF +kol +sDF +vgo +tWc +jAq aag aag aag @@ -90081,25 +90101,25 @@ aag aag aag aag -czP -gaV -hpq -hpq -rQv -dZv -hpq -hub -mIU -unu -mtD -hub -lhB -eVH -pKD -ruW -qZz -xwe -czP +jAq +piA +qgy +qgy +eks +ewH +qgy +xMK +uFD +rJE +mEg +xMK +iGt +gcR +ste +nVM +vgo +tWc +jAq aag aag aag @@ -90333,25 +90353,25 @@ aag aag aag aag -czP -gaV -mWZ -vBE -uNF -tUv -pRu -uAH -hSY -hSY -pFr -jLC -hpq -vQT -sTs -gcS -oiS -xwe -czP +jAq +piA +sFG +rVT +emo +kmT +vrr +sOY +iCz +iCz +kMB +vXO +qgy +mPr +lfW +vrJ +kIo +tWc +jAq aag aag aag @@ -90585,25 +90605,25 @@ aag aag aag aag -czP -osn -mWZ -vpq -nkg -qmg -iMQ -sao -sao -sao -vnp -sao -jQM -fcU -fcU -ckN -vWy -fIr -czP +jAq +jEw +sFG +cVZ +frT +oeD +dQb +qJB +qJB +qJB +jio +qJB +cpp +spT +spT +qwS +jXr +xvq +jAq aag aag aag @@ -90611,16 +90631,16 @@ aHa aaj aaj aab -pzJ -pzJ -pzJ -pzJ -pzJ -pzJ -pzJ -pzJ -pzJ -pzJ +jdu +jdu +jdu +jdu +jdu +jdu +jdu +jdu +jdu +jdu byJ aHR aSm @@ -90837,32 +90857,32 @@ aag aag aag aag -czP -gaV -hpq -hpq -eZz -dLC -hpq -trf -sFD -wfQ -lYP -pUc -hpq -vEz -mEv -mSb -qZz -xwe -czP +jAq +piA +qgy +qgy +nkp +nXM +qgy +vdJ +tKK +doX +pbq +tgo +qgy +lKr +fkp +dzO +vgo +tWc +jAq aag aaN aag aHa aaj aaj -waD +kHh aTO aTO aTO @@ -90872,8 +90892,8 @@ aTO aTO aTO aTO -nIw -qEm +ldV +fyx aaj aSm aag @@ -91089,32 +91109,32 @@ aag aag aag aag -czP -gaV -hsS -hpq -nJd -nJd -hpq -jea -hpq -hpq -wRL +jAq +piA +qws +qgy +kmr +kmr +qgy +cwD +qgy +qgy +iwp bbc bhm -vte +gqk azE -xfI -qZz -xwe -czP +lgd +vgo +tWc +jAq aag aag aag aHa aaj aRg -puQ +nmS aUp aUp aUp @@ -91124,8 +91144,8 @@ aUp aUp aUp aUp -uxd -qEm +fLP +fyx aaj aSm aag @@ -91338,28 +91358,28 @@ akb akb akb akb -fHx -fHx -fHx -czP -knc -tlE -tlE -tlE -tlE -tlE -tlE -tlE -hsS -wRL -hpq -hpq -hpq +jSJ +jSJ +jSJ +jAq +fCJ +irz +irz +irz +irz +irz +irz +irz +qws +iwp +qgy +qgy +qgy aHU blI -qZz -xwe -czP +vgo +tWc +jAq aIK aIK aIK @@ -91376,8 +91396,8 @@ aUp aUp aUp aUp -uxd -qEm +fLP +fyx aKs aSm aag @@ -91590,28 +91610,28 @@ akA akA akA akb -wzH -vde -dvf -jNH -fwk -hjV -hjV -hjV -hjV -hjV -hjV -hjV -hjV -jXl -hjV -hjV -hjV -hjV -hjV -hjV -mbE -czP +mCa +dVw +mOW +tWD +rPX +mQz +mQz +mQz +mQz +mQz +mQz +mQz +mQz +tcm +mQz +mQz +mQz +mQz +mQz +mQz +oVX +jAq bhp aQh aNz @@ -91628,8 +91648,8 @@ aHV aUp aVD aUp -uxd -qEm +fLP +fyx aaj aSm aag @@ -91842,35 +91862,35 @@ akA akA akA akb -vde -pEH -nso -gfy -fsq -lNv -lNv -lNv -lNv -lNv -lNv -lNv -lNv -rfw -lNv -lNv -lNv -lNv -lNv -lNv -tRk -czP +dVw +qcr +hge +kPo +cuv +cRD +cRD +cRD +cRD +cRD +cRD +cRD +cRD +kEB +cRD +cRD +cRD +cRD +cRD +cRD +hLS +jAq aNA aRy aIK aRt aTs bkw -uAA +dQu aUp aUp aUp @@ -91880,8 +91900,8 @@ aUp aUp aUp aUp -uxd -qEm +fLP +fyx aaj aSm aag @@ -92094,28 +92114,28 @@ akA akA akA akb -vde -txj -geR -luH +dVw +fUD +ioE +ewj aHf -czP -czP -mOp -koz +jAq +jAq +fii +pyX hRF -jPi -jPi -jPi -dpN -wYb +omx +omx +omx +lya +cGu aOh biT -xHo -lXR -eyE -pOL -czP +shU +rji +xch +sJx +jAq aNy aNy aHT @@ -92132,8 +92152,8 @@ aUp aUp aHV aUp -uxd -qEm +fLP +fyx aHR aSm aag @@ -92346,8 +92366,8 @@ akb akb akb akb -vde -txj +dVw +fUD akb akb akb @@ -92356,9 +92376,9 @@ aGl aHf aJL aJL -wnX -rsy -wnX +csz +xQM +csz tdL aKt aIK @@ -92384,8 +92404,8 @@ aUp aUp aVD aUp -uxd -qEm +fLP +fyx aaj aSm aag @@ -92597,31 +92617,31 @@ awy awy ayg awy -eFW -rxV -hXN +lVO +rrK +oyi aCF aDx akb aFs aGm aHf -ncl -rpz -tdv -tsl -fCD -nOn -sUn +rvG +mLn +rkV +xYs +slf +fww +pye aIK auQ aSn aXN -hVx +fat auQ aIK aQi -erI +gEz aHT aRz aXS @@ -92636,8 +92656,8 @@ aUp aUp aHV aUp -uxd -qEm +fLP +fyx aaj aSm aag @@ -92849,31 +92869,31 @@ akA akA akA akA -xiY -vde -psH +tqc +dVw +cSk akb aDy akb akA aGn aHf -wEz -nKa -nKa -nKa -nKa -jWp -xix +qIb +gtK +gtK +gtK +gtK +cNr +jDo aIK aOw -lZI +jLo aXO aOk aWV aIK -uXJ -eNQ +ilB +gTQ aHT aXM bpC @@ -92888,8 +92908,8 @@ aUp aUp aVD aUp -uxd -qEm +fLP +fyx aKs aSm aag @@ -93110,22 +93130,22 @@ aDy aFt aGo aHf -nQu -wNT -nKa -gvW -nKa -dCX -uEL +uOr +nIo +gtK +vXr +gtK +vSR +owi aIK -oTu -vsI +kfm +oHa aXT aSq aRm aIK -cYO -cZX +hoH +omp aHT aYa bpD @@ -93140,9 +93160,9 @@ aUr aHV aHV aHV -vXI -jRG -sPM +eie +wdF +kIl bro bsz btU @@ -93362,13 +93382,13 @@ akb akb aGp aHf -qtY -pgL -fHC -sWe -nKa -dCX -gVi +wwp +jxU +wII +kxN +gtK +vSR +crg aHV aIK aIK @@ -93384,7 +93404,7 @@ bpE bkD aUr aUr -ipx +rgm bnb aXZ aUr @@ -93614,13 +93634,13 @@ aCG asv azf aNF -gQv -pgL -nKa -pLE -nKa -dCX -ukd +vJO +jxU +gtK +iqo +gtK +vSR +gai aHV aEM aJJ @@ -93644,7 +93664,7 @@ aUr aZT aLV aLV -xlw +mNy aHV aKw bqs @@ -93858,7 +93878,7 @@ axk ayj ayZ axi -ssz +vkc aBI aBI awI @@ -93867,16 +93887,16 @@ aBI aAb aNF aJL -iGK -hJi -kEx -hjZ -xWn -rnh +uds +hug +xFE +wnZ +rVI +gEr bLR aIM -srp -oQh +gfu +uYz aTC aUI aSs @@ -94110,7 +94130,7 @@ axl ayk aza axi -iGO +wNx aBI aCH aDD @@ -94906,8 +94926,8 @@ bpi bpj gOn aHV -ebv -gwb +dWP +jYk bsE bro brs @@ -95666,7 +95686,7 @@ aHV brw bsH biz -rLZ +fMp bub bxG byZ From 24b507ad9c5e7f7ce5c67eb18334f65be58ddcc1 Mon Sep 17 00:00:00 2001 From: Killian <49700375+KillianKirilenko@users.noreply.github.com> Date: Tue, 5 May 2020 16:17:28 +0100 Subject: [PATCH 21/23] scatter speedloader & box printing --- code/datums/autolathe/arms_1_yw.dm | 70 +++++++++++++++++- .../projectiles/ammunition/magazines_yw.dm | 7 ++ icons/obj/ammo_yw.dmi | Bin 949 -> 1047 bytes vorestation.dme | 1 + 4 files changed, 77 insertions(+), 1 deletion(-) create mode 100644 code/modules/projectiles/ammunition/magazines_yw.dm diff --git a/code/datums/autolathe/arms_1_yw.dm b/code/datums/autolathe/arms_1_yw.dm index 9f574aceaa..c23f02c3b1 100644 --- a/code/datums/autolathe/arms_1_yw.dm +++ b/code/datums/autolathe/arms_1_yw.dm @@ -3,4 +3,72 @@ id = "shotgun_scatter" build_path = /obj/item/ammo_casing/a12g/scatter materials = list(DEFAULT_WALL_MATERIAL = 450) - hidden = 1 \ No newline at end of file + hidden = 1 + +/datum/design/item/autolathe/arms/shotgun_clip_scatter + name = "2-round 12g speedloader (scatter)" + id = "shotgun_speedloader_scatter" + build_path = /obj/item/ammo_magazine/clip/c12g/scatter + materials = list(DEFAULT_WALL_MATERIAL = 1337) + hidden = 1 + +//printable boxes of shotgun ammo, by KK +//the prices are rounded up to the cost of nine shells, but compared to printing a bunch of speedloaders you get a small discount. honestly the speedloaders are overpriced (the metal frame is somehow more expensive than a third shell!) but take it up with polaris. +/datum/design/item/autolathe/arms/ammobox/shotgun_box_beanbag + name = "8-round 12g ammo box (beanbag)" + id = "shotgun_ammobox_beanbag" + build_path = /obj/item/weapon/storage/box/beanbags + materials = list(DEFAULT_WALL_MATERIAL = 2025) + hidden = 1 + +/datum/design/item/autolathe/arms/ammobox/shotgun_box_slugs + name = "8-round 12g ammo box (slug)" + id = "shotgun_ammobox_slug" + build_path = /obj/item/weapon/storage/box/shotgunammo + materials = list(DEFAULT_WALL_MATERIAL = 4050) + hidden = 1 + +/datum/design/item/autolathe/arms/ammobox/shotgun_box_pellet + name = "8-round 12g ammo box (pellet)" + id = "shotgun_ammobox_pellet" + build_path = /obj/item/weapon/storage/box/shotgunshells + materials = list(DEFAULT_WALL_MATERIAL = 4050) + hidden = 1 + +/datum/design/item/autolathe/arms/ammobox/shotgun_box_scatter + name = "8-round 12g ammo box (scatter)" + id = "shotgun_ammobox_scatter" + build_path = /obj/item/weapon/storage/box/scattershot + materials = list(DEFAULT_WALL_MATERIAL = 4050) + hidden = 1 + +//commented out, pending review, maybe 16rnd boxes should be cargo only? +/* +/datum/design/item/autolathe/arms/ammobox/shotgun_box_beanbag_large + name = "16-round 12g ammo box (beanbag)" + id = "shotgun_ammobox_beanbag_large" + build_path = /obj/item/weapon/storage/box/beanbags/large + materials = list(DEFAULT_WALL_MATERIAL = 4050) + hidden = 1 + +/datum/design/item/autolathe/arms/ammobox/shotgun_box_slugs_large + name = "16-round 12g ammo box (slug)" + id = "shotgun_ammobox_slug_large" + build_path = /obj/item/weapon/storage/box/shotgunammo/large + materials = list(DEFAULT_WALL_MATERIAL = 8100) + hidden = 1 + +/datum/design/item/autolathe/arms/ammobox/shotgun_box_pellet_large + name = "16-round 12g ammo box (pellet)" + id = "shotgun_ammobox_pellet_large" + build_path = /obj/item/weapon/storage/box/shotgunshells/large + materials = list(DEFAULT_WALL_MATERIAL = 8100) + hidden = 1 + +/datum/design/item/autolathe/arms/ammobox/shotgun_box_scatter_large + name = "16-round 12g ammo box (scatter)" + id = "shotgun_ammobox_scatter_large" + build_path = /obj/item/weapon/storage/box/scattershot/large + materials = list(DEFAULT_WALL_MATERIAL = 8100) + hidden = 1 +*/ \ No newline at end of file diff --git a/code/modules/projectiles/ammunition/magazines_yw.dm b/code/modules/projectiles/ammunition/magazines_yw.dm new file mode 100644 index 0000000000..643dcdd728 --- /dev/null +++ b/code/modules/projectiles/ammunition/magazines_yw.dm @@ -0,0 +1,7 @@ +/obj/item/ammo_magazine/clip/c12g/scatter + name = "ammo clip (12g scatter)" + icon = 'icons/obj/ammo_yw.dmi' + icon_state = "12gclipscatter" + desc = "A color-coded metal clip for holding and quickly loading shotgun shells. This one is loaded with scattershot." + ammo_type = /obj/item/ammo_casing/a12g/scatter + matter = list(DEFAULT_WALL_MATERIAL = 1070) // buckshot and slugs cost the same \ No newline at end of file diff --git a/icons/obj/ammo_yw.dmi b/icons/obj/ammo_yw.dmi index fd013b09a743b77fa80dcc00b33d4cc19bda859a..edfb797ca5bb647b56d330d977295c4429d77794 100644 GIT binary patch delta 881 zcmV-%1CIQ)2bTyXiBL{Q4GJ0x0000DNk~Le0001h0001B2m=5B0OF*IdjJ3cU6Ca# zOFKI|GBPs%%rk%h06aWAAt9Ln0D!iS4y-IJnIR#&006v~BGjoR^}{aw(`#Q}U!$X= zb8~aM9>hlg0004WQchCP*%Q1{?LfFj8#>I;#^3{SL0GBt&LWEBBV42thB*K%XK(1@6n8SEX^f< ze620~`M5zuY0lwG>m0f`6GxQhm>}b)$f~hPD$SYDZgFgckQ|Sc_*o7CR&lAGo}QnT z6jtlO36i)LS}f`hYlL%aeSlIz#5qdjFuq>YpKYWvKwe&6Ull6euM)YNfhGOfMuh>^ zD7lDtGcdnD1XuvZg3#dLGAYg3#!a4oG1fo;W-2~`%icFU?2pGYIov4R5&yXHd97NUc z8QSXYh$07M{hlGcOK?Ee?^y;C9FX;Uo`LP?G6)@z^?R&+I>#B1+wCDze+tO@ogI(I zlULL1_ve9u%jGh`y@A88>-8FcHiw=8vVLdx@e3KC>UXvSHJ!!`z)72NelvjHf+jXV z)bA`9zlZ_i{Qw$h9s`^S1Lp|?r=aN@pxzG*H2W$b3{dX}a&$BB_Wu4BG<^fq`+@QX z$of6Yfiv*&`S}qveFF*gdyWIx`FHV7xQlN`RQ;aiAmNdKuHQ?GuHQ>^E1`ZbZlTui zRaI40RaNWiQFyGw+tXd`8l1I(*5K@`z4+St+0{?AZVS0&7V`K~!jg?N^C* z!XOaj#vWdY)*k==pWTJDr5tYBP2RJ8jLM4+?66!8LUh~~q*PkV)p)IpwayyZsKVue zHr8Qb^*TIqu@A1&2QIJSXY1h=>lHP)yo4Wp=s~FG@)}$o2hhb7y{UgC$>oKzVRAM~ zX^BrpEz3g%Z=^PNclY;3D{pNPU>0wcRaGA5NJ{Tx0ArNO$8aVO@okkC8*Lmg4-b!z z29fW_nS98g#*2+f19)fjulOm0l7|W&2&@agwemkr|t1M z7tk>|hrI{^vQ?nt^tONbv^_qT%QQ?6u<*u_&X-{v{WhPr$LCx?e)a%97$BP@ISDlR zv^_rOlPu%Z;0H_Ni?fEu!ypE7S_S1IVDm7Fs66ddmyh6Fe%fd?{#$_JsG7@98?DC2 zBysw1o&A=_3|c(&L4^QbRsT|F@t8rA$0}N?mM2((@95|d{QG|a0j~e2!1e!he4hWO z!1ezW*#4ga+y9dST>noC@a_i%w%K>?{XmG_Znuv(9JbqIF2KDXpuqmB0P}tz!~i%< zs0uLszewU&1qgpn-5*fk@Fj381So$`-5(0%0+hd}?hhm=e^1>XXaTnWr@;6B6exdB z`u|x1SNuKg|0#b^{+{;#6exc`!~c^K-T!xVblfg%4GYE}?O4Hr3U*jo!44}cfWTOt z29`qN%rFBzj;9PiP2qe#H|%#5I6Yl1m$W$DngBFv*zXSk)J}@q7C1Hp_DS(mfefn) zB=`_`etCILia#WPhYe?HB2^}5(8t<5HMVRnqkhA~* N002ovPDHLkV1gIZXVd@y diff --git a/vorestation.dme b/vorestation.dme index 4423a8418a..52c6115530 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -3125,6 +3125,7 @@ #include "code\modules\projectiles\ammunition\boxes_yw.dm" #include "code\modules\projectiles\ammunition\magazines.dm" #include "code\modules\projectiles\ammunition\magazines_vr.dm" +#include "code\modules\projectiles\ammunition\magazines_yw.dm" #include "code\modules\projectiles\ammunition\magnetic.dm" #include "code\modules\projectiles\ammunition\rounds.dm" #include "code\modules\projectiles\ammunition\smartmag.dm" From cf628083efa4ad2828b9cec4952f84e0b5c7938a Mon Sep 17 00:00:00 2001 From: Killian <49700375+KillianKirilenko@users.noreply.github.com> Date: Tue, 5 May 2020 17:41:20 +0100 Subject: [PATCH 22/23] Update cryogaia-05-main.dmm --- maps/yw/cryogaia-05-main.dmm | 99 ++++++++++++++++++++++++++---------- 1 file changed, 71 insertions(+), 28 deletions(-) diff --git a/maps/yw/cryogaia-05-main.dmm b/maps/yw/cryogaia-05-main.dmm index 68ced8e5c4..20ad87c8c2 100644 --- a/maps/yw/cryogaia-05-main.dmm +++ b/maps/yw/cryogaia-05-main.dmm @@ -16815,13 +16815,14 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/engineering/workshop) "aFA" = ( @@ -16836,10 +16837,7 @@ d2 = 8; icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 - }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled{ icon_state = "monotile" }, @@ -38145,20 +38143,29 @@ /turf/simulated/floor/tiled/red, /area/security/security_equiptment_storage) "bsC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, /turf/simulated/floor/tiled/techfloor, /area/engineering/workshop) "bsE" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_engineering{ name = "Engineering Workshop"; - req_access = newlist(); - req_one_access = list(14,24) + req_one_access = list(10) }, /obj/structure/cable/green{ d1 = 1; d2 = 4; icon_state = "1-4" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/engineering/workshop) "bsF" = ( @@ -38181,6 +38188,13 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/tiled{ icon_state = "monotile" }, @@ -38191,6 +38205,13 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/tiled{ icon_state = "monotile" }, @@ -38839,9 +38860,15 @@ icon_state = "tube1"; pixel_y = 0 }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, /turf/simulated/floor/tiled/steel_grid, /area/engineering/workshop) "btX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, /turf/simulated/floor/carpet, /area/engineering/workshop) "btY" = ( @@ -38852,6 +38879,9 @@ /obj/structure/bed/chair/sofa/right{ dir = 8 }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, /turf/simulated/floor/carpet, /area/engineering/workshop) "bua" = ( @@ -39488,12 +39518,9 @@ /obj/structure/bed/chair/sofa{ dir = 1 }, -/obj/item/device/radio/intercom{ - broadcasting = 0; - dir = 2; - listening = 1; - name = "Common Channel"; - pixel_y = -21 +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 }, /turf/simulated/floor/carpet, /area/engineering/workshop) @@ -39501,6 +39528,13 @@ /obj/structure/bed/chair/sofa/corner{ dir = 8 }, +/obj/item/device/radio/intercom{ + broadcasting = 0; + dir = 2; + listening = 1; + name = "Common Channel"; + pixel_y = -21 + }, /turf/simulated/floor/carpet, /area/engineering/workshop) "bvd" = ( @@ -42648,8 +42682,7 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_engineering{ name = "Engineering Workshop"; - req_access = newlist(); - req_one_access = list(14,24) + req_one_access = list(10) }, /obj/structure/cable/green{ d1 = 1; @@ -42667,8 +42700,7 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_engineering{ name = "Engineering Workshop"; - req_access = newlist(); - req_one_access = list(14,24) + req_one_access = list(10) }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -62859,6 +62891,16 @@ /obj/structure/sign/directions/science, /turf/simulated/wall/r_wall, /area/hallway/primary/central_one) +"dFM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/workshop) "dQb" = ( /obj/machinery/door/airlock/voidcraft/vertical{ frequency = 1380; @@ -63594,6 +63636,13 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel, /turf/simulated/wall/rshull, /area/shuttle/security) +"lhs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/workshop) "lya" = ( /obj/machinery/light{ dir = 4; @@ -64836,12 +64885,6 @@ }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) -"ylY" = ( -/obj/machinery/door/airlock/glass_engineering{ - name = "Engine Gas Storage" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) (1,1,1) = {" aaa @@ -94424,7 +94467,7 @@ bJX aHV aKw bqs -bsC +lhs btY bvb bro @@ -94676,7 +94719,7 @@ bdI aHV aKw bqs -bsC +dFM btZ bvc bro @@ -94950,7 +94993,7 @@ bPE bPE bPE bPE -ylY +bVg bVg bPE bPE From 6ed2c7b74f7b8ca08c52938936dce227863ebf8f Mon Sep 17 00:00:00 2001 From: Killian <49700375+KillianKirilenko@users.noreply.github.com> Date: Tue, 5 May 2020 18:38:56 +0100 Subject: [PATCH 23/23] Update cryogaia-05-main.dmm --- maps/yw/cryogaia-05-main.dmm | 894 ++++++++++++++++++++--------------- 1 file changed, 520 insertions(+), 374 deletions(-) diff --git a/maps/yw/cryogaia-05-main.dmm b/maps/yw/cryogaia-05-main.dmm index 20ad87c8c2..aa2e86ce6e 100644 --- a/maps/yw/cryogaia-05-main.dmm +++ b/maps/yw/cryogaia-05-main.dmm @@ -18323,16 +18323,6 @@ /obj/structure/window/reinforced/full, /turf/simulated/floor/plating/snow/plating, /area/maintenance/auxsolarport) -"aIF" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) "aIK" = ( /turf/simulated/wall/r_wall, /area/security/airlock) @@ -19079,24 +19069,6 @@ }, /turf/simulated/floor/plating/snow/plating, /area/maintenance/auxsolarport) -"aKr" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) "aKs" = ( /obj/structure/sign/securearea, /turf/simulated/wall, @@ -33512,25 +33484,6 @@ }, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds) -"bjY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) "bjZ" = ( /obj/structure/railing{ dir = 4 @@ -38150,10 +38103,6 @@ /area/engineering/workshop) "bsE" = ( /obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Workshop"; - req_one_access = list(10) - }, /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -38166,6 +38115,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Den" + }, /turf/simulated/floor/tiled, /area/engineering/workshop) "bsF" = ( @@ -38760,21 +38712,6 @@ /obj/effect/overlay/snow/floor, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds/solars) -"btO" = ( -/obj/effect/floor_decal/rust, -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-4" - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 8 - }, -/obj/effect/floor_decal/snow/floor/edges, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) "btP" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -39522,6 +39459,15 @@ dir = 1; pixel_y = -25 }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "engidenshutters"; + name = "Privacy Shutters"; + pixel_x = -26; + pixel_y = -24; + req_access = newlist(); + req_one_access = list(10) + }, /turf/simulated/floor/carpet, /area/engineering/workshop) "bvc" = ( @@ -49502,7 +49448,7 @@ name = "Thermal Regulator Vent" }, /obj/machinery/door/airlock/glass_external/freezable{ - req_access = list(48) + req_access = newlist() }, /turf/simulated/floor/plating/snow/plating, /area/borealis2/outdoors/grounds/traderpad) @@ -52210,7 +52156,7 @@ id_tag = "trade_shuttle_dock_inner"; locked = 1; name = "Dock One Internal Access"; - req_access = list(13) + req_access = newlist() }, /turf/simulated/floor/tiled/dark, /area/borealis2/outdoors/grounds/traderpad) @@ -53746,7 +53692,13 @@ /area/borealis2/outdoors/grounds/traderpad) "bTw" = ( /obj/structure/fence/door, -/turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 4 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, /area/borealis2/outdoors/grounds) "bTx" = ( /obj/structure/fence/corner{ @@ -54594,7 +54546,8 @@ id_tag = "trade_shuttle_dock_outer"; locked = 1; name = "Dock One External Access"; - req_access = list(13) + req_access = newlist(); + req_one_access = list(13,52) }, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/shield_diffuser, @@ -54616,7 +54569,8 @@ id_tag = "trade_shuttle_dock_outer"; locked = 1; name = "Dock One External Access"; - req_access = list(13) + req_access = newlist(); + req_one_access = list(13,52) }, /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/shield_diffuser, @@ -62572,43 +62526,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/secondary/entry/docking_lounge) -"ckT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/simulated/floor/plating/snow/plating, -/area/maintenance/auxsolarport) -"ckU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/obj/structure/cable/heavyduty{ - icon_state = "2-4" - }, -/obj/structure/cable/heavyduty, -/turf/simulated/floor/plating/snow/plating, -/area/maintenance/auxsolarport) -"ckV" = ( -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 4 - }, -/obj/effect/floor_decal/snow/floor/edges{ - dir = 1 - }, -/turf/simulated/floor/plating/snow/plating/cryogaia, -/area/borealis2/outdoors/grounds/power) "ckY" = ( /obj/effect/overlay/snow/floor, /turf/simulated/floor/plating/snow/plating/cryogaia, @@ -62617,27 +62534,6 @@ /obj/machinery/door/airlock/glass_external/public, /turf/simulated/floor/tiled, /area/borealis2/outdoors/grounds/entrance) -"clb" = ( -/obj/effect/overlay/snow/floor, -/obj/structure/cable/heavyduty{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/turf/simulated/floor/plating, -/area/borealis2/outdoors/grounds/traderpad) -"clc" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable, -/turf/simulated/floor/plating, -/area/borealis2/outdoors/grounds/traderpad) "cld" = ( /turf/simulated/floor/tiled, /area/borealis2/outdoors/grounds/entrance) @@ -62767,6 +62663,16 @@ }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) +"cuo" = ( +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -30 + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/borealis2/outdoors/grounds/traderpad) "cuv" = ( /obj/machinery/light{ dir = 4; @@ -62795,6 +62701,23 @@ "cGu" = ( /turf/simulated/floor/tiled/dark, /area/security/hangar) +"cLk" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 1 + }, +/obj/effect/floor_decal/snow/floor/edges, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 2; + flags = null + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) "cLv" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -62805,6 +62728,20 @@ /obj/machinery/suit_cycler/medical, /turf/simulated/floor/tiled, /area/cryogaia/station/explorer_prep) +"cMv" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "engidenshutters"; + name = "Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor, +/area/engineering/workshop) "cNr" = ( /obj/structure/cable/green{ d1 = 2; @@ -62891,16 +62828,6 @@ /obj/structure/sign/directions/science, /turf/simulated/wall/r_wall, /area/hallway/primary/central_one) -"dFM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/workshop) "dQb" = ( /obj/machinery/door/airlock/voidcraft/vertical{ frequency = 1380; @@ -62928,6 +62855,12 @@ }, /turf/simulated/wall/r_wall, /area/security/armoury) +"ehi" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) "eie" = ( /obj/structure/cable/green{ d1 = 2; @@ -63257,6 +63190,17 @@ "hoH" = ( /turf/simulated/floor/tiled/dark, /area/security/briefing_room) +"hsg" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/snow/floor/edges3{ + icon_state = "gravsnow_edges"; + dir = 1 + }, +/obj/effect/floor_decal/snow/floor/edges3, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) "hug" = ( /obj/machinery/computer/secure_data{ dir = 8 @@ -63368,6 +63312,18 @@ }, /turf/simulated/wall/rshull, /area/shuttle/security) +"iTZ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) "jdu" = ( /obj/effect/floor_decal/industrial/warning/dust{ icon_state = "warning_dust"; @@ -63383,6 +63339,20 @@ }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) +"jiz" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id = "engidenshutters"; + name = "Privacy Shutters"; + opacity = 0 + }, +/turf/simulated/floor, +/area/engineering/workshop) "jpD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ icon_state = "intact-fuel"; @@ -63399,6 +63369,15 @@ "jAq" = ( /turf/simulated/wall/r_wall, /area/security/hangar) +"jAZ" = ( +/obj/effect/floor_decal/snow/floor/edges, +/obj/structure/catwalk, +/obj/structure/railing{ + dir = 2; + flags = null + }, +/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, +/area/borealis2/outdoors/grounds) "jDo" = ( /obj/structure/cable/green{ d1 = 1; @@ -63532,6 +63511,23 @@ }, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds/power) +"knO" = ( +/obj/structure/catwalk, +/obj/structure/railing{ + dir = 2; + flags = null + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/snow/floor/edges3{ + dir = 8 + }, +/obj/effect/floor_decal/snow/floor/edges3{ + dir = 4 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) "kol" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4; @@ -63636,13 +63632,6 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel, /turf/simulated/wall/rshull, /area/shuttle/security) -"lhs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/workshop) "lya" = ( /obj/machinery/light{ dir = 4; @@ -63908,12 +63897,6 @@ }, /turf/simulated/floor/tiled/dark, /area/security/hangar) -"ovS" = ( -/obj/machinery/door/airlock/glass_external/freezable{ - req_access = list(48) - }, -/turf/simulated/floor/plating, -/area/borealis2/outdoors/grounds/traderpad) "owi" = ( /obj/item/device/geiger/wall{ dir = 1; @@ -64010,6 +63993,18 @@ }, /turf/simulated/floor/tiled/dark, /area/security/hangar) +"pjA" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"pug" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) "pxX" = ( /obj/structure/cable/green{ d1 = 4; @@ -64166,14 +64161,15 @@ /obj/effect/floor_decal/snow/floor/edges{ dir = 8 }, -/obj/effect/floor_decal/snow/floor/edges, /obj/structure/cable/heavyduty{ icon_state = "1-4" }, -/obj/structure/railing, /obj/structure/railing{ dir = 8 }, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds/power) "rrK" = ( @@ -64257,6 +64253,16 @@ }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) +"saK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/workshop) "sdy" = ( /obj/structure/table/rack, /obj/machinery/door/window/brigdoor/northright{ @@ -64439,6 +64445,18 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, /area/maintenance/medbay) +"tIj" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) "tKK" = ( /obj/structure/bed/chair/shuttle{ dir = 8; @@ -64522,6 +64540,12 @@ /obj/effect/shuttle_landmark/automatic, /turf/simulated/floor/outdoors/snow/snow/snow2/cryogaia, /area/borealis2/outdoors/grounds) +"ujb" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/borealis2/outdoors/grounds/traderpad) "uAK" = ( /obj/structure/catwalk, /obj/structure/cable/heavyduty{ @@ -64556,6 +64580,15 @@ }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) +"uJH" = ( +/obj/structure/cable/heavyduty, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/borealis2/outdoors/grounds/traderpad) "uOr" = ( /obj/machinery/suit_cycler/security{ departments = list("Security EVA","Security"); @@ -64583,6 +64616,12 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled/steel, /area/security/briefing_room) +"vdk" = ( +/obj/machinery/door/airlock/glass_external/freezable{ + req_access = newlist() + }, +/turf/simulated/floor/plating, +/area/borealis2/outdoors/grounds/traderpad) "vdJ" = ( /obj/machinery/firealarm{ dir = 2; @@ -64693,6 +64732,17 @@ /obj/item/device/gps/security, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) +"vLQ" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 1 + }, +/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, +/area/borealis2/outdoors/grounds) "vSR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -64712,6 +64762,15 @@ /obj/machinery/sleep_console, /turf/simulated/floor/tiled/techfloor, /area/shuttle/security) +"wbg" = ( +/obj/effect/floor_decal/snow/floor/edges{ + dir = 4 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/turf/simulated/floor/outdoors/snow/gravsnow/cryogaia, +/area/borealis2/outdoors/grounds) "wdF" = ( /obj/structure/cable/green{ d1 = 1; @@ -64720,6 +64779,23 @@ }, /turf/simulated/wall/r_wall, /area/security/armoury) +"wfH" = ( +/obj/structure/catwalk, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/snow/floor/edges3{ + dir = 8 + }, +/obj/effect/floor_decal/snow/floor/edges3{ + dir = 4 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) "wnZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -64734,6 +64810,33 @@ }, /turf/simulated/floor/tiled/steel, /area/security/pilotroom) +"wpI" = ( +/obj/effect/overlay/snow/floor, +/obj/effect/floor_decal/snow/floor/edges3{ + icon_state = "gravsnow_edges"; + dir = 1 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/traderpad) +"wpR" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 4 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) "wwp" = ( /obj/structure/table/rack, /obj/item/clothing/mask/breath, @@ -64766,6 +64869,13 @@ }, /turf/simulated/floor/plating/snow/plating/cryogaia, /area/borealis2/outdoors/grounds) +"wIx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/workshop) "wII" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/steel, @@ -64790,6 +64900,42 @@ }, /turf/simulated/floor/tiled/steel, /area/maintenance/medbay) +"wPD" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 8 + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 4 + }, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) +"wQM" = ( +/obj/structure/railing{ + dir = 2; + flags = null + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/snow/floor/edges{ + dir = 1 + }, +/obj/effect/floor_decal/snow/floor/edges, +/turf/simulated/floor/plating/snow/plating/cryogaia, +/area/borealis2/outdoors/grounds/power) "xch" = ( /obj/structure/cable/green{ d1 = 1; @@ -75512,77 +75658,77 @@ aag aag aag aag -bjY -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -btO +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag aag aag aag @@ -75764,7 +75910,7 @@ aag aag aag aag -bNw +aag aag aag aag @@ -75834,7 +75980,7 @@ aag aag aag aag -aIF +aag aag aag aag @@ -76016,7 +76162,7 @@ aag aag aag aag -bNw +aag aag aqD aqD @@ -76086,7 +76232,7 @@ aag aag aag aag -aIF +aag aag aag aag @@ -76268,7 +76414,7 @@ aag aag aag aag -bNw +aag aag aqD arD @@ -76338,7 +76484,7 @@ aag aag aag aag -aIF +aag aag aag aag @@ -76520,7 +76666,7 @@ aag aag aag aag -bNw +aag aag aqF aqF @@ -76590,7 +76736,7 @@ aag aag aag aag -aIF +aag aag aag aag @@ -76772,7 +76918,7 @@ aag aag aag aag -bNw +aag aag aqG aum @@ -76842,7 +76988,7 @@ aag aag aag aag -aIF +aag aag aag aag @@ -77024,7 +77170,7 @@ aag aag aag aag -bNw +aag aag arE arE @@ -77094,7 +77240,7 @@ aag aag aag aag -aIF +aag aag aag aag @@ -77276,7 +77422,7 @@ aag aag aag aag -bNw +aag aag aqD arD @@ -77346,7 +77492,7 @@ aag aag aag aag -aIF +aag aag aag aag @@ -77528,7 +77674,7 @@ aag aag aag aag -bNw +aag aag aqF aqF @@ -77598,7 +77744,7 @@ aag aag aag aag -aIF +aag aag aag aag @@ -77780,7 +77926,7 @@ aag aag aag aag -bNw +aag aag aqG aum @@ -77850,7 +77996,7 @@ aag aag aag aag -aIF +aag aag aag aag @@ -78032,7 +78178,7 @@ aag aag aag aag -bNw +aag aag arE arE @@ -78102,7 +78248,7 @@ aag aag aag aag -aIF +aag aag aag aag @@ -78284,7 +78430,7 @@ aag aag aag aag -bNw +aag aag aqD arD @@ -78354,7 +78500,7 @@ aag aag aag aag -aIF +aag aag aag aag @@ -78536,7 +78682,7 @@ aag aag aag aag -bNw +aag aag aqF aqF @@ -78606,7 +78752,7 @@ aag aag aag aag -aIF +aag aag aag aag @@ -78788,7 +78934,7 @@ aag aag aag aag -bNw +aag aag aqG aum @@ -78858,7 +79004,7 @@ aag aag aag aag -aIF +aag aag aag aag @@ -79040,7 +79186,7 @@ aag aag aag aag -bNw +aag aag arE arE @@ -79110,7 +79256,7 @@ aag aag aag aag -aIF +aag aag aag aag @@ -79292,7 +79438,7 @@ aag aag aag aag -bNw +aag aag aqD arD @@ -79362,7 +79508,7 @@ aag aag aag aag -aIF +aag aag aag aag @@ -79544,7 +79690,7 @@ aag aag aag aag -bNw +aag aag aqF aqF @@ -79614,7 +79760,7 @@ aag aag aag aag -aIF +aag aag aag aag @@ -79796,7 +79942,7 @@ aag aag aag aag -bNw +aag aag aqG aum @@ -79866,7 +80012,7 @@ aag aag aag aag -aIF +aag aag aag aag @@ -80048,7 +80194,7 @@ aag aag aag aag -bNw +aag aag arE arE @@ -80118,7 +80264,7 @@ aag aag aag aag -aIF +aag aag aag aag @@ -80300,7 +80446,7 @@ aag aag aag aag -bNw +aag aag aqD arD @@ -80369,10 +80515,10 @@ aag aag aag aag -bLF -wLk -bLF -bLF +aag +aag +aag +aag aag aag aag @@ -80552,7 +80698,7 @@ aag aag aag aag -bNw +aag aag aqD aqD @@ -80620,11 +80766,11 @@ aag aag aag aag -aaY -ovS -clb -clc -bLF +aag +aag +aag +aag +aag aag aag aag @@ -80804,7 +80950,7 @@ aag aag aag aag -bNw +aag aag aag aag @@ -80872,8 +81018,8 @@ aag aag aag aag -mjH -bLF +aag +aag bLF bLF bLF @@ -81056,7 +81202,7 @@ aag aag aag aag -bNw +aag aag aag aag @@ -81124,7 +81270,7 @@ aag aag aag aag -mjH +aag aag bLF bMZ @@ -81308,7 +81454,7 @@ aag aag aag aag -bNw +aag aag aag aag @@ -81372,11 +81518,11 @@ aag aag aag aag -aag bsy aag aag -mjH +aag +aag aag bLF bNa @@ -81560,7 +81706,7 @@ aag aag aag aag -bNw +aag aag aag aag @@ -81628,7 +81774,7 @@ aHb aHb aHb aHb -buX +aHb aHb bLG bNb @@ -81812,7 +81958,7 @@ aag aag aag aag -bNw +aag aag aag aag @@ -81880,7 +82026,7 @@ bww bww bww bww -bww +buX bww bLG bNb @@ -82064,7 +82210,7 @@ aag aag aag aag -bNw +aag aag aag aag @@ -82131,8 +82277,8 @@ aag aag aag aag -aag bsy +mjH aag bLF bNa @@ -82316,7 +82462,7 @@ aag aag aag aag -bNw +aag aag aag aag @@ -82384,7 +82530,7 @@ aag aag aag aag -aag +mjH aag bLF bMZ @@ -82568,7 +82714,7 @@ aag aag aag aag -bNw +aag aag aag aag @@ -82636,7 +82782,7 @@ aag aag aag aag -aag +mjH aag bLF bLF @@ -82820,7 +82966,7 @@ aag aag aag aag -bNw +aag aag aag aag @@ -82888,13 +83034,13 @@ aag aag aag aag -aag -aag -aag -aag -aag -aag -aag +btM +wbg +vdk +ujb +uJH +cuo +bLF aag bTr bWc @@ -83072,7 +83218,7 @@ aag aag aag aag -bNw +aag aag aag aag @@ -83140,13 +83286,13 @@ aag aag aag aag +btM aag -aag -aag -aag -aag -aag -aag +bLF +wLk +bLF +bLF +bLF aag bTr bWc @@ -83324,7 +83470,7 @@ aag aag aag aag -bNw +aag aag aag aag @@ -83392,14 +83538,14 @@ aag aag aag aag -aag -aag -aag -aag -aag -aag -aag -aag +aba +wbg +wbg +hsg +wbg +wbg +wbg +aHb bTr bWd bXR @@ -83576,7 +83722,7 @@ aag aag aag aag -bNw +aag aag aag aag @@ -83647,11 +83793,11 @@ aag aag aag aag +wQM aag aag aag -aag -aag +btM bTr bWc bXR @@ -83828,29 +83974,29 @@ aag aag aag aag -ckV -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -aKr -ckT -ckU +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aHP +aID aJB aKp aHP @@ -83899,11 +84045,11 @@ aag aag aag aag +wQM aag aag aag -aag -aag +btM bTr bWc bXR @@ -84151,13 +84297,13 @@ aag aag aag aag +cLk aag aag aag -aag -aag +aba bTw -bWc +wpI bXR bXR bXR @@ -84403,7 +84549,7 @@ aag aag aag aag -aag +cLk aag aag aag @@ -84655,7 +84801,7 @@ aag aag aag aag -abq +iTZ abq abq aag @@ -84907,7 +85053,7 @@ aag aag abq abq -abq +pug abq abq abq @@ -85149,8 +85295,8 @@ aag aag aag aag -btM -avu +vLQ +jAZ bsy aag aag @@ -85159,7 +85305,7 @@ aag abq abq abq -abq +pug abq abq abq @@ -85397,21 +85543,21 @@ qaj qaj qaj rrE -aag -aag -aag -aag -btM -avu -aag -aag -aag -aag -aag -abq -abq -abq -abq +wPD +wPD +wPD +wPD +wfH +knO +wPD +wPD +wpR +wpR +tIj +pjA +pjA +pjA +ehi abq abq abq @@ -85653,8 +85799,8 @@ aag aag aag aag -btM -avu +vLQ +jAZ aag aag aag @@ -93711,9 +93857,9 @@ mNy aHV aKw bqs -brs -brs -brs +cMv +cMv +cMv bro bxy byT @@ -94467,7 +94613,7 @@ bJX aHV aKw bqs -lhs +wIx btY bvb bro @@ -94719,7 +94865,7 @@ bdI aHV aKw bqs -dFM +saK btZ bvc bro @@ -94973,7 +95119,7 @@ dWP jYk bsE bro -brs +jiz bro bxD bxD